Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
81 FR
Holders
19
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 FRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Freaks
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-25 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) /** * @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; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/Freaks.sol contract Freaks is Ownable, ERC721A, IERC2981, ReentrancyGuard { string public notRevealedUri; string public baseExtension = ".json"; uint256 public MAX_SUPPLY = 4444; uint256 public PRICE = 0.23 ether; uint256 public PRESALE_PRICE = 0.12 ether; uint256 public _reserveCounter; uint256 public _airdropCounter; uint256 public _preSaleListCounter; uint256 public _publicCounter; uint256 public maxPresaleMintAmount = 2; uint256 public maxpublicsaleMintAmount = 3; uint256 public saleMode = 0; // 1- presale 2- public sale // ======== Royalties ========= address public royaltyAddress; uint256 public royaltyPercent; bool public _revealed = false; mapping(address => bool) public allowList; mapping(address => uint256) public _preSaleMintCounter; mapping(address => uint256) public _publicsaleMintCounter; // merkle root bytes32 public preSaleRoot; constructor( string memory name, string memory symbol, string memory _notRevealedUri ) ERC721A(name, symbol) { setNotRevealedURI(_notRevealedUri); royaltyAddress = owner(); royaltyPercent = 25; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if(_revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension)) : ""; } function setMode(uint256 mode) public onlyOwner{ saleMode = mode; } function getSaleMode() public view returns (uint256){ return saleMode; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { MAX_SUPPLY = _maxSupply; } function setMaxPresaleMintAmount(uint256 _newQty) public onlyOwner { maxPresaleMintAmount = _newQty; } function setPublicsaleMintAmount(uint256 _newQty) public onlyOwner { maxpublicsaleMintAmount = _newQty; } function setCost(uint256 _newCost) public onlyOwner { PRICE = _newCost; } function setPresaleMintPrice(uint256 _newCost) public onlyOwner { PRESALE_PRICE = _newCost; } function setPreSaleRoot(bytes32 _merkleRoot) public onlyOwner { preSaleRoot = _merkleRoot; } function reserveMint(uint256 quantity) public onlyOwner { require( totalSupply() + quantity <= MAX_SUPPLY, "would exceed max supply" ); _safeMint(msg.sender, quantity); _reserveCounter = _reserveCounter + quantity; } function airDrop(address to, uint256 quantity) public onlyOwner{ require( totalSupply() + quantity <= MAX_SUPPLY, "would exceed max supply" ); require(quantity > 0, "need to mint at least 1 NFT"); _safeMint(to, quantity); _airdropCounter = _airdropCounter + quantity; } // metadata URI string private _baseTokenURI; function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function reveal(bool _state) public onlyOwner { _revealed = _state; } function mintPreSaleTokens(uint8 quantity, bytes32[] calldata _merkleProof) public payable { require(saleMode == 1, "Pre sale is not active"); require(quantity > 0, "Must mint more than 0 tokens"); require( _preSaleMintCounter[msg.sender] + quantity <= maxPresaleMintAmount, "exceeds max per address" ); require( totalSupply() + quantity <= MAX_SUPPLY, "Purchase would exceed max supply of Tokens" ); require(PRESALE_PRICE * quantity == msg.value, "Incorrect funds"); // check proof & mint bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, preSaleRoot, leaf) || allowList[msg.sender], "Invalid signature/ Address not whitelisted" ); _safeMint(msg.sender, quantity); _preSaleListCounter = _preSaleListCounter + quantity; _preSaleMintCounter[msg.sender] = _preSaleMintCounter[msg.sender] + quantity; } function addToPreSaleOverflow(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { allowList[addresses[i]] = true; } } // public mint function publicSaleMint(uint256 quantity) public payable { require(totalSupply() + quantity <= MAX_SUPPLY, "reached max supply"); require(saleMode == 2, "public sale has not begun yet"); require(quantity > 0, "Must mint more than 0 tokens"); require(PRICE * quantity == msg.value, "Incorrect funds"); require( _publicsaleMintCounter[msg.sender] + quantity <= maxpublicsaleMintAmount, "exceeds max per address" ); _safeMint(msg.sender, quantity); _publicCounter = _publicCounter + quantity; } function getBalance() public view returns (uint256) { return address(this).balance; } function _startTokenId() internal virtual override view returns (uint256) { return 1; } function withdraw() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No ether left to withdraw"); payable(msg.sender).transfer(balance); } // ======== Royalties ========= function setRoyaltyReceiver(address royaltyReceiver) public onlyOwner { royaltyAddress = royaltyReceiver; } function setRoyaltyPercentage(uint256 royaltyPercentage) public onlyOwner { royaltyPercent = royaltyPercentage; } function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Non-existent token"); return (royaltyAddress, (salePrice * royaltyPercent) / 1000); } function supportsInterface(bytes4 interfaceId) public view override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_airdropCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preSaleListCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicsaleMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserveCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPreSaleOverflow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpublicsaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPreSaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercent","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[],"name":"saleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQty","type":"uint256"}],"name":"setMaxPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPreSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQty","type":"uint256"}],"name":"setPublicsaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyPercentage","type":"uint256"}],"name":"setRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyReceiver","type":"address"}],"name":"setRoyaltyReceiver","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600b9062000026908262000270565b5061115c600c556703311fc80a570000600d556701aa535d3d0c0000600e556002601355600360145560006015556018805460ff191690553480156200006b57600080fd5b5060405162002c9938038062002c998339810160408190526200008e91620003eb565b82826200009b33620000fe565b6003620000a9838262000270565b506004620000b8828262000270565b5050600180805560095550620000ce816200014e565b5050600054601680546001600160a01b0319166001600160a01b039092169190911790555060196017556200047c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001586200016a565b600a62000166828262000270565b5050565b6000546001600160a01b03163314620001c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001f657607f821691505b6020821081036200021757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026b57600081815260208120601f850160051c81016020861015620002465750805b601f850160051c820191505b81811015620002675782815560010162000252565b5050505b505050565b81516001600160401b038111156200028c576200028c620001cb565b620002a4816200029d8454620001e1565b846200021d565b602080601f831160018114620002dc5760008415620002c35750858301515b600019600386901b1c1916600185901b17855562000267565b600085815260208120601f198616915b828110156200030d57888601518255948401946001909101908401620002ec565b50858210156200032c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200034e57600080fd5b81516001600160401b03808211156200036b576200036b620001cb565b604051601f8301601f19908116603f01168101908282118183101715620003965762000396620001cb565b81604052838152602092508683858801011115620003b357600080fd5b600091505b83821015620003d75785820183015181830184015290820190620003b8565b600093810190920192909252949350505050565b6000806000606084860312156200040157600080fd5b83516001600160401b03808211156200041957600080fd5b62000427878388016200033c565b945060208601519150808211156200043e57600080fd5b6200044c878388016200033c565b935060408601519150808211156200046357600080fd5b5062000472868287016200033c565b9150509250925092565b61280d806200048c6000396000f3fe6080604052600436106103765760003560e01c8063715018a6116101d1578063b88d4fde11610102578063d99079ca116100a0578063f2c4ce1e1161006f578063f2c4ce1e1461096a578063f2fde38b1461098a578063f8c8d499146109aa578063fe042d49146109ca57600080fd5b8063d99079ca14610901578063da22488c14610917578063e7661c7814610937578063e985e9c51461094a57600080fd5b8063cc523f26116100dc578063cc523f261461087e578063d72dd3b414610894578063d76fd220146108b4578063d7719f64146108d457600080fd5b8063b88d4fde14610836578063c668286214610849578063c87b56dd1461085e57600080fd5b8063940cd05b1161016f5780639f67756d116101495780639f67756d146107cd578063a22cb465146107e3578063ad2f852a14610803578063b3ab66b01461082357600080fd5b8063940cd05b1461076b57806395d89b411461078b5780639b257d73146107a057600080fd5b806389f3b22d116101ab57806389f3b22d146107015780638d859f3e146107175780638da5cb5b1461072d5780638dc251e31461074b57600080fd5b8063715018a6146106c0578063715a609d146106d557806385480756146106eb57600080fd5b80632a55205a116102ab57806355f804b3116102495780636352211e116102235780636352211e146106465780636ebeac85146106665780636f8b44b01461068057806370a08231146106a057600080fd5b806355f804b3146105f057806361ba27da1461061057806362dc6e211461063057600080fd5b806337a131931161028557806337a13193146105955780633ccfd60b146105b557806342842e0e146105bd57806344a0d68a146105d057600080fd5b80632a55205a1461052a5780633154b9c21461056957806332cb6b0c1461057f57600080fd5b80630deed6a61161031857806317c84ce6116102f257806317c84ce6146104bc57806318160ddd146104d257806323b872dd146104e75780632848aeaf146104fa57600080fd5b80630deed6a61461047357806312065fe0146104895780631342ff4c1461049c57600080fd5b8063081812fc11610354578063081812fc146103f4578063081c8c441461042c578063095ea7b3146104415780630d43ebc21461045457600080fd5b806301ffc9a71461037b578063045f7850146103b057806306fdde03146103d2575b600080fd5b34801561038757600080fd5b5061039b610396366004611f98565b6109ea565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103d06103cb366004611fd1565b610a15565b005b3480156103de57600080fd5b506103e7610aef565b6040516103a7919061204b565b34801561040057600080fd5b5061041461040f36600461205e565b610b81565b6040516001600160a01b0390911681526020016103a7565b34801561043857600080fd5b506103e7610bc5565b6103d061044f366004611fd1565b610c53565b34801561046057600080fd5b506015545b6040519081526020016103a7565b34801561047f57600080fd5b5061046560155481565b34801561049557600080fd5b5047610465565b3480156104a857600080fd5b506103d06104b736600461205e565b610cf3565b3480156104c857600080fd5b50610465600f5481565b3480156104de57600080fd5b50610465610d77565b6103d06104f5366004612077565b610d85565b34801561050657600080fd5b5061039b6105153660046120b3565b60196020526000908152604090205460ff1681565b34801561053657600080fd5b5061054a6105453660046120ce565b610f1e565b604080516001600160a01b0390931683526020830191909152016103a7565b34801561057557600080fd5b50610465601c5481565b34801561058b57600080fd5b50610465600c5481565b3480156105a157600080fd5b506103d06105b036600461205e565b610fa1565b6103d0610fae565b6103d06105cb366004612077565b611035565b3480156105dc57600080fd5b506103d06105eb36600461205e565b611055565b3480156105fc57600080fd5b506103d061060b3660046120f0565b611062565b34801561061c57600080fd5b506103d061062b36600461205e565b611077565b34801561063c57600080fd5b50610465600e5481565b34801561065257600080fd5b5061041461066136600461205e565b611084565b34801561067257600080fd5b5060185461039b9060ff1681565b34801561068c57600080fd5b506103d061069b36600461205e565b61108f565b3480156106ac57600080fd5b506104656106bb3660046120b3565b61109c565b3480156106cc57600080fd5b506103d06110eb565b3480156106e157600080fd5b5061046560125481565b3480156106f757600080fd5b5061046560135481565b34801561070d57600080fd5b5061046560105481565b34801561072357600080fd5b50610465600d5481565b34801561073957600080fd5b506000546001600160a01b0316610414565b34801561075757600080fd5b506103d06107663660046120b3565b6110ff565b34801561077757600080fd5b506103d0610786366004612172565b611129565b34801561079757600080fd5b506103e7611144565b3480156107ac57600080fd5b506104656107bb3660046120b3565b601b6020526000908152604090205481565b3480156107d957600080fd5b5061046560175481565b3480156107ef57600080fd5b506103d06107fe36600461218d565b611153565b34801561080f57600080fd5b50601654610414906001600160a01b031681565b6103d061083136600461205e565b6111bf565b6103d061084436600461224c565b61138c565b34801561085557600080fd5b506103e76113d6565b34801561086a57600080fd5b506103e761087936600461205e565b6113e3565b34801561088a57600080fd5b5061046560145481565b3480156108a057600080fd5b506103d06108af36600461205e565b611553565b3480156108c057600080fd5b506103d06108cf36600461205e565b611560565b3480156108e057600080fd5b506104656108ef3660046120b3565b601a6020526000908152604090205481565b34801561090d57600080fd5b5061046560115481565b34801561092357600080fd5b506103d061093236600461230d565b61156d565b6103d061094536600461234f565b6115e7565b34801561095657600080fd5b5061039b6109653660046123aa565b611901565b34801561097657600080fd5b506103d06109853660046123d4565b61192f565b34801561099657600080fd5b506103d06109a53660046120b3565b611943565b3480156109b657600080fd5b506103d06109c536600461205e565b6119bc565b3480156109d657600080fd5b506103d06109e536600461205e565b6119c9565b60006001600160e01b0319821663152a902d60e11b1480610a0f5750610a0f826119d6565b92915050565b610a1d611a24565b600c5481610a29610d77565b610a339190612433565b1115610a805760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b60448201526064015b60405180910390fd5b60008111610ad05760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a77565b610ada8282611a7e565b80601054610ae89190612433565b6010555050565b606060038054610afe90612446565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90612446565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b5050505050905090565b6000610b8c82611a98565b610ba9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600a8054610bd290612446565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90612446565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b505050505081565b6000610c5e82611084565b9050336001600160a01b03821614610c9757610c7a8133611901565b610c97576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cfb611a24565b600c5481610d07610d77565b610d119190612433565b1115610d595760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b6044820152606401610a77565b610d633382611a7e565b80600f54610d719190612433565b600f5550565b600254600154036000190190565b6000610d9082611acd565b9050836001600160a01b0316816001600160a01b031614610dc35760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610e1057610df38633611901565b610e1057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610e3757604051633a954ecd60e21b815260040160405180910390fd5b8015610e4257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610ed457600184016000818152600560205260408120549003610ed2576001548114610ed25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600080610f2a84611a98565b610f6b5760405162461bcd60e51b81526020600482015260126024820152712737b716b2bc34b9ba32b73a103a37b5b2b760711b6044820152606401610a77565b6016546017546001600160a01b03909116906103e890610f8b9086612480565b610f9591906124ad565b915091505b9250929050565b610fa9611a24565b600e55565b610fb6611a24565b47806110045760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610a77565b604051339082156108fc029083906000818181858888f19350505050158015611031573d6000803e3d6000fd5b5050565b6110508383836040518060200160405280600081525061138c565b505050565b61105d611a24565b600d55565b61106a611a24565b601d611050828483612507565b61107f611a24565b601755565b6000610a0f82611acd565b611097611a24565b600c55565b60006001600160a01b0382166110c5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6110f3611a24565b6110fd6000611b3c565b565b611107611a24565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b611131611a24565b6018805460ff1916911515919091179055565b606060048054610afe90612446565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c54816111cb610d77565b6111d59190612433565b11156112185760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a77565b60155460021461126a5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610a77565b600081116112ba5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a77565b3481600d546112c99190612480565b146113085760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a77565b601454336000908152601b6020526040902054611326908390612433565b111561136e5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610a77565b6113783382611a7e565b806012546113869190612433565b60125550565b611397848484610d85565b6001600160a01b0383163b156113d0576113b384848484611b8c565b6113d0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610bd290612446565b60606113ee82611a98565b6114535760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a77565b60185460ff1615156000036114f457600a805461146f90612446565b80601f016020809104026020016040519081016040528092919081815260200182805461149b90612446565b80156114e85780601f106114bd576101008083540402835291602001916114e8565b820191906000526020600020905b8154815290600101906020018083116114cb57829003601f168201915b50505050509050919050565b60006114fe611c78565b9050600081511161151e576040518060200160405280600081525061154c565b8061152884611c87565b600b60405160200161153c939291906125c7565b6040516020818303038152906040525b9392505050565b61155b611a24565b601555565b611568611a24565b601355565b611575611a24565b60005b818110156110505760016019600085858581811061159857611598612667565b90506020020160208101906115ad91906120b3565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806115df8161267d565b915050611578565b6015546001146116325760405162461bcd60e51b81526020600482015260166024820152755072652073616c65206973206e6f742061637469766560501b6044820152606401610a77565b60008360ff16116116855760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a77565b601354336000908152601a60205260409020546116a69060ff861690612433565b11156116ee5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610a77565b600c548360ff166116fd610d77565b6117079190612433565b11156117685760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620546f6b656e7360b01b6064820152608401610a77565b348360ff16600e5461177a9190612480565b146117b95760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a77565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061183383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601c549150849050611d88565b8061184d57503360009081526019602052604090205460ff165b6118ac5760405162461bcd60e51b815260206004820152602a60248201527f496e76616c6964207369676e61747572652f2041646472657373206e6f7420776044820152691a1a5d195b1a5cdd195960b21b6064820152608401610a77565b6118b9338560ff16611a7e565b8360ff166011546118ca9190612433565b601155336000908152601a60205260409020546118eb9060ff861690612433565b336000908152601a602052604090205550505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611937611a24565b600a6110318282612696565b61194b611a24565b6001600160a01b0381166119b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a77565b6119b981611b3c565b50565b6119c4611a24565b601455565b6119d1611a24565b601c55565b60006301ffc9a760e01b6001600160e01b031983161480611a0757506380ac58cd60e01b6001600160e01b03198316145b80610a0f5750506001600160e01b031916635b5e139f60e01b1490565b6000546001600160a01b031633146110fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a77565b611031828260405180602001604052806000815250611d9e565b600081600111158015611aac575060015482105b8015610a0f575050600090815260056020526040902054600160e01b161590565b60008180600111611b2357600154811015611b235760008181526005602052604081205490600160e01b82169003611b21575b8060000361154c575060001901600081815260056020526040902054611b00565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bc1903390899088908890600401612756565b6020604051808303816000875af1925050508015611bfc575060408051601f3d908101601f19168201909252611bf991810190612793565b60015b611c5a573d808015611c2a576040519150601f19603f3d011682016040523d82523d6000602084013e611c2f565b606091505b508051600003611c52576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601d8054610afe90612446565b606081600003611cae5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd85780611cc28161267d565b9150611cd19050600a836124ad565b9150611cb2565b60008167ffffffffffffffff811115611cf357611cf36121c0565b6040519080825280601f01601f191660200182016040528015611d1d576020820181803683370190505b5090505b8415611c7057611d326001836127b0565b9150611d3f600a866127c3565b611d4a906030612433565b60f81b818381518110611d5f57611d5f612667565b60200101906001600160f81b031916908160001a905350611d81600a866124ad565b9450611d21565b600082611d958584611e0b565b14949350505050565b611da88383611e58565b6001600160a01b0383163b15611050576001548281035b611dd26000868380600101945086611b8c565b611def576040516368d2bf6b60e11b815260040160405180910390fd5b818110611dbf578160015414611e0457600080fd5b5050505050565b600081815b8451811015611e5057611e3c82868381518110611e2f57611e2f612667565b6020026020010151611f56565b915080611e488161267d565b915050611e10565b509392505050565b6001546000829003611e7d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611f2c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611ef4565b5081600003611f4d57604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000818310611f7257600082815260208490526040902061154c565b5060009182526020526040902090565b6001600160e01b0319811681146119b957600080fd5b600060208284031215611faa57600080fd5b813561154c81611f82565b80356001600160a01b0381168114611fcc57600080fd5b919050565b60008060408385031215611fe457600080fd5b611fed83611fb5565b946020939093013593505050565b60005b83811015612016578181015183820152602001611ffe565b50506000910152565b60008151808452612037816020860160208601611ffb565b601f01601f19169290920160200192915050565b60208152600061154c602083018461201f565b60006020828403121561207057600080fd5b5035919050565b60008060006060848603121561208c57600080fd5b61209584611fb5565b92506120a360208501611fb5565b9150604084013590509250925092565b6000602082840312156120c557600080fd5b61154c82611fb5565b600080604083850312156120e157600080fd5b50508035926020909101359150565b6000806020838503121561210357600080fd5b823567ffffffffffffffff8082111561211b57600080fd5b818501915085601f83011261212f57600080fd5b81358181111561213e57600080fd5b86602082850101111561215057600080fd5b60209290920196919550909350505050565b80358015158114611fcc57600080fd5b60006020828403121561218457600080fd5b61154c82612162565b600080604083850312156121a057600080fd5b6121a983611fb5565b91506121b760208401612162565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121f1576121f16121c0565b604051601f8501601f19908116603f01168101908282118183101715612219576122196121c0565b8160405280935085815286868601111561223257600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561226257600080fd5b61226b85611fb5565b935061227960208601611fb5565b925060408501359150606085013567ffffffffffffffff81111561229c57600080fd5b8501601f810187136122ad57600080fd5b6122bc878235602084016121d6565b91505092959194509250565b60008083601f8401126122da57600080fd5b50813567ffffffffffffffff8111156122f257600080fd5b6020830191508360208260051b8501011115610f9a57600080fd5b6000806020838503121561232057600080fd5b823567ffffffffffffffff81111561233757600080fd5b612343858286016122c8565b90969095509350505050565b60008060006040848603121561236457600080fd5b833560ff8116811461237557600080fd5b9250602084013567ffffffffffffffff81111561239157600080fd5b61239d868287016122c8565b9497909650939450505050565b600080604083850312156123bd57600080fd5b6123c683611fb5565b91506121b760208401611fb5565b6000602082840312156123e657600080fd5b813567ffffffffffffffff8111156123fd57600080fd5b8201601f8101841361240e57600080fd5b611c70848235602084016121d6565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a0f57610a0f61241d565b600181811c9082168061245a57607f821691505b60208210810361247a57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610a0f57610a0f61241d565b634e487b7160e01b600052601260045260246000fd5b6000826124bc576124bc612497565b500490565b601f82111561105057600081815260208120601f850160051c810160208610156124e85750805b601f850160051c820191505b81811015610f16578281556001016124f4565b67ffffffffffffffff83111561251f5761251f6121c0565b6125338361252d8354612446565b836124c1565b6000601f841160018114612567576000851561254f5750838201355b600019600387901b1c1916600186901b178355611e04565b600083815260209020601f19861690835b828110156125985786850135825560209485019460019092019101612578565b50868210156125b55760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000845160206125da8285838a01611ffb565b8551918401916125ed8184848a01611ffb565b85549201916000906125fe81612446565b60018281168015612616576001811461262b57612657565b60ff1984168752821515830287019450612657565b896000528560002060005b8481101561264f57815489820152908301908701612636565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161268f5761268f61241d565b5060010190565b815167ffffffffffffffff8111156126b0576126b06121c0565b6126c4816126be8454612446565b846124c1565b602080601f8311600181146126f957600084156126e15750858301515b600019600386901b1c1916600185901b178555610f16565b600085815260208120601f198616915b8281101561272857888601518255948401946001909101908401612709565b50858210156127465787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127899083018461201f565b9695505050505050565b6000602082840312156127a557600080fd5b815161154c81611f82565b81810381811115610a0f57610a0f61241d565b6000826127d2576127d2612497565b50069056fea26469706673582212200be3f271d60edb432c08de1c75aed286babdd186ed98ae08d570b84dd8d1248564736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000006467265616b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024652000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f7777772e667265616b732e636c75622f6e6f6e2d72657665616c2f72657665616c2e6a736f6e000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103765760003560e01c8063715018a6116101d1578063b88d4fde11610102578063d99079ca116100a0578063f2c4ce1e1161006f578063f2c4ce1e1461096a578063f2fde38b1461098a578063f8c8d499146109aa578063fe042d49146109ca57600080fd5b8063d99079ca14610901578063da22488c14610917578063e7661c7814610937578063e985e9c51461094a57600080fd5b8063cc523f26116100dc578063cc523f261461087e578063d72dd3b414610894578063d76fd220146108b4578063d7719f64146108d457600080fd5b8063b88d4fde14610836578063c668286214610849578063c87b56dd1461085e57600080fd5b8063940cd05b1161016f5780639f67756d116101495780639f67756d146107cd578063a22cb465146107e3578063ad2f852a14610803578063b3ab66b01461082357600080fd5b8063940cd05b1461076b57806395d89b411461078b5780639b257d73146107a057600080fd5b806389f3b22d116101ab57806389f3b22d146107015780638d859f3e146107175780638da5cb5b1461072d5780638dc251e31461074b57600080fd5b8063715018a6146106c0578063715a609d146106d557806385480756146106eb57600080fd5b80632a55205a116102ab57806355f804b3116102495780636352211e116102235780636352211e146106465780636ebeac85146106665780636f8b44b01461068057806370a08231146106a057600080fd5b806355f804b3146105f057806361ba27da1461061057806362dc6e211461063057600080fd5b806337a131931161028557806337a13193146105955780633ccfd60b146105b557806342842e0e146105bd57806344a0d68a146105d057600080fd5b80632a55205a1461052a5780633154b9c21461056957806332cb6b0c1461057f57600080fd5b80630deed6a61161031857806317c84ce6116102f257806317c84ce6146104bc57806318160ddd146104d257806323b872dd146104e75780632848aeaf146104fa57600080fd5b80630deed6a61461047357806312065fe0146104895780631342ff4c1461049c57600080fd5b8063081812fc11610354578063081812fc146103f4578063081c8c441461042c578063095ea7b3146104415780630d43ebc21461045457600080fd5b806301ffc9a71461037b578063045f7850146103b057806306fdde03146103d2575b600080fd5b34801561038757600080fd5b5061039b610396366004611f98565b6109ea565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103d06103cb366004611fd1565b610a15565b005b3480156103de57600080fd5b506103e7610aef565b6040516103a7919061204b565b34801561040057600080fd5b5061041461040f36600461205e565b610b81565b6040516001600160a01b0390911681526020016103a7565b34801561043857600080fd5b506103e7610bc5565b6103d061044f366004611fd1565b610c53565b34801561046057600080fd5b506015545b6040519081526020016103a7565b34801561047f57600080fd5b5061046560155481565b34801561049557600080fd5b5047610465565b3480156104a857600080fd5b506103d06104b736600461205e565b610cf3565b3480156104c857600080fd5b50610465600f5481565b3480156104de57600080fd5b50610465610d77565b6103d06104f5366004612077565b610d85565b34801561050657600080fd5b5061039b6105153660046120b3565b60196020526000908152604090205460ff1681565b34801561053657600080fd5b5061054a6105453660046120ce565b610f1e565b604080516001600160a01b0390931683526020830191909152016103a7565b34801561057557600080fd5b50610465601c5481565b34801561058b57600080fd5b50610465600c5481565b3480156105a157600080fd5b506103d06105b036600461205e565b610fa1565b6103d0610fae565b6103d06105cb366004612077565b611035565b3480156105dc57600080fd5b506103d06105eb36600461205e565b611055565b3480156105fc57600080fd5b506103d061060b3660046120f0565b611062565b34801561061c57600080fd5b506103d061062b36600461205e565b611077565b34801561063c57600080fd5b50610465600e5481565b34801561065257600080fd5b5061041461066136600461205e565b611084565b34801561067257600080fd5b5060185461039b9060ff1681565b34801561068c57600080fd5b506103d061069b36600461205e565b61108f565b3480156106ac57600080fd5b506104656106bb3660046120b3565b61109c565b3480156106cc57600080fd5b506103d06110eb565b3480156106e157600080fd5b5061046560125481565b3480156106f757600080fd5b5061046560135481565b34801561070d57600080fd5b5061046560105481565b34801561072357600080fd5b50610465600d5481565b34801561073957600080fd5b506000546001600160a01b0316610414565b34801561075757600080fd5b506103d06107663660046120b3565b6110ff565b34801561077757600080fd5b506103d0610786366004612172565b611129565b34801561079757600080fd5b506103e7611144565b3480156107ac57600080fd5b506104656107bb3660046120b3565b601b6020526000908152604090205481565b3480156107d957600080fd5b5061046560175481565b3480156107ef57600080fd5b506103d06107fe36600461218d565b611153565b34801561080f57600080fd5b50601654610414906001600160a01b031681565b6103d061083136600461205e565b6111bf565b6103d061084436600461224c565b61138c565b34801561085557600080fd5b506103e76113d6565b34801561086a57600080fd5b506103e761087936600461205e565b6113e3565b34801561088a57600080fd5b5061046560145481565b3480156108a057600080fd5b506103d06108af36600461205e565b611553565b3480156108c057600080fd5b506103d06108cf36600461205e565b611560565b3480156108e057600080fd5b506104656108ef3660046120b3565b601a6020526000908152604090205481565b34801561090d57600080fd5b5061046560115481565b34801561092357600080fd5b506103d061093236600461230d565b61156d565b6103d061094536600461234f565b6115e7565b34801561095657600080fd5b5061039b6109653660046123aa565b611901565b34801561097657600080fd5b506103d06109853660046123d4565b61192f565b34801561099657600080fd5b506103d06109a53660046120b3565b611943565b3480156109b657600080fd5b506103d06109c536600461205e565b6119bc565b3480156109d657600080fd5b506103d06109e536600461205e565b6119c9565b60006001600160e01b0319821663152a902d60e11b1480610a0f5750610a0f826119d6565b92915050565b610a1d611a24565b600c5481610a29610d77565b610a339190612433565b1115610a805760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b60448201526064015b60405180910390fd5b60008111610ad05760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a77565b610ada8282611a7e565b80601054610ae89190612433565b6010555050565b606060038054610afe90612446565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90612446565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b5050505050905090565b6000610b8c82611a98565b610ba9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600a8054610bd290612446565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90612446565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b505050505081565b6000610c5e82611084565b9050336001600160a01b03821614610c9757610c7a8133611901565b610c97576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cfb611a24565b600c5481610d07610d77565b610d119190612433565b1115610d595760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b6044820152606401610a77565b610d633382611a7e565b80600f54610d719190612433565b600f5550565b600254600154036000190190565b6000610d9082611acd565b9050836001600160a01b0316816001600160a01b031614610dc35760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610e1057610df38633611901565b610e1057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610e3757604051633a954ecd60e21b815260040160405180910390fd5b8015610e4257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610ed457600184016000818152600560205260408120549003610ed2576001548114610ed25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600080610f2a84611a98565b610f6b5760405162461bcd60e51b81526020600482015260126024820152712737b716b2bc34b9ba32b73a103a37b5b2b760711b6044820152606401610a77565b6016546017546001600160a01b03909116906103e890610f8b9086612480565b610f9591906124ad565b915091505b9250929050565b610fa9611a24565b600e55565b610fb6611a24565b47806110045760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610a77565b604051339082156108fc029083906000818181858888f19350505050158015611031573d6000803e3d6000fd5b5050565b6110508383836040518060200160405280600081525061138c565b505050565b61105d611a24565b600d55565b61106a611a24565b601d611050828483612507565b61107f611a24565b601755565b6000610a0f82611acd565b611097611a24565b600c55565b60006001600160a01b0382166110c5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6110f3611a24565b6110fd6000611b3c565b565b611107611a24565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b611131611a24565b6018805460ff1916911515919091179055565b606060048054610afe90612446565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c54816111cb610d77565b6111d59190612433565b11156112185760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a77565b60155460021461126a5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610a77565b600081116112ba5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a77565b3481600d546112c99190612480565b146113085760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a77565b601454336000908152601b6020526040902054611326908390612433565b111561136e5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610a77565b6113783382611a7e565b806012546113869190612433565b60125550565b611397848484610d85565b6001600160a01b0383163b156113d0576113b384848484611b8c565b6113d0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610bd290612446565b60606113ee82611a98565b6114535760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a77565b60185460ff1615156000036114f457600a805461146f90612446565b80601f016020809104026020016040519081016040528092919081815260200182805461149b90612446565b80156114e85780601f106114bd576101008083540402835291602001916114e8565b820191906000526020600020905b8154815290600101906020018083116114cb57829003601f168201915b50505050509050919050565b60006114fe611c78565b9050600081511161151e576040518060200160405280600081525061154c565b8061152884611c87565b600b60405160200161153c939291906125c7565b6040516020818303038152906040525b9392505050565b61155b611a24565b601555565b611568611a24565b601355565b611575611a24565b60005b818110156110505760016019600085858581811061159857611598612667565b90506020020160208101906115ad91906120b3565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806115df8161267d565b915050611578565b6015546001146116325760405162461bcd60e51b81526020600482015260166024820152755072652073616c65206973206e6f742061637469766560501b6044820152606401610a77565b60008360ff16116116855760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a77565b601354336000908152601a60205260409020546116a69060ff861690612433565b11156116ee5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610a77565b600c548360ff166116fd610d77565b6117079190612433565b11156117685760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620546f6b656e7360b01b6064820152608401610a77565b348360ff16600e5461177a9190612480565b146117b95760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a77565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061183383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601c549150849050611d88565b8061184d57503360009081526019602052604090205460ff165b6118ac5760405162461bcd60e51b815260206004820152602a60248201527f496e76616c6964207369676e61747572652f2041646472657373206e6f7420776044820152691a1a5d195b1a5cdd195960b21b6064820152608401610a77565b6118b9338560ff16611a7e565b8360ff166011546118ca9190612433565b601155336000908152601a60205260409020546118eb9060ff861690612433565b336000908152601a602052604090205550505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611937611a24565b600a6110318282612696565b61194b611a24565b6001600160a01b0381166119b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a77565b6119b981611b3c565b50565b6119c4611a24565b601455565b6119d1611a24565b601c55565b60006301ffc9a760e01b6001600160e01b031983161480611a0757506380ac58cd60e01b6001600160e01b03198316145b80610a0f5750506001600160e01b031916635b5e139f60e01b1490565b6000546001600160a01b031633146110fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a77565b611031828260405180602001604052806000815250611d9e565b600081600111158015611aac575060015482105b8015610a0f575050600090815260056020526040902054600160e01b161590565b60008180600111611b2357600154811015611b235760008181526005602052604081205490600160e01b82169003611b21575b8060000361154c575060001901600081815260056020526040902054611b00565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bc1903390899088908890600401612756565b6020604051808303816000875af1925050508015611bfc575060408051601f3d908101601f19168201909252611bf991810190612793565b60015b611c5a573d808015611c2a576040519150601f19603f3d011682016040523d82523d6000602084013e611c2f565b606091505b508051600003611c52576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601d8054610afe90612446565b606081600003611cae5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd85780611cc28161267d565b9150611cd19050600a836124ad565b9150611cb2565b60008167ffffffffffffffff811115611cf357611cf36121c0565b6040519080825280601f01601f191660200182016040528015611d1d576020820181803683370190505b5090505b8415611c7057611d326001836127b0565b9150611d3f600a866127c3565b611d4a906030612433565b60f81b818381518110611d5f57611d5f612667565b60200101906001600160f81b031916908160001a905350611d81600a866124ad565b9450611d21565b600082611d958584611e0b565b14949350505050565b611da88383611e58565b6001600160a01b0383163b15611050576001548281035b611dd26000868380600101945086611b8c565b611def576040516368d2bf6b60e11b815260040160405180910390fd5b818110611dbf578160015414611e0457600080fd5b5050505050565b600081815b8451811015611e5057611e3c82868381518110611e2f57611e2f612667565b6020026020010151611f56565b915080611e488161267d565b915050611e10565b509392505050565b6001546000829003611e7d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611f2c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611ef4565b5081600003611f4d57604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000818310611f7257600082815260208490526040902061154c565b5060009182526020526040902090565b6001600160e01b0319811681146119b957600080fd5b600060208284031215611faa57600080fd5b813561154c81611f82565b80356001600160a01b0381168114611fcc57600080fd5b919050565b60008060408385031215611fe457600080fd5b611fed83611fb5565b946020939093013593505050565b60005b83811015612016578181015183820152602001611ffe565b50506000910152565b60008151808452612037816020860160208601611ffb565b601f01601f19169290920160200192915050565b60208152600061154c602083018461201f565b60006020828403121561207057600080fd5b5035919050565b60008060006060848603121561208c57600080fd5b61209584611fb5565b92506120a360208501611fb5565b9150604084013590509250925092565b6000602082840312156120c557600080fd5b61154c82611fb5565b600080604083850312156120e157600080fd5b50508035926020909101359150565b6000806020838503121561210357600080fd5b823567ffffffffffffffff8082111561211b57600080fd5b818501915085601f83011261212f57600080fd5b81358181111561213e57600080fd5b86602082850101111561215057600080fd5b60209290920196919550909350505050565b80358015158114611fcc57600080fd5b60006020828403121561218457600080fd5b61154c82612162565b600080604083850312156121a057600080fd5b6121a983611fb5565b91506121b760208401612162565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121f1576121f16121c0565b604051601f8501601f19908116603f01168101908282118183101715612219576122196121c0565b8160405280935085815286868601111561223257600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561226257600080fd5b61226b85611fb5565b935061227960208601611fb5565b925060408501359150606085013567ffffffffffffffff81111561229c57600080fd5b8501601f810187136122ad57600080fd5b6122bc878235602084016121d6565b91505092959194509250565b60008083601f8401126122da57600080fd5b50813567ffffffffffffffff8111156122f257600080fd5b6020830191508360208260051b8501011115610f9a57600080fd5b6000806020838503121561232057600080fd5b823567ffffffffffffffff81111561233757600080fd5b612343858286016122c8565b90969095509350505050565b60008060006040848603121561236457600080fd5b833560ff8116811461237557600080fd5b9250602084013567ffffffffffffffff81111561239157600080fd5b61239d868287016122c8565b9497909650939450505050565b600080604083850312156123bd57600080fd5b6123c683611fb5565b91506121b760208401611fb5565b6000602082840312156123e657600080fd5b813567ffffffffffffffff8111156123fd57600080fd5b8201601f8101841361240e57600080fd5b611c70848235602084016121d6565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a0f57610a0f61241d565b600181811c9082168061245a57607f821691505b60208210810361247a57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610a0f57610a0f61241d565b634e487b7160e01b600052601260045260246000fd5b6000826124bc576124bc612497565b500490565b601f82111561105057600081815260208120601f850160051c810160208610156124e85750805b601f850160051c820191505b81811015610f16578281556001016124f4565b67ffffffffffffffff83111561251f5761251f6121c0565b6125338361252d8354612446565b836124c1565b6000601f841160018114612567576000851561254f5750838201355b600019600387901b1c1916600186901b178355611e04565b600083815260209020601f19861690835b828110156125985786850135825560209485019460019092019101612578565b50868210156125b55760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000845160206125da8285838a01611ffb565b8551918401916125ed8184848a01611ffb565b85549201916000906125fe81612446565b60018281168015612616576001811461262b57612657565b60ff1984168752821515830287019450612657565b896000528560002060005b8481101561264f57815489820152908301908701612636565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161268f5761268f61241d565b5060010190565b815167ffffffffffffffff8111156126b0576126b06121c0565b6126c4816126be8454612446565b846124c1565b602080601f8311600181146126f957600084156126e15750858301515b600019600386901b1c1916600185901b178555610f16565b600085815260208120601f198616915b8281101561272857888601518255948401946001909101908401612709565b50858210156127465787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127899083018461201f565b9695505050505050565b6000602082840312156127a557600080fd5b815161154c81611f82565b81810381811115610a0f57610a0f61241d565b6000826127d2576127d2612497565b50069056fea26469706673582212200be3f271d60edb432c08de1c75aed286babdd186ed98ae08d570b84dd8d1248564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000006467265616b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024652000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f7777772e667265616b732e636c75622f6e6f6e2d72657665616c2f72657665616c2e6a736f6e000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Freaks
Arg [1] : symbol (string): FR
Arg [2] : _notRevealedUri (string): https://www.freaks.club/non-reveal/reveal.json
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 467265616b730000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4652000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [8] : 68747470733a2f2f7777772e667265616b732e636c75622f6e6f6e2d72657665
Arg [9] : 616c2f72657665616c2e6a736f6e000000000000000000000000000000000000
Deployed Bytecode Sourcemap
70696:7941:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78319:311;;;;;;;;;;-1:-1:-1;78319:311:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;78319:311:0;;;;;;;;74002:377;;;;;;;;;;-1:-1:-1;74002:377:0;;;;;:::i;:::-;;:::i;:::-;;38530:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45021:218::-;;;;;;;;;;-1:-1:-1;45021:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2134:32:1;;;2116:51;;2104:2;2089:18;45021:218:0;1970:203:1;70770:28:0;;;;;;;;;;;;;:::i;44454:408::-;;;;;;:::i;:::-;;:::i;72817:94::-;;;;;;;;;;-1:-1:-1;72891:8:0;;72817:94;;;2324:25:1;;;2312:2;2297:18;72817:94:0;2178:177:1;71279:27:0;;;;;;;;;;;;;;;;77149:107;;;;;;;;;;-1:-1:-1;77223:21:0;77149:107;;73679:311;;;;;;;;;;-1:-1:-1;73679:311:0;;;;;:::i;:::-;;:::i;71009:30::-;;;;;;;;;;;;;;;;34281:323;;;;;;;;;;;;;:::i;48660:2825::-;;;;;;:::i;:::-;;:::i;71511:41::-;;;;;;;;;;-1:-1:-1;71511:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;77967:340;;;;;;;;;;-1:-1:-1;77967:340:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3329:32:1;;;3311:51;;3393:2;3378:18;;3371:34;;;;3284:18;77967:340:0;3137:274:1;71722:26:0;;;;;;;;;;;;;;;;70870:32;;;;;;;;;;;;;;;;73426:115;;;;;;;;;;-1:-1:-1;73426:115:0;;;;;:::i;:::-;;:::i;77399:227::-;;;:::i;51581:193::-;;;;;;:::i;:::-;;:::i;73319:95::-;;;;;;;;;;-1:-1:-1;73319:95:0;;;;;:::i;:::-;;:::i;74457:112::-;;;;;;;;;;-1:-1:-1;74457:112:0;;;;;:::i;:::-;;:::i;77820:135::-;;;;;;;;;;-1:-1:-1;77820:135:0;;;;;:::i;:::-;;:::i;70957:41::-;;;;;;;;;;;;;;;;39923:152;;;;;;;;;;-1:-1:-1;39923:152:0;;;;;:::i;:::-;;:::i;71469:29::-;;;;;;;;;;-1:-1:-1;71469:29:0;;;;;;;;72923:109;;;;;;;;;;-1:-1:-1;72923:109:0;;;;;:::i;:::-;;:::i;35465:233::-;;;;;;;;;;-1:-1:-1;35465:233:0;;;;;:::i;:::-;;:::i;18457:103::-;;;;;;;;;;;;;:::i;71136:29::-;;;;;;;;;;;;;;;;71176:39;;;;;;;;;;;;;;;;71050:30;;;;;;;;;;;;;;;;70913:33;;;;;;;;;;;;;;;;17809:87;;;;;;;;;;-1:-1:-1;17855:7:0;17882:6;-1:-1:-1;;;;;17882:6:0;17809:87;;77679:129;;;;;;;;;;-1:-1:-1;77679:129:0;;;;;:::i;:::-;;:::i;74861:91::-;;;;;;;;;;-1:-1:-1;74861:91:0;;;;;:::i;:::-;;:::i;38706:104::-;;;;;;;;;;;;;:::i;71628:57::-;;;;;;;;;;-1:-1:-1;71628:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;71427:29;;;;;;;;;;;;;;;;45579:234;;;;;;;;;;-1:-1:-1;45579:234:0;;;;;:::i;:::-;;:::i;71387:29::-;;;;;;;;;;-1:-1:-1;71387:29:0;;;;-1:-1:-1;;;;;71387:29:0;;;76462:675;;;;;;:::i;:::-;;:::i;52372:407::-;;;;;;:::i;:::-;;:::i;70812:37::-;;;;;;;;;;;;;:::i;72086:618::-;;;;;;;;;;-1:-1:-1;72086:618:0;;;;;:::i;:::-;;:::i;71226:42::-;;;;;;;;;;;;;;;;72716:89;;;;;;;;;;-1:-1:-1;72716:89:0;;;;;:::i;:::-;;:::i;73044:124::-;;;;;;;;;;-1:-1:-1;73044:124:0;;;;;:::i;:::-;;:::i;71563:54::-;;;;;;;;;;-1:-1:-1;71563:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;71091:34;;;;;;;;;;;;;;;;76174:252;;;;;;;;;;-1:-1:-1;76174:252:0;;;;;:::i;:::-;;:::i;74964:1198::-;;;;;;:::i;:::-;;:::i;45970:164::-;;;;;;;;;;-1:-1:-1;45970:164:0;;;;;:::i;:::-;;:::i;74715:134::-;;;;;;;;;;-1:-1:-1;74715:134:0;;;;;:::i;:::-;;:::i;18715:201::-;;;;;;;;;;-1:-1:-1;18715:201:0;;;;;:::i;:::-;;:::i;73180:127::-;;;;;;;;;;-1:-1:-1;73180:127:0;;;;;:::i;:::-;;:::i;73553:114::-;;;;;;;;;;-1:-1:-1;73553:114:0;;;;;:::i;:::-;;:::i;78319:311::-;78466:4;-1:-1:-1;;;;;;78520:41:0;;-1:-1:-1;;;78520:41:0;;:98;;;78582:36;78606:11;78582:23;:36::i;:::-;78496:122;78319:311;-1:-1:-1;;78319:311:0:o;74002:377::-;17695:13;:11;:13::i;:::-;74134:10:::1;;74122:8;74106:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;74080:123;;;::::0;-1:-1:-1;;;74080:123:0;;9025:2:1;74080:123:0::1;::::0;::::1;9007:21:1::0;9064:2;9044:18;;;9037:30;-1:-1:-1;;;9083:18:1;;;9076:53;9146:18;;74080:123:0::1;;;;;;;;;74237:1;74226:8;:12;74218:52;;;::::0;-1:-1:-1;;;74218:52:0;;9377:2:1;74218:52:0::1;::::0;::::1;9359:21:1::0;9416:2;9396:18;;;9389:30;9455:29;9435:18;;;9428:57;9502:18;;74218:52:0::1;9175:351:1::0;74218:52:0::1;74285:23;74295:2;74299:8;74285:9;:23::i;:::-;74359:8;74341:15;;:26;;;;:::i;:::-;74323:15;:44:::0;-1:-1:-1;;74002:377:0:o;38530:100::-;38584:13;38617:5;38610:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38530:100;:::o;45021:218::-;45097:7;45122:16;45130:7;45122;:16::i;:::-;45117:64;;45147:34;;-1:-1:-1;;;45147:34:0;;;;;;;;;;;45117:64;-1:-1:-1;45201:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;45201:30:0;;45021:218::o;70770:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44454:408::-;44543:13;44559:16;44567:7;44559;:16::i;:::-;44543:32;-1:-1:-1;68787:10:0;-1:-1:-1;;;;;44592:28:0;;;44588:175;;44640:44;44657:5;68787:10;45970:164;:::i;44640:44::-;44635:128;;44712:35;;-1:-1:-1;;;44712:35:0;;;;;;;;;;;44635:128;44775:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;44775:35:0;-1:-1:-1;;;;;44775:35:0;;;;;;;;;44826:28;;44775:24;;44826:28;;;;;;;44532:330;44454:408;;:::o;73679:311::-;17695:13;:11;:13::i;:::-;73804:10:::1;;73792:8;73776:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;73750:123;;;::::0;-1:-1:-1;;;73750:123:0;;9025:2:1;73750:123:0::1;::::0;::::1;9007:21:1::0;9064:2;9044:18;;;9037:30;-1:-1:-1;;;9083:18:1;;;9076:53;9146:18;;73750:123:0::1;8823:347:1::0;73750:123:0::1;73888:31;73898:10;73910:8;73888:9;:31::i;:::-;73970:8;73952:15;;:26;;;;:::i;:::-;73934:15;:44:::0;-1:-1:-1;73679:311:0:o;34281:323::-;34555:12;;77364:1;34539:13;:28;-1:-1:-1;;34539:46:0;;34281:323::o;48660:2825::-;48802:27;48832;48851:7;48832:18;:27::i;:::-;48802:57;;48917:4;-1:-1:-1;;;;;48876:45:0;48892:19;-1:-1:-1;;;;;48876:45:0;;48872:86;;48930:28;;-1:-1:-1;;;48930:28:0;;;;;;;;;;;48872:86;48972:27;47768:24;;;:15;:24;;;;;47996:26;;68787:10;47393:30;;;-1:-1:-1;;;;;47086:28:0;;47371:20;;;47368:56;49158:180;;49251:43;49268:4;68787:10;45970:164;:::i;49251:43::-;49246:92;;49303:35;;-1:-1:-1;;;49303:35:0;;;;;;;;;;;49246:92;-1:-1:-1;;;;;49355:16:0;;49351:52;;49380:23;;-1:-1:-1;;;49380:23:0;;;;;;;;;;;49351:52;49552:15;49549:160;;;49692:1;49671:19;49664:30;49549:160;-1:-1:-1;;;;;50089:24:0;;;;;;;:18;:24;;;;;;50087:26;;-1:-1:-1;;50087:26:0;;;50158:22;;;;;;;;;50156:24;;-1:-1:-1;50156:24:0;;;43312:11;43287:23;43283:41;43270:63;-1:-1:-1;;;43270:63:0;50451:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;50746:47:0;;:52;;50742:627;;50851:1;50841:11;;50819:19;50974:30;;;:17;:30;;;;;;:35;;50970:384;;51112:13;;51097:11;:28;51093:242;;51259:30;;;;:17;:30;;;;;:52;;;51093:242;50800:569;50742:627;51416:7;51412:2;-1:-1:-1;;;;;51397:27:0;51406:4;-1:-1:-1;;;;;51397:27:0;;;;;;;;;;;51435:42;48791:2694;;;48660:2825;;;:::o;77967:340::-;78108:16;78126:21;78181:16;78189:7;78181;:16::i;:::-;78173:47;;;;-1:-1:-1;;;78173:47:0;;10118:2:1;78173:47:0;;;10100:21:1;10157:2;10137:18;;;10130:30;-1:-1:-1;;;10176:18:1;;;10169:48;10234:18;;78173:47:0;9916:342:1;78173:47:0;78243:14;;78272;;-1:-1:-1;;;;;78243:14:0;;;;78290:4;;78260:26;;:9;:26;:::i;:::-;78259:35;;;;:::i;:::-;78235:60;;;;77967:340;;;;;;:::o;73426:115::-;17695:13;:11;:13::i;:::-;73505::::1;:24:::0;73426:115::o;77399:227::-;17695:13;:11;:13::i;:::-;77477:21:::1;77521:11:::0;77513:49:::1;;;::::0;-1:-1:-1;;;77513:49:0;;10895:2:1;77513:49:0::1;::::0;::::1;10877:21:1::0;10934:2;10914:18;;;10907:30;10973:27;10953:18;;;10946:55;11018:18;;77513:49:0::1;10693:349:1::0;77513:49:0::1;77577:37;::::0;77585:10:::1;::::0;77577:37;::::1;;;::::0;77606:7;;77577:37:::1;::::0;;;77606:7;77585:10;77577:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;77444:182;77399:227::o:0;51581:193::-;51727:39;51744:4;51750:2;51754:7;51727:39;;;;;;;;;;;;:16;:39::i;:::-;51581:193;;;:::o;73319:95::-;17695:13;:11;:13::i;:::-;73386:5:::1;:16:::0;73319:95::o;74457:112::-;17695:13;:11;:13::i;:::-;74534::::1;:23;74550:7:::0;;74534:13;:23:::1;:::i;77820:135::-:0;17695:13;:11;:13::i;:::-;77909:14:::1;:34:::0;77820:135::o;39923:152::-;39995:7;40038:27;40057:7;40038:18;:27::i;72923:109::-;17695:13;:11;:13::i;:::-;72997:10:::1;:23:::0;72923:109::o;35465:233::-;35537:7;-1:-1:-1;;;;;35561:19:0;;35557:60;;35589:28;;-1:-1:-1;;;35589:28:0;;;;;;;;;;;35557:60;-1:-1:-1;;;;;;35635:25:0;;;;;:18;:25;;;;;;29624:13;35635:55;;35465:233::o;18457:103::-;17695:13;:11;:13::i;:::-;18522:30:::1;18549:1;18522:18;:30::i;:::-;18457:103::o:0;77679:129::-;17695:13;:11;:13::i;:::-;77764:14:::1;:32:::0;;-1:-1:-1;;;;;;77764:32:0::1;-1:-1:-1::0;;;;;77764:32:0;;;::::1;::::0;;;::::1;::::0;;77679:129::o;74861:91::-;17695:13;:11;:13::i;:::-;74922:9:::1;:18:::0;;-1:-1:-1;;74922:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;74861:91::o;38706:104::-;38762:13;38795:7;38788:14;;;;;:::i;45579:234::-;68787:10;45674:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;45674:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;45674:60:0;;;;;;;;;;45750:55;;540:41:1;;;45674:49:0;;68787:10;45750:55;;513:18:1;45750:55:0;;;;;;;45579:234;;:::o;76462:675::-;76605:10;;76593:8;76577:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;76569:69;;;;-1:-1:-1;;;76569:69:0;;13307:2:1;76569:69:0;;;13289:21:1;13346:2;13326:18;;;13319:30;-1:-1:-1;;;13365:18:1;;;13358:48;13423:18;;76569:69:0;13105:342:1;76569:69:0;76661:8;;76673:1;76661:13;76653:55;;;;-1:-1:-1;;;76653:55:0;;13654:2:1;76653:55:0;;;13636:21:1;13693:2;13673:18;;;13666:30;13732:31;13712:18;;;13705:59;13781:18;;76653:55:0;13452:353:1;76653:55:0;76742:1;76731:8;:12;76723:53;;;;-1:-1:-1;;;76723:53:0;;14012:2:1;76723:53:0;;;13994:21:1;14051:2;14031:18;;;14024:30;14090;14070:18;;;14063:58;14138:18;;76723:53:0;13810:352:1;76723:53:0;76819:9;76807:8;76799:5;;:16;;;;:::i;:::-;:29;76791:57;;;;-1:-1:-1;;;76791:57:0;;14369:2:1;76791:57:0;;;14351:21:1;14408:2;14388:18;;;14381:30;-1:-1:-1;;;14427:18:1;;;14420:45;14482:18;;76791:57:0;14167:339:1;76791:57:0;76938:23;;76912:10;76889:34;;;;:22;:34;;;;;;:45;;76926:8;;76889:45;:::i;:::-;:72;;76863:157;;;;-1:-1:-1;;;76863:157:0;;14713:2:1;76863:157:0;;;14695:21:1;14752:2;14732:18;;;14725:30;-1:-1:-1;;;14771:18:1;;;14764:53;14834:18;;76863:157:0;14511:347:1;76863:157:0;77037:31;77047:10;77059:8;77037:9;:31::i;:::-;77117:8;77100:14;;:25;;;;:::i;:::-;77083:14;:42;-1:-1:-1;76462:675:0:o;52372:407::-;52547:31;52560:4;52566:2;52570:7;52547:12;:31::i;:::-;-1:-1:-1;;;;;52593:14:0;;;:19;52589:183;;52632:56;52663:4;52669:2;52673:7;52682:5;52632:30;:56::i;:::-;52627:145;;52716:40;;-1:-1:-1;;;52716:40:0;;;;;;;;;;;52627:145;52372:407;;;;:::o;70812:37::-;;;;;;;:::i;72086:618::-;72204:13;72269:16;72277:7;72269;:16::i;:::-;72243:126;;;;-1:-1:-1;;;72243:126:0;;15065:2:1;72243:126:0;;;15047:21:1;15104:2;15084:18;;;15077:30;15143:34;15123:18;;;15116:62;-1:-1:-1;;;15194:18:1;;;15187:46;15250:19;;72243:126:0;14863:412:1;72243:126:0;72389:9;;;;:18;;:9;:18;72386:79;;72435:14;72428:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72086:618;;;:::o;72386:79::-;72481:28;72512:10;:8;:10::i;:::-;72481:41;;72575:1;72550:14;72544:28;:32;:148;;;;;;;;;;;;;;;;;72616:14;72632:25;72649:7;72632:16;:25::i;:::-;72659:13;72599:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72544:148;72537:155;72086:618;-1:-1:-1;;;72086:618:0:o;72716:89::-;17695:13;:11;:13::i;:::-;72778:8:::1;:15:::0;72716:89::o;73044:124::-;17695:13;:11;:13::i;:::-;73126:20:::1;:30:::0;73044:124::o;76174:252::-;17695:13;:11;:13::i;:::-;76308:9:::1;76303:112;76323:20:::0;;::::1;76303:112;;;76395:4;76369:9;:23;76379:9;;76389:1;76379:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;76369:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;76369:23:0;:30;;-1:-1:-1;;76369:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76345:3;::::1;::::0;::::1;:::i;:::-;;;;76303:112;;74964:1198:::0;75113:8;;75125:1;75113:13;75105:48;;;;-1:-1:-1;;;75105:48:0;;17015:2:1;75105:48:0;;;16997:21:1;17054:2;17034:18;;;17027:30;-1:-1:-1;;;17073:18:1;;;17066:52;17135:18;;75105:48:0;16813:346:1;75105:48:0;75187:1;75176:8;:12;;;75168:53;;;;-1:-1:-1;;;75168:53:0;;14012:2:1;75168:53:0;;;13994:21:1;14051:2;14031:18;;;14024:30;14090;14070:18;;;14063:58;14138:18;;75168:53:0;13810:352:1;75168:53:0;75308:20;;75282:10;75262:31;;;;:19;:31;;;;;;:42;;;;;;;:::i;:::-;:66;;75236:151;;;;-1:-1:-1;;;75236:151:0;;14713:2:1;75236:151:0;;;14695:21:1;14752:2;14732:18;;;14725:30;-1:-1:-1;;;14771:18:1;;;14764:53;14834:18;;75236:151:0;14511:347:1;75236:151:0;75456:10;;75444:8;75428:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;75402:142;;;;-1:-1:-1;;;75402:142:0;;17366:2:1;75402:142:0;;;17348:21:1;17405:2;17385:18;;;17378:30;17444:34;17424:18;;;17417:62;-1:-1:-1;;;17495:18:1;;;17488:40;17545:19;;75402:142:0;17164:406:1;75402:142:0;75595:9;75583:8;75567:24;;:13;;:24;;;;:::i;:::-;:37;75559:65;;;;-1:-1:-1;;;75559:65:0;;14369:2:1;75559:65:0;;;14351:21:1;14408:2;14388:18;;;14381:30;-1:-1:-1;;;14427:18:1;;;14420:45;14482:18;;75559:65:0;14167:339:1;75559:65:0;75701:28;;-1:-1:-1;;75718:10:0;17724:2:1;17720:15;17716:53;75701:28:0;;;17704:66:1;75676:12:0;;17786::1;;75701:28:0;;;;;;;;;;;;75691:39;;;;;;75676:54;;75771:51;75790:12;;75771:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;75804:11:0;;;-1:-1:-1;75817:4:0;;-1:-1:-1;75771:18:0;:51::i;:::-;:97;;;-1:-1:-1;75857:10:0;75847:21;;;;:9;:21;;;;;;;;75771:97;75745:201;;;;-1:-1:-1;;;75745:201:0;;18011:2:1;75745:201:0;;;17993:21:1;18050:2;18030:18;;;18023:30;18089:34;18069:18;;;18062:62;-1:-1:-1;;;18140:18:1;;;18133:40;18190:19;;75745:201:0;17809:406:1;75745:201:0;75961:31;75971:10;75983:8;75961:31;;:9;:31::i;:::-;76051:8;76029:30;;:19;;:30;;;;:::i;:::-;76007:19;:52;76128:10;76108:31;;;;:19;:31;;;;;;:42;;;;;;;:::i;:::-;76094:10;76074:31;;;;:19;:31;;;;;:76;-1:-1:-1;;;;74964:1198:0:o;45970:164::-;-1:-1:-1;;;;;46091:25:0;;;46067:4;46091:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45970:164::o;74715:134::-;17695:13;:11;:13::i;:::-;74805:14:::1;:32;74822:15:::0;74805:14;:32:::1;:::i;18715:201::-:0;17695:13;:11;:13::i;:::-;-1:-1:-1;;;;;18804:22:0;::::1;18796:73;;;::::0;-1:-1:-1;;;18796:73:0;;19779:2:1;18796:73:0::1;::::0;::::1;19761:21:1::0;19818:2;19798:18;;;19791:30;19857:34;19837:18;;;19830:62;-1:-1:-1;;;19908:18:1;;;19901:36;19954:19;;18796:73:0::1;19577:402:1::0;18796:73:0::1;18880:28;18899:8;18880:18;:28::i;:::-;18715:201:::0;:::o;73180:127::-;17695:13;:11;:13::i;:::-;73262:23:::1;:33:::0;73180:127::o;73553:114::-;17695:13;:11;:13::i;:::-;73630:11:::1;:25:::0;73553:114::o;37628:639::-;37713:4;-1:-1:-1;;;;;;;;;38037:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;38114:25:0;;;38037:102;:179;;;-1:-1:-1;;;;;;;;38191:25:0;-1:-1:-1;;;38191:25:0;;37628:639::o;17974:132::-;17855:7;17882:6;-1:-1:-1;;;;;17882:6:0;68787:10;18038:23;18030:68;;;;-1:-1:-1;;;18030:68:0;;20186:2:1;18030:68:0;;;20168:21:1;;;20205:18;;;20198:30;20264:34;20244:18;;;20237:62;20316:18;;18030:68:0;19984:356:1;62532:112:0;62609:27;62619:2;62623:8;62609:27;;;;;;;;;;;;:9;:27::i;46392:282::-;46457:4;46513:7;77364:1;46494:26;;:66;;;;;46547:13;;46537:7;:23;46494:66;:153;;;;-1:-1:-1;;46598:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;46598:44:0;:49;;46392:282::o;41078:1275::-;41145:7;41180;;77364:1;41229:23;41225:1061;;41282:13;;41275:4;:20;41271:1015;;;41320:14;41337:23;;;:17;:23;;;;;;;-1:-1:-1;;;41426:24:0;;:29;;41422:845;;42091:113;42098:6;42108:1;42098:11;42091:113;;-1:-1:-1;;;42169:6:0;42151:25;;;;:17;:25;;;;;;42091:113;;41422:845;41297:989;41271:1015;42314:31;;-1:-1:-1;;;42314:31:0;;;;;;;;;;;19076:191;19150:16;19169:6;;-1:-1:-1;;;;;19186:17:0;;;-1:-1:-1;;;;;;19186:17:0;;;;;;19219:40;;19169:6;;;;;;;19219:40;;19150:16;19219:40;19139:128;19076:191;:::o;54863:716::-;55047:88;;-1:-1:-1;;;55047:88:0;;55026:4;;-1:-1:-1;;;;;55047:45:0;;;;;:88;;68787:10;;55114:4;;55120:7;;55129:5;;55047:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55047:88:0;;;;;;;;-1:-1:-1;;55047:88:0;;;;;;;;;;;;:::i;:::-;;;55043:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55330:6;:13;55347:1;55330:18;55326:235;;55376:40;;-1:-1:-1;;;55376:40:0;;;;;;;;;;;55326:235;55519:6;55513:13;55504:6;55500:2;55496:15;55489:38;55043:529;-1:-1:-1;;;;;;55206:64:0;-1:-1:-1;;;55206:64:0;;-1:-1:-1;55043:529:0;54863:716;;;;;;:::o;74581:122::-;74641:13;74678;74671:20;;;;;:::i;13664:723::-;13720:13;13941:5;13950:1;13941:10;13937:53;;-1:-1:-1;;13968:10:0;;;;;;;;;;;;-1:-1:-1;;;13968:10:0;;;;;13664:723::o;13937:53::-;14015:5;14000:12;14056:78;14063:9;;14056:78;;14089:8;;;;:::i;:::-;;-1:-1:-1;14112:10:0;;-1:-1:-1;14120:2:0;14112:10;;:::i;:::-;;;14056:78;;;14144:19;14176:6;14166:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14166:17:0;;14144:39;;14194:154;14201:10;;14194:154;;14228:11;14238:1;14228:11;;:::i;:::-;;-1:-1:-1;14297:10:0;14305:2;14297:5;:10;:::i;:::-;14284:24;;:2;:24;:::i;:::-;14271:39;;14254:6;14261;14254:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14254:56:0;;;;;;;;-1:-1:-1;14325:11:0;14334:2;14325:11;;:::i;:::-;;;14194:154;;5753:190;5878:4;5931;5902:25;5915:5;5922:4;5902:12;:25::i;:::-;:33;;5753:190;-1:-1:-1;;;;5753:190:0:o;61759:689::-;61890:19;61896:2;61900:8;61890:5;:19::i;:::-;-1:-1:-1;;;;;61951:14:0;;;:19;61947:483;;62005:13;;62053:14;;;62086:233;62117:62;62156:1;62160:2;62164:7;;;;;;62173:5;62117:30;:62::i;:::-;62112:167;;62215:40;;-1:-1:-1;;;62215:40:0;;;;;;;;;;;62112:167;62314:3;62306:5;:11;62086:233;;62401:3;62384:13;;:20;62380:34;;62406:8;;;62380:34;61972:458;;61759:689;;;:::o;6620:296::-;6703:7;6746:4;6703:7;6761:118;6785:5;:12;6781:1;:16;6761:118;;;6834:33;6844:12;6858:5;6864:1;6858:8;;;;;;;;:::i;:::-;;;;;;;6834:9;:33::i;:::-;6819:48;-1:-1:-1;6799:3:0;;;;:::i;:::-;;;;6761:118;;;-1:-1:-1;6896:12:0;6620:296;-1:-1:-1;;;6620:296:0:o;56041:2966::-;56137:13;;56114:20;56165:13;;;56161:44;;56187:18;;-1:-1:-1;;;56187:18:0;;;;;;;;;;;56161:44;-1:-1:-1;;;;;56693:22:0;;;;;;:18;:22;;;;29762:2;56693:22;;;:71;;56731:32;56719:45;;56693:71;;;57007:31;;;:17;:31;;;;;-1:-1:-1;43743:15:0;;43717:24;43713:46;43312:11;43287:23;43283:41;43280:52;43270:63;;57007:173;;57242:23;;;;57007:31;;56693:22;;58007:25;56693:22;;57860:335;58521:1;58507:12;58503:20;58461:346;58562:3;58553:7;58550:16;58461:346;;58780:7;58770:8;58767:1;58740:25;58737:1;58734;58729:59;58615:1;58602:15;58461:346;;;58465:77;58840:8;58852:1;58840:13;58836:45;;58862:19;;-1:-1:-1;;;58862:19:0;;;;;;;;;;;58836:45;58898:13;:19;-1:-1:-1;51581:193:0;;;:::o;12827:149::-;12890:7;12921:1;12917;:5;:51;;13052:13;13146:15;;;13182:4;13175:15;;;13229:4;13213:21;;12917:51;;;-1:-1:-1;13052:13:0;13146:15;;;13182:4;13175:15;13229:4;13213:21;;;12827:149::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:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:254::-;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;938:29;957:9;938:29;:::i;:::-;928:39;1014:2;999:18;;;;986:32;;-1:-1:-1;;;770:254:1:o;1029:250::-;1114:1;1124:113;1138:6;1135:1;1132:13;1124:113;;;1214:11;;;1208:18;1195:11;;;1188:39;1160:2;1153:10;1124:113;;;-1:-1:-1;;1271:1:1;1253:16;;1246:27;1029:250::o;1284:271::-;1326:3;1364:5;1358:12;1391:6;1386:3;1379:19;1407:76;1476:6;1469:4;1464:3;1460:14;1453:4;1446:5;1442:16;1407:76;:::i;:::-;1537:2;1516:15;-1:-1:-1;;1512:29:1;1503:39;;;;1544:4;1499:50;;1284:271;-1:-1:-1;;1284:271:1:o;1560:220::-;1709:2;1698:9;1691:21;1672:4;1729:45;1770:2;1759:9;1755:18;1747:6;1729:45;:::i;1785:180::-;1844:6;1897:2;1885:9;1876:7;1872:23;1868:32;1865:52;;;1913:1;1910;1903:12;1865:52;-1:-1:-1;1936:23:1;;1785:180;-1:-1:-1;1785:180:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:248::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;-1:-1:-1;;3052:23:1;;;3122:2;3107:18;;;3094:32;;-1:-1:-1;2884:248:1:o;3598:592::-;3669:6;3677;3730:2;3718:9;3709:7;3705:23;3701:32;3698:52;;;3746:1;3743;3736:12;3698:52;3786:9;3773:23;3815:18;3856:2;3848:6;3845:14;3842:34;;;3872:1;3869;3862:12;3842:34;3910:6;3899:9;3895:22;3885:32;;3955:7;3948:4;3944:2;3940:13;3936:27;3926:55;;3977:1;3974;3967:12;3926:55;4017:2;4004:16;4043:2;4035:6;4032:14;4029:34;;;4059:1;4056;4049:12;4029:34;4104:7;4099:2;4090:6;4086:2;4082:15;4078:24;4075:37;4072:57;;;4125:1;4122;4115:12;4072:57;4156:2;4148:11;;;;;4178:6;;-1:-1:-1;3598:592:1;;-1:-1:-1;;;;3598:592:1:o;4195:160::-;4260:20;;4316:13;;4309:21;4299:32;;4289:60;;4345:1;4342;4335:12;4360:180;4416:6;4469:2;4457:9;4448:7;4444:23;4440:32;4437:52;;;4485:1;4482;4475:12;4437:52;4508:26;4524:9;4508:26;:::i;4545:254::-;4610:6;4618;4671:2;4659:9;4650:7;4646:23;4642:32;4639:52;;;4687:1;4684;4677:12;4639:52;4710:29;4729:9;4710:29;:::i;:::-;4700:39;;4758:35;4789:2;4778:9;4774:18;4758:35;:::i;:::-;4748:45;;4545:254;;;;;:::o;4804:127::-;4865:10;4860:3;4856:20;4853:1;4846:31;4896:4;4893:1;4886:15;4920:4;4917:1;4910:15;4936:631;5000:5;5030:18;5071:2;5063:6;5060:14;5057:40;;;5077:18;;:::i;:::-;5152:2;5146:9;5120:2;5206:15;;-1:-1:-1;;5202:24:1;;;5228:2;5198:33;5194:42;5182:55;;;5252:18;;;5272:22;;;5249:46;5246:72;;;5298:18;;:::i;:::-;5338:10;5334:2;5327:22;5367:6;5358:15;;5397:6;5389;5382:22;5437:3;5428:6;5423:3;5419:16;5416:25;5413:45;;;5454:1;5451;5444:12;5413:45;5504:6;5499:3;5492:4;5484:6;5480:17;5467:44;5559:1;5552:4;5543:6;5535;5531:19;5527:30;5520:41;;;;4936:631;;;;;:::o;5572:666::-;5667:6;5675;5683;5691;5744:3;5732:9;5723:7;5719:23;5715:33;5712:53;;;5761:1;5758;5751:12;5712:53;5784:29;5803:9;5784:29;:::i;:::-;5774:39;;5832:38;5866:2;5855:9;5851:18;5832:38;:::i;:::-;5822:48;;5917:2;5906:9;5902:18;5889:32;5879:42;;5972:2;5961:9;5957:18;5944:32;5999:18;5991:6;5988:30;5985:50;;;6031:1;6028;6021:12;5985:50;6054:22;;6107:4;6099:13;;6095:27;-1:-1:-1;6085:55:1;;6136:1;6133;6126:12;6085:55;6159:73;6224:7;6219:2;6206:16;6201:2;6197;6193:11;6159:73;:::i;:::-;6149:83;;;5572:666;;;;;;;:::o;6243:367::-;6306:8;6316:6;6370:3;6363:4;6355:6;6351:17;6347:27;6337:55;;6388:1;6385;6378:12;6337:55;-1:-1:-1;6411:20:1;;6454:18;6443:30;;6440:50;;;6486:1;6483;6476:12;6440:50;6523:4;6515:6;6511:17;6499:29;;6583:3;6576:4;6566:6;6563:1;6559:14;6551:6;6547:27;6543:38;6540:47;6537:67;;;6600:1;6597;6590:12;6615:437;6701:6;6709;6762:2;6750:9;6741:7;6737:23;6733:32;6730:52;;;6778:1;6775;6768:12;6730:52;6818:9;6805:23;6851:18;6843:6;6840:30;6837:50;;;6883:1;6880;6873:12;6837:50;6922:70;6984:7;6975:6;6964:9;6960:22;6922:70;:::i;:::-;7011:8;;6896:96;;-1:-1:-1;6615:437:1;-1:-1:-1;;;;6615:437:1:o;7057:594::-;7150:6;7158;7166;7219:2;7207:9;7198:7;7194:23;7190:32;7187:52;;;7235:1;7232;7225:12;7187:52;7274:9;7261:23;7324:4;7317:5;7313:16;7306:5;7303:27;7293:55;;7344:1;7341;7334:12;7293:55;7367:5;-1:-1:-1;7423:2:1;7408:18;;7395:32;7450:18;7439:30;;7436:50;;;7482:1;7479;7472:12;7436:50;7521:70;7583:7;7574:6;7563:9;7559:22;7521:70;:::i;:::-;7057:594;;7610:8;;-1:-1:-1;7495:96:1;;-1:-1:-1;;;;7057:594:1:o;7656:260::-;7724:6;7732;7785:2;7773:9;7764:7;7760:23;7756:32;7753:52;;;7801:1;7798;7791:12;7753:52;7824:29;7843:9;7824:29;:::i;:::-;7814:39;;7872:38;7906:2;7895:9;7891:18;7872:38;:::i;7921:450::-;7990:6;8043:2;8031:9;8022:7;8018:23;8014:32;8011:52;;;8059:1;8056;8049:12;8011:52;8099:9;8086:23;8132:18;8124:6;8121:30;8118:50;;;8164:1;8161;8154:12;8118:50;8187:22;;8240:4;8232:13;;8228:27;-1:-1:-1;8218:55:1;;8269:1;8266;8259:12;8218:55;8292:73;8357:7;8352:2;8339:16;8334:2;8330;8326:11;8292:73;:::i;8561:127::-;8622:10;8617:3;8613:20;8610:1;8603:31;8653:4;8650:1;8643:15;8677:4;8674:1;8667:15;8693:125;8758:9;;;8779:10;;;8776:36;;;8792:18;;:::i;9531:380::-;9610:1;9606:12;;;;9653;;;9674:61;;9728:4;9720:6;9716:17;9706:27;;9674:61;9781:2;9773:6;9770:14;9750:18;9747:38;9744:161;;9827:10;9822:3;9818:20;9815:1;9808:31;9862:4;9859:1;9852:15;9890:4;9887:1;9880:15;9744:161;;9531:380;;;:::o;10263:168::-;10336:9;;;10367;;10384:15;;;10378:22;;10364:37;10354:71;;10405:18;;:::i;10436:127::-;10497:10;10492:3;10488:20;10485:1;10478:31;10528:4;10525:1;10518:15;10552:4;10549:1;10542:15;10568:120;10608:1;10634;10624:35;;10639:18;;:::i;:::-;-1:-1:-1;10673:9:1;;10568:120::o;11173:545::-;11275:2;11270:3;11267:11;11264:448;;;11311:1;11336:5;11332:2;11325:17;11381:4;11377:2;11367:19;11451:2;11439:10;11435:19;11432:1;11428:27;11422:4;11418:38;11487:4;11475:10;11472:20;11469:47;;;-1:-1:-1;11510:4:1;11469:47;11565:2;11560:3;11556:12;11553:1;11549:20;11543:4;11539:31;11529:41;;11620:82;11638:2;11631:5;11628:13;11620:82;;;11683:17;;;11664:1;11653:13;11620:82;;11894:1206;12018:18;12013:3;12010:27;12007:53;;;12040:18;;:::i;:::-;12069:94;12159:3;12119:38;12151:4;12145:11;12119:38;:::i;:::-;12113:4;12069:94;:::i;:::-;12189:1;12214:2;12209:3;12206:11;12231:1;12226:616;;;;12886:1;12903:3;12900:93;;;-1:-1:-1;12959:19:1;;;12946:33;12900:93;-1:-1:-1;;11851:1:1;11847:11;;;11843:24;11839:29;11829:40;11875:1;11871:11;;;11826:57;13006:78;;12199:895;;12226:616;11120:1;11113:14;;;11157:4;11144:18;;-1:-1:-1;;12262:17:1;;;12363:9;12385:229;12399:7;12396:1;12393:14;12385:229;;;12488:19;;;12475:33;12460:49;;12595:4;12580:20;;;;12548:1;12536:14;;;;12415:12;12385:229;;;12389:3;12642;12633:7;12630:16;12627:159;;;12766:1;12762:6;12756:3;12750;12747:1;12743:11;12739:21;12735:34;12731:39;12718:9;12713:3;12709:19;12696:33;12692:79;12684:6;12677:95;12627:159;;;12829:1;12823:3;12820:1;12816:11;12812:19;12806:4;12799:33;12199:895;;11894:1206;;;:::o;15280:1256::-;15504:3;15542:6;15536:13;15568:4;15581:64;15638:6;15633:3;15628:2;15620:6;15616:15;15581:64;:::i;:::-;15708:13;;15667:16;;;;15730:68;15708:13;15667:16;15765:15;;;15730:68;:::i;:::-;15887:13;;15820:20;;;15860:1;;15925:36;15887:13;15925:36;:::i;:::-;15980:1;15997:18;;;16024:141;;;;16179:1;16174:337;;;;15990:521;;16024:141;-1:-1:-1;;16059:24:1;;16045:39;;16136:16;;16129:24;16115:39;;16104:51;;;-1:-1:-1;16024:141:1;;16174:337;16205:6;16202:1;16195:17;16253:2;16250:1;16240:16;16278:1;16292:169;16306:8;16303:1;16300:15;16292:169;;;16388:14;;16373:13;;;16366:37;16431:16;;;;16323:10;;16292:169;;;16296:3;;16492:8;16485:5;16481:20;16474:27;;15990:521;-1:-1:-1;16527:3:1;;15280:1256;-1:-1:-1;;;;;;;;;;15280:1256:1:o;16541:127::-;16602:10;16597:3;16593:20;16590:1;16583:31;16633:4;16630:1;16623:15;16657:4;16654:1;16647:15;16673:135;16712:3;16733:17;;;16730:43;;16753:18;;:::i;:::-;-1:-1:-1;16800:1:1;16789:13;;16673:135::o;18220:1352::-;18346:3;18340:10;18373:18;18365:6;18362:30;18359:56;;;18395:18;;:::i;:::-;18424:97;18514:6;18474:38;18506:4;18500:11;18474:38;:::i;:::-;18468:4;18424:97;:::i;:::-;18576:4;;18640:2;18629:14;;18657:1;18652:663;;;;19359:1;19376:6;19373:89;;;-1:-1:-1;19428:19:1;;;19422:26;19373:89;-1:-1:-1;;11851:1:1;11847:11;;;11843:24;11839:29;11829:40;11875:1;11871:11;;;11826:57;19475:81;;18622:944;;18652:663;11120:1;11113:14;;;11157:4;11144:18;;-1:-1:-1;;18688:20:1;;;18806:236;18820:7;18817:1;18814:14;18806:236;;;18909:19;;;18903:26;18888:42;;19001:27;;;;18969:1;18957:14;;;;18836:19;;18806:236;;;18810:3;19070:6;19061:7;19058:19;19055:201;;;19131:19;;;19125:26;-1:-1:-1;;19214:1:1;19210:14;;;19226:3;19206:24;19202:37;19198:42;19183:58;19168:74;;19055:201;-1:-1:-1;;;;;19302:1:1;19286:14;;;19282:22;19269:36;;-1:-1:-1;18220:1352:1:o;20345:489::-;-1:-1:-1;;;;;20614:15:1;;;20596:34;;20666:15;;20661:2;20646:18;;20639:43;20713:2;20698:18;;20691:34;;;20761:3;20756:2;20741:18;;20734:31;;;20539:4;;20782:46;;20808:19;;20800:6;20782:46;:::i;:::-;20774:54;20345:489;-1:-1:-1;;;;;;20345:489:1:o;20839:249::-;20908:6;20961:2;20949:9;20940:7;20936:23;20932:32;20929:52;;;20977:1;20974;20967:12;20929:52;21009:9;21003:16;21028:30;21052:5;21028:30;:::i;21093:128::-;21160:9;;;21181:11;;;21178:37;;;21195:18;;:::i;21226:112::-;21258:1;21284;21274:35;;21289:18;;:::i;:::-;-1:-1:-1;21323:9:1;;21226:112::o
Swarm Source
ipfs://0be3f271d60edb432c08de1c75aed286babdd186ed98ae08d570b84dd8d12485
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.