ERC-721
Overview
Max Total Supply
60 EK
Holders
32
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 EKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Elfkingdom
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-11 */ // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _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/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * 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. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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 sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _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}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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 pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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/Elf.sol pragma solidity ^0.8.4; contract Elfkingdom is ERC721A, Pausable, Ownable { using Strings for uint256; constructor() ERC721A("ElfKingdom", "EK") {} string public baseURI; string public hiddenMetadataUri; string public baseExtension = ".json"; uint256 public cost = 0.0035 ether; uint256 public maxSupply = 4444; uint256 public maxMintAmount = 3; uint256 public maxFreeMintsPerWallet = 1; bool public wlSaleOpen = false; bool public publicSaleOpen = false; bytes32 public whitelistMerkleRoot; modifier mintCompliance(uint256 _mintAmount) { require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require( _numberMinted(msg.sender) + _mintAmount <= maxMintAmount, "Invalid mint amount!" ); _; } modifier mintPriceCompliance(uint256 _mintAmount) { uint256 requiredValue = cost * _mintAmount; uint256 userMinted = _numberMinted(msg.sender); if (userMinted == 0) { requiredValue = _mintAmount <= maxFreeMintsPerWallet ? 0 : requiredValue - (cost * maxFreeMintsPerWallet); } require(msg.value >= requiredValue, "Insufficient funds!"); _; } modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address does not exist in list" ); _; } function whitelistMint( uint256 _mintAmount, bytes32[] calldata merkleProof ) external payable whenNotPaused isValidMerkleProof(merkleProof, whitelistMerkleRoot) mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(wlSaleOpen, "WL Sale Is Not Open"); _mint(msg.sender, _mintAmount); } function publicMint( uint256 _mintAmount ) external payable whenNotPaused mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(publicSaleOpen, "Public Sale Is Not Open"); _mint(msg.sender, _mintAmount); } function tokenURI( uint256 _tokenId ) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked(currentBaseURI, _tokenId.toString(), baseExtension) ) : ""; } function _baseURI() internal view override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function numberMinted(address userAddress) external view returns (uint256) { return _numberMinted(userAddress); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function startWLSale() external onlyOwner { wlSaleOpen = true; publicSaleOpen = false; } function startPublicSale() external onlyOwner { publicSaleOpen = true; wlSaleOpen = false; } function setWhiteListMerkleRoot(bytes32 merkleRoot) external onlyOwner { whitelistMerkleRoot = merkleRoot; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWLSale","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200027f565b50660c6f3b40b6c000600c5561115c600d556003600e556001600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000b057600080fd5b506040518060400160405280600a81526020017f456c664b696e67646f6d000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f454b0000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001359291906200027f565b5080600390805190602001906200014e9291906200027f565b506200015f620001a860201b60201c565b60008190555050506000600860006101000a81548160ff021916908315150217905550620001a262000196620001b160201b60201c565b620001b960201b60201c565b62000394565b60006001905090565b600033905090565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028d906200035e565b90600052602060002090601f016020900481019282620002b15760008555620002fd565b82601f10620002cc57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fc578251825591602001919060010190620002df565b5b5090506200030c919062000310565b5090565b5b808211156200032b57600081600090555060010162000311565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037757607f821691505b602082108114156200038e576200038d6200032f565b5b50919050565b61398680620003a46000396000f3fe60806040526004361061023b5760003560e01c80636c0360eb1161012e578063c6682862116100ab578063dc33e6811161006f578063dc33e681146107a1578063e08e65ea146107de578063e985e9c514610807578063f2fde38b14610844578063f9e237991461086d5761023b565b8063c6682862146106c9578063c87b56dd146106f4578063d2cab05614610731578063d5abeb011461074d578063da3ef23f146107785761023b565b806395d89b41116100f257806395d89b4114610603578063a22cb4651461062e578063a45ba8e714610657578063aa98e0c614610682578063b88d4fde146106ad5761023b565b80636c0360eb1461054257806370a082311461056d578063715018a6146105aa5780638456cb59146105c15780638da5cb5b146105d85761023b565b80632445f8f1116101bc57806344a0d68a1161018057806344a0d68a1461045d5780634cb1ac021461048657806355f804b3146104b15780635c975abb146104da5780636352211e146105055761023b565b80632445f8f1146103cc5780632db11544146103f75780633ccfd60b146104135780633f4ba83a1461042a57806342842e0e146104415761023b565b806313faede61161020357806313faede61461031857806318160ddd146103435780632045b1be1461036e578063239c70ae1461038557806323b872dd146103b05761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630c1c972a14610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061282a565b610898565b6040516102749190612872565b60405180910390f35b34801561028957600080fd5b5061029261092a565b60405161029f9190612926565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061297e565b6109bc565b6040516102dc91906129ec565b60405180910390f35b6102ff60048036038101906102fa9190612a33565b610a3b565b005b34801561030d57600080fd5b50610316610b7f565b005b34801561032457600080fd5b5061032d610bbf565b60405161033a9190612a82565b60405180910390f35b34801561034f57600080fd5b50610358610bc5565b6040516103659190612a82565b60405180910390f35b34801561037a57600080fd5b50610383610bdc565b005b34801561039157600080fd5b5061039a610c1c565b6040516103a79190612a82565b60405180910390f35b6103ca60048036038101906103c59190612a9d565b610c22565b005b3480156103d857600080fd5b506103e1610f47565b6040516103ee9190612872565b60405180910390f35b610411600480360381019061040c919061297e565b610f5a565b005b34801561041f57600080fd5b5061042861110e565b005b34801561043657600080fd5b5061043f611196565b005b61045b60048036038101906104569190612a9d565b6111a8565b005b34801561046957600080fd5b50610484600480360381019061047f919061297e565b6111c8565b005b34801561049257600080fd5b5061049b6111da565b6040516104a89190612a82565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190612c25565b6111e0565b005b3480156104e657600080fd5b506104ef611202565b6040516104fc9190612872565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061297e565b611219565b60405161053991906129ec565b60405180910390f35b34801561054e57600080fd5b5061055761122b565b6040516105649190612926565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190612c6e565b6112b9565b6040516105a19190612a82565b60405180910390f35b3480156105b657600080fd5b506105bf611372565b005b3480156105cd57600080fd5b506105d6611386565b005b3480156105e457600080fd5b506105ed611398565b6040516105fa91906129ec565b60405180910390f35b34801561060f57600080fd5b506106186113c2565b6040516106259190612926565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612cc7565b611454565b005b34801561066357600080fd5b5061066c61155f565b6040516106799190612926565b60405180910390f35b34801561068e57600080fd5b506106976115ed565b6040516106a49190612d20565b60405180910390f35b6106c760048036038101906106c29190612ddc565b6115f3565b005b3480156106d557600080fd5b506106de611666565b6040516106eb9190612926565b60405180910390f35b34801561070057600080fd5b5061071b6004803603810190610716919061297e565b6116f4565b6040516107289190612926565b60405180910390f35b61074b60048036038101906107469190612ebf565b61179e565b005b34801561075957600080fd5b50610762611a0d565b60405161076f9190612a82565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612c25565b611a13565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612c6e565b611a35565b6040516107d59190612a82565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612f4b565b611a47565b005b34801561081357600080fd5b5061082e60048036038101906108299190612f78565b611a59565b60405161083b9190612872565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190612c6e565b611aed565b005b34801561087957600080fd5b50610882611b71565b60405161088f9190612872565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461093990612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461096590612fe7565b80156109b25780601f10610987576101008083540402835291602001916109b2565b820191906000526020600020905b81548152906001019060200180831161099557829003601f168201915b5050505050905090565b60006109c782611b84565b6109fd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4682611219565b90508073ffffffffffffffffffffffffffffffffffffffff16610a67611be3565b73ffffffffffffffffffffffffffffffffffffffff1614610aca57610a9381610a8e611be3565b611a59565b610ac9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b87611beb565b6001601060016101000a81548160ff0219169083151502179055506000601060006101000a81548160ff021916908315150217905550565b600c5481565b6000610bcf611c69565b6001546000540303905090565b610be4611beb565b6001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550565b600e5481565b6000610c2d82611c72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca084611d40565b91509150610cb68187610cb1611be3565b611d67565b610d0257610ccb86610cc6611be3565b611a59565b610d01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d768686866001611dab565b8015610d8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e4f85610e2b888887611db1565b7c020000000000000000000000000000000000000000000000000000000017611dd9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ed7576000600185019050600060046000838152602001908152602001600020541415610ed5576000548114610ed4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f3f8686866001611e04565b505050505050565b601060009054906101000a900460ff1681565b610f62611e0a565b80600d5481610f6f610bc5565b610f799190613048565b1115610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906130ea565b60405180910390fd5b600e5481610fc733611e54565b610fd19190613048565b1115611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613156565b60405180910390fd5b81600081600c546110239190613176565b9050600061103033611e54565b9050600081141561106b57600f5483111561106557600f54600c546110559190613176565b8261106091906131d0565b611068565b60005b91505b813410156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613250565b60405180910390fd5b601060019054906101000a900460ff166110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906132bc565b60405180910390fd5b6111073386611eab565b5050505050565b611116611beb565b6000611120611398565b73ffffffffffffffffffffffffffffffffffffffff16476040516111439061330d565b60006040518083038185875af1925050503d8060008114611180576040519150601f19603f3d011682016040523d82523d6000602084013e611185565b606091505b505090508061119357600080fd5b50565b61119e611beb565b6111a6612068565b565b6111c3838383604051806020016040528060008152506115f3565b505050565b6111d0611beb565b80600c8190555050565b600f5481565b6111e8611beb565b80600990805190602001906111fe92919061271b565b5050565b6000600860009054906101000a900460ff16905090565b600061122482611c72565b9050919050565b6009805461123890612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461126490612fe7565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611321576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61137a611beb565b61138460006120cb565b565b61138e611beb565b611396612191565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113d190612fe7565b80601f01602080910402602001604051908101604052809291908181526020018280546113fd90612fe7565b801561144a5780601f1061141f5761010080835404028352916020019161144a565b820191906000526020600020905b81548152906001019060200180831161142d57829003601f168201915b5050505050905090565b8060076000611461611be3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150e611be3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115539190612872565b60405180910390a35050565b600a805461156c90612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461159890612fe7565b80156115e55780601f106115ba576101008083540402835291602001916115e5565b820191906000526020600020905b8154815290600101906020018083116115c857829003601f168201915b505050505081565b60115481565b6115fe848484610c22565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461166057611629848484846121f4565b61165f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b805461167390612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461169f90612fe7565b80156116ec5780601f106116c1576101008083540402835291602001916116ec565b820191906000526020600020905b8154815290600101906020018083116116cf57829003601f168201915b505050505081565b60606116ff82611b84565b61173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613394565b60405180910390fd5b6000611748612345565b905060008151116117685760405180602001604052806000815250611796565b80611772846123d7565b600b60405160200161178693929190613484565b6040516020818303038152906040525b915050919050565b6117a6611e0a565b818160115461181d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161180291906134fd565b604051602081830303815290604052805190602001206124af565b61185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613564565b60405180910390fd5b85600d5481611869610bc5565b6118739190613048565b11156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab906130ea565b60405180910390fd5b600e54816118c133611e54565b6118cb9190613048565b111561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613156565b60405180910390fd5b86600081600c5461191d9190613176565b9050600061192a33611e54565b9050600081141561196557600f5483111561195f57600f54600c5461194f9190613176565b8261195a91906131d0565b611962565b60005b91505b813410156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90613250565b60405180910390fd5b601060009054906101000a900460ff166119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906135d0565b60405180910390fd5b611a01338b611eab565b50505050505050505050565b600d5481565b611a1b611beb565b80600b9080519060200190611a3192919061271b565b5050565b6000611a4082611e54565b9050919050565b611a4f611beb565b8060118190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af5611beb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613662565b60405180910390fd5b611b6e816120cb565b50565b601060019054906101000a900460ff1681565b600081611b8f611c69565b11158015611b9e575060005482105b8015611bdc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bf36124c6565b73ffffffffffffffffffffffffffffffffffffffff16611c11611398565b73ffffffffffffffffffffffffffffffffffffffff1614611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e906136ce565b60405180910390fd5b565b60006001905090565b60008082905080611c81611c69565b11611d0957600054811015611d085760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d06575b6000811415611cfc576004600083600190039350838152602001908152602001600020549050611cd1565b8092505050611d3b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dc88686846124ce565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e12611202565b15611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e499061373a565b60405180910390fd5b565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000805490506000821415611eec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ef96000848385611dab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f7083611f616000866000611db1565b611f6a856124d7565b17611dd9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461201157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fd6565b50600082141561204d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120636000848385611e04565b505050565b6120706124e7565b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120b46124c6565b6040516120c191906129ec565b60405180910390a1565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612199611e0a565b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121dd6124c6565b6040516121ea91906129ec565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261221a611be3565b8786866040518563ffffffff1660e01b815260040161223c94939291906137af565b6020604051808303816000875af192505050801561227857506040513d601f19601f820116820180604052508101906122759190613810565b60015b6122f2573d80600081146122a8576040519150601f19603f3d011682016040523d82523d6000602084013e6122ad565b606091505b506000815114156122ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461235490612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461238090612fe7565b80156123cd5780601f106123a2576101008083540402835291602001916123cd565b820191906000526020600020905b8154815290600101906020018083116123b057829003601f168201915b5050505050905090565b6060600060016123e684612530565b01905060008167ffffffffffffffff81111561240557612404612afa565b5b6040519080825280601f01601f1916602001820160405280156124375781602001600182028036833780820191505090505b509050600082602001820190505b6001156124a4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161248e5761248d61383d565b5b049450600085141561249f576124a4565b612445565b819350505050919050565b6000826124bc8584612683565b1490509392505050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6124ef611202565b61252e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612525906138b8565b60405180910390fd5b565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061258e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816125845761258361383d565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106125cb576d04ee2d6d415b85acef810000000083816125c1576125c061383d565b5b0492506020810190505b662386f26fc1000083106125fa57662386f26fc1000083816125f0576125ef61383d565b5b0492506010810190505b6305f5e1008310612623576305f5e10083816126195761261861383d565b5b0492506008810190505b612710831061264857612710838161263e5761263d61383d565b5b0492506004810190505b6064831061266b57606483816126615761266061383d565b5b0492506002810190505b600a831061267a576001810190505b80915050919050565b60008082905060005b84518110156126ce576126b9828683815181106126ac576126ab6138d8565b5b60200260200101516126d9565b915080806126c690613907565b91505061268c565b508091505092915050565b60008183106126f1576126ec8284612704565b6126fc565b6126fb8383612704565b5b905092915050565b600082600052816020526040600020905092915050565b82805461272790612fe7565b90600052602060002090601f0160209004810192826127495760008555612790565b82601f1061276257805160ff1916838001178555612790565b82800160010185558215612790579182015b8281111561278f578251825591602001919060010190612774565b5b50905061279d91906127a1565b5090565b5b808211156127ba5760008160009055506001016127a2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612807816127d2565b811461281257600080fd5b50565b600081359050612824816127fe565b92915050565b6000602082840312156128405761283f6127c8565b5b600061284e84828501612815565b91505092915050565b60008115159050919050565b61286c81612857565b82525050565b60006020820190506128876000830184612863565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128c75780820151818401526020810190506128ac565b838111156128d6576000848401525b50505050565b6000601f19601f8301169050919050565b60006128f88261288d565b6129028185612898565b93506129128185602086016128a9565b61291b816128dc565b840191505092915050565b6000602082019050818103600083015261294081846128ed565b905092915050565b6000819050919050565b61295b81612948565b811461296657600080fd5b50565b60008135905061297881612952565b92915050565b600060208284031215612994576129936127c8565b5b60006129a284828501612969565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d6826129ab565b9050919050565b6129e6816129cb565b82525050565b6000602082019050612a0160008301846129dd565b92915050565b612a10816129cb565b8114612a1b57600080fd5b50565b600081359050612a2d81612a07565b92915050565b60008060408385031215612a4a57612a496127c8565b5b6000612a5885828601612a1e565b9250506020612a6985828601612969565b9150509250929050565b612a7c81612948565b82525050565b6000602082019050612a976000830184612a73565b92915050565b600080600060608486031215612ab657612ab56127c8565b5b6000612ac486828701612a1e565b9350506020612ad586828701612a1e565b9250506040612ae686828701612969565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b32826128dc565b810181811067ffffffffffffffff82111715612b5157612b50612afa565b5b80604052505050565b6000612b646127be565b9050612b708282612b29565b919050565b600067ffffffffffffffff821115612b9057612b8f612afa565b5b612b99826128dc565b9050602081019050919050565b82818337600083830152505050565b6000612bc8612bc384612b75565b612b5a565b905082815260208101848484011115612be457612be3612af5565b5b612bef848285612ba6565b509392505050565b600082601f830112612c0c57612c0b612af0565b5b8135612c1c848260208601612bb5565b91505092915050565b600060208284031215612c3b57612c3a6127c8565b5b600082013567ffffffffffffffff811115612c5957612c586127cd565b5b612c6584828501612bf7565b91505092915050565b600060208284031215612c8457612c836127c8565b5b6000612c9284828501612a1e565b91505092915050565b612ca481612857565b8114612caf57600080fd5b50565b600081359050612cc181612c9b565b92915050565b60008060408385031215612cde57612cdd6127c8565b5b6000612cec85828601612a1e565b9250506020612cfd85828601612cb2565b9150509250929050565b6000819050919050565b612d1a81612d07565b82525050565b6000602082019050612d356000830184612d11565b92915050565b600067ffffffffffffffff821115612d5657612d55612afa565b5b612d5f826128dc565b9050602081019050919050565b6000612d7f612d7a84612d3b565b612b5a565b905082815260208101848484011115612d9b57612d9a612af5565b5b612da6848285612ba6565b509392505050565b600082601f830112612dc357612dc2612af0565b5b8135612dd3848260208601612d6c565b91505092915050565b60008060008060808587031215612df657612df56127c8565b5b6000612e0487828801612a1e565b9450506020612e1587828801612a1e565b9350506040612e2687828801612969565b925050606085013567ffffffffffffffff811115612e4757612e466127cd565b5b612e5387828801612dae565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612e7f57612e7e612af0565b5b8235905067ffffffffffffffff811115612e9c57612e9b612e5f565b5b602083019150836020820283011115612eb857612eb7612e64565b5b9250929050565b600080600060408486031215612ed857612ed76127c8565b5b6000612ee686828701612969565b935050602084013567ffffffffffffffff811115612f0757612f066127cd565b5b612f1386828701612e69565b92509250509250925092565b612f2881612d07565b8114612f3357600080fd5b50565b600081359050612f4581612f1f565b92915050565b600060208284031215612f6157612f606127c8565b5b6000612f6f84828501612f36565b91505092915050565b60008060408385031215612f8f57612f8e6127c8565b5b6000612f9d85828601612a1e565b9250506020612fae85828601612a1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fff57607f821691505b6020821081141561301357613012612fb8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061305382612948565b915061305e83612948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561309357613092613019565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006130d4601483612898565b91506130df8261309e565b602082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613140601483612898565b915061314b8261310a565b602082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b600061318182612948565b915061318c83612948565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131c5576131c4613019565b5b828202905092915050565b60006131db82612948565b91506131e683612948565b9250828210156131f9576131f8613019565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061323a601383612898565b915061324582613204565b602082019050919050565b600060208201905081810360008301526132698161322d565b9050919050565b7f5075626c69632053616c65204973204e6f74204f70656e000000000000000000600082015250565b60006132a6601783612898565b91506132b182613270565b602082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b600081905092915050565b50565b60006132f76000836132dc565b9150613302826132e7565b600082019050919050565b6000613318826132ea565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061337e602f83612898565b915061338982613322565b604082019050919050565b600060208201905081810360008301526133ad81613371565b9050919050565b600081905092915050565b60006133ca8261288d565b6133d481856133b4565b93506133e48185602086016128a9565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461341281612fe7565b61341c81866133b4565b9450600182166000811461343757600181146134485761347b565b60ff1983168652818601935061347b565b613451856133f0565b60005b8381101561347357815481890152600182019150602081019050613454565b838801955050505b50505092915050565b600061349082866133bf565b915061349c82856133bf565b91506134a88284613405565b9150819050949350505050565b60008160601b9050919050565b60006134cd826134b5565b9050919050565b60006134df826134c2565b9050919050565b6134f76134f2826129cb565b6134d4565b82525050565b600061350982846134e6565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b600061354e601e83612898565b915061355982613518565b602082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f574c2053616c65204973204e6f74204f70656e00000000000000000000000000600082015250565b60006135ba601383612898565b91506135c582613584565b602082019050919050565b600060208201905081810360008301526135e9816135ad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061364c602683612898565b9150613657826135f0565b604082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136b8602083612898565b91506136c382613682565b602082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613724601083612898565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137818261375a565b61378b8185613765565b935061379b8185602086016128a9565b6137a4816128dc565b840191505092915050565b60006080820190506137c460008301876129dd565b6137d160208301866129dd565b6137de6040830185612a73565b81810360608301526137f08184613776565b905095945050505050565b60008151905061380a816127fe565b92915050565b600060208284031215613826576138256127c8565b5b6000613834848285016137fb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006138a2601483612898565b91506138ad8261386c565b602082019050919050565b600060208201905081810360008301526138d181613895565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061391282612948565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394557613944613019565b5b60018201905091905056fea264697066735822122011869fa2cbeb0fdc102027be3fea09640d044ef41de87a10287249e55f4be48764736f6c634300080a0033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636c0360eb1161012e578063c6682862116100ab578063dc33e6811161006f578063dc33e681146107a1578063e08e65ea146107de578063e985e9c514610807578063f2fde38b14610844578063f9e237991461086d5761023b565b8063c6682862146106c9578063c87b56dd146106f4578063d2cab05614610731578063d5abeb011461074d578063da3ef23f146107785761023b565b806395d89b41116100f257806395d89b4114610603578063a22cb4651461062e578063a45ba8e714610657578063aa98e0c614610682578063b88d4fde146106ad5761023b565b80636c0360eb1461054257806370a082311461056d578063715018a6146105aa5780638456cb59146105c15780638da5cb5b146105d85761023b565b80632445f8f1116101bc57806344a0d68a1161018057806344a0d68a1461045d5780634cb1ac021461048657806355f804b3146104b15780635c975abb146104da5780636352211e146105055761023b565b80632445f8f1146103cc5780632db11544146103f75780633ccfd60b146104135780633f4ba83a1461042a57806342842e0e146104415761023b565b806313faede61161020357806313faede61461031857806318160ddd146103435780632045b1be1461036e578063239c70ae1461038557806323b872dd146103b05761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630c1c972a14610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061282a565b610898565b6040516102749190612872565b60405180910390f35b34801561028957600080fd5b5061029261092a565b60405161029f9190612926565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061297e565b6109bc565b6040516102dc91906129ec565b60405180910390f35b6102ff60048036038101906102fa9190612a33565b610a3b565b005b34801561030d57600080fd5b50610316610b7f565b005b34801561032457600080fd5b5061032d610bbf565b60405161033a9190612a82565b60405180910390f35b34801561034f57600080fd5b50610358610bc5565b6040516103659190612a82565b60405180910390f35b34801561037a57600080fd5b50610383610bdc565b005b34801561039157600080fd5b5061039a610c1c565b6040516103a79190612a82565b60405180910390f35b6103ca60048036038101906103c59190612a9d565b610c22565b005b3480156103d857600080fd5b506103e1610f47565b6040516103ee9190612872565b60405180910390f35b610411600480360381019061040c919061297e565b610f5a565b005b34801561041f57600080fd5b5061042861110e565b005b34801561043657600080fd5b5061043f611196565b005b61045b60048036038101906104569190612a9d565b6111a8565b005b34801561046957600080fd5b50610484600480360381019061047f919061297e565b6111c8565b005b34801561049257600080fd5b5061049b6111da565b6040516104a89190612a82565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190612c25565b6111e0565b005b3480156104e657600080fd5b506104ef611202565b6040516104fc9190612872565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061297e565b611219565b60405161053991906129ec565b60405180910390f35b34801561054e57600080fd5b5061055761122b565b6040516105649190612926565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190612c6e565b6112b9565b6040516105a19190612a82565b60405180910390f35b3480156105b657600080fd5b506105bf611372565b005b3480156105cd57600080fd5b506105d6611386565b005b3480156105e457600080fd5b506105ed611398565b6040516105fa91906129ec565b60405180910390f35b34801561060f57600080fd5b506106186113c2565b6040516106259190612926565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612cc7565b611454565b005b34801561066357600080fd5b5061066c61155f565b6040516106799190612926565b60405180910390f35b34801561068e57600080fd5b506106976115ed565b6040516106a49190612d20565b60405180910390f35b6106c760048036038101906106c29190612ddc565b6115f3565b005b3480156106d557600080fd5b506106de611666565b6040516106eb9190612926565b60405180910390f35b34801561070057600080fd5b5061071b6004803603810190610716919061297e565b6116f4565b6040516107289190612926565b60405180910390f35b61074b60048036038101906107469190612ebf565b61179e565b005b34801561075957600080fd5b50610762611a0d565b60405161076f9190612a82565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612c25565b611a13565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612c6e565b611a35565b6040516107d59190612a82565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612f4b565b611a47565b005b34801561081357600080fd5b5061082e60048036038101906108299190612f78565b611a59565b60405161083b9190612872565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190612c6e565b611aed565b005b34801561087957600080fd5b50610882611b71565b60405161088f9190612872565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461093990612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461096590612fe7565b80156109b25780601f10610987576101008083540402835291602001916109b2565b820191906000526020600020905b81548152906001019060200180831161099557829003601f168201915b5050505050905090565b60006109c782611b84565b6109fd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4682611219565b90508073ffffffffffffffffffffffffffffffffffffffff16610a67611be3565b73ffffffffffffffffffffffffffffffffffffffff1614610aca57610a9381610a8e611be3565b611a59565b610ac9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b87611beb565b6001601060016101000a81548160ff0219169083151502179055506000601060006101000a81548160ff021916908315150217905550565b600c5481565b6000610bcf611c69565b6001546000540303905090565b610be4611beb565b6001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550565b600e5481565b6000610c2d82611c72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca084611d40565b91509150610cb68187610cb1611be3565b611d67565b610d0257610ccb86610cc6611be3565b611a59565b610d01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d768686866001611dab565b8015610d8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e4f85610e2b888887611db1565b7c020000000000000000000000000000000000000000000000000000000017611dd9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ed7576000600185019050600060046000838152602001908152602001600020541415610ed5576000548114610ed4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f3f8686866001611e04565b505050505050565b601060009054906101000a900460ff1681565b610f62611e0a565b80600d5481610f6f610bc5565b610f799190613048565b1115610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906130ea565b60405180910390fd5b600e5481610fc733611e54565b610fd19190613048565b1115611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613156565b60405180910390fd5b81600081600c546110239190613176565b9050600061103033611e54565b9050600081141561106b57600f5483111561106557600f54600c546110559190613176565b8261106091906131d0565b611068565b60005b91505b813410156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613250565b60405180910390fd5b601060019054906101000a900460ff166110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906132bc565b60405180910390fd5b6111073386611eab565b5050505050565b611116611beb565b6000611120611398565b73ffffffffffffffffffffffffffffffffffffffff16476040516111439061330d565b60006040518083038185875af1925050503d8060008114611180576040519150601f19603f3d011682016040523d82523d6000602084013e611185565b606091505b505090508061119357600080fd5b50565b61119e611beb565b6111a6612068565b565b6111c3838383604051806020016040528060008152506115f3565b505050565b6111d0611beb565b80600c8190555050565b600f5481565b6111e8611beb565b80600990805190602001906111fe92919061271b565b5050565b6000600860009054906101000a900460ff16905090565b600061122482611c72565b9050919050565b6009805461123890612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461126490612fe7565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611321576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61137a611beb565b61138460006120cb565b565b61138e611beb565b611396612191565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113d190612fe7565b80601f01602080910402602001604051908101604052809291908181526020018280546113fd90612fe7565b801561144a5780601f1061141f5761010080835404028352916020019161144a565b820191906000526020600020905b81548152906001019060200180831161142d57829003601f168201915b5050505050905090565b8060076000611461611be3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150e611be3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115539190612872565b60405180910390a35050565b600a805461156c90612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461159890612fe7565b80156115e55780601f106115ba576101008083540402835291602001916115e5565b820191906000526020600020905b8154815290600101906020018083116115c857829003601f168201915b505050505081565b60115481565b6115fe848484610c22565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461166057611629848484846121f4565b61165f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b805461167390612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461169f90612fe7565b80156116ec5780601f106116c1576101008083540402835291602001916116ec565b820191906000526020600020905b8154815290600101906020018083116116cf57829003601f168201915b505050505081565b60606116ff82611b84565b61173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613394565b60405180910390fd5b6000611748612345565b905060008151116117685760405180602001604052806000815250611796565b80611772846123d7565b600b60405160200161178693929190613484565b6040516020818303038152906040525b915050919050565b6117a6611e0a565b818160115461181d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050823360405160200161180291906134fd565b604051602081830303815290604052805190602001206124af565b61185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613564565b60405180910390fd5b85600d5481611869610bc5565b6118739190613048565b11156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab906130ea565b60405180910390fd5b600e54816118c133611e54565b6118cb9190613048565b111561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613156565b60405180910390fd5b86600081600c5461191d9190613176565b9050600061192a33611e54565b9050600081141561196557600f5483111561195f57600f54600c5461194f9190613176565b8261195a91906131d0565b611962565b60005b91505b813410156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90613250565b60405180910390fd5b601060009054906101000a900460ff166119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906135d0565b60405180910390fd5b611a01338b611eab565b50505050505050505050565b600d5481565b611a1b611beb565b80600b9080519060200190611a3192919061271b565b5050565b6000611a4082611e54565b9050919050565b611a4f611beb565b8060118190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af5611beb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613662565b60405180910390fd5b611b6e816120cb565b50565b601060019054906101000a900460ff1681565b600081611b8f611c69565b11158015611b9e575060005482105b8015611bdc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bf36124c6565b73ffffffffffffffffffffffffffffffffffffffff16611c11611398565b73ffffffffffffffffffffffffffffffffffffffff1614611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e906136ce565b60405180910390fd5b565b60006001905090565b60008082905080611c81611c69565b11611d0957600054811015611d085760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d06575b6000811415611cfc576004600083600190039350838152602001908152602001600020549050611cd1565b8092505050611d3b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dc88686846124ce565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e12611202565b15611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e499061373a565b60405180910390fd5b565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000805490506000821415611eec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ef96000848385611dab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f7083611f616000866000611db1565b611f6a856124d7565b17611dd9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461201157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fd6565b50600082141561204d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120636000848385611e04565b505050565b6120706124e7565b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120b46124c6565b6040516120c191906129ec565b60405180910390a1565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612199611e0a565b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121dd6124c6565b6040516121ea91906129ec565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261221a611be3565b8786866040518563ffffffff1660e01b815260040161223c94939291906137af565b6020604051808303816000875af192505050801561227857506040513d601f19601f820116820180604052508101906122759190613810565b60015b6122f2573d80600081146122a8576040519150601f19603f3d011682016040523d82523d6000602084013e6122ad565b606091505b506000815114156122ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461235490612fe7565b80601f016020809104026020016040519081016040528092919081815260200182805461238090612fe7565b80156123cd5780601f106123a2576101008083540402835291602001916123cd565b820191906000526020600020905b8154815290600101906020018083116123b057829003601f168201915b5050505050905090565b6060600060016123e684612530565b01905060008167ffffffffffffffff81111561240557612404612afa565b5b6040519080825280601f01601f1916602001820160405280156124375781602001600182028036833780820191505090505b509050600082602001820190505b6001156124a4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161248e5761248d61383d565b5b049450600085141561249f576124a4565b612445565b819350505050919050565b6000826124bc8584612683565b1490509392505050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6124ef611202565b61252e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612525906138b8565b60405180910390fd5b565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061258e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816125845761258361383d565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106125cb576d04ee2d6d415b85acef810000000083816125c1576125c061383d565b5b0492506020810190505b662386f26fc1000083106125fa57662386f26fc1000083816125f0576125ef61383d565b5b0492506010810190505b6305f5e1008310612623576305f5e10083816126195761261861383d565b5b0492506008810190505b612710831061264857612710838161263e5761263d61383d565b5b0492506004810190505b6064831061266b57606483816126615761266061383d565b5b0492506002810190505b600a831061267a576001810190505b80915050919050565b60008082905060005b84518110156126ce576126b9828683815181106126ac576126ab6138d8565b5b60200260200101516126d9565b915080806126c690613907565b91505061268c565b508091505092915050565b60008183106126f1576126ec8284612704565b6126fc565b6126fb8383612704565b5b905092915050565b600082600052816020526040600020905092915050565b82805461272790612fe7565b90600052602060002090601f0160209004810192826127495760008555612790565b82601f1061276257805160ff1916838001178555612790565b82800160010185558215612790579182015b8281111561278f578251825591602001919060010190612774565b5b50905061279d91906127a1565b5090565b5b808211156127ba5760008160009055506001016127a2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612807816127d2565b811461281257600080fd5b50565b600081359050612824816127fe565b92915050565b6000602082840312156128405761283f6127c8565b5b600061284e84828501612815565b91505092915050565b60008115159050919050565b61286c81612857565b82525050565b60006020820190506128876000830184612863565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128c75780820151818401526020810190506128ac565b838111156128d6576000848401525b50505050565b6000601f19601f8301169050919050565b60006128f88261288d565b6129028185612898565b93506129128185602086016128a9565b61291b816128dc565b840191505092915050565b6000602082019050818103600083015261294081846128ed565b905092915050565b6000819050919050565b61295b81612948565b811461296657600080fd5b50565b60008135905061297881612952565b92915050565b600060208284031215612994576129936127c8565b5b60006129a284828501612969565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d6826129ab565b9050919050565b6129e6816129cb565b82525050565b6000602082019050612a0160008301846129dd565b92915050565b612a10816129cb565b8114612a1b57600080fd5b50565b600081359050612a2d81612a07565b92915050565b60008060408385031215612a4a57612a496127c8565b5b6000612a5885828601612a1e565b9250506020612a6985828601612969565b9150509250929050565b612a7c81612948565b82525050565b6000602082019050612a976000830184612a73565b92915050565b600080600060608486031215612ab657612ab56127c8565b5b6000612ac486828701612a1e565b9350506020612ad586828701612a1e565b9250506040612ae686828701612969565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b32826128dc565b810181811067ffffffffffffffff82111715612b5157612b50612afa565b5b80604052505050565b6000612b646127be565b9050612b708282612b29565b919050565b600067ffffffffffffffff821115612b9057612b8f612afa565b5b612b99826128dc565b9050602081019050919050565b82818337600083830152505050565b6000612bc8612bc384612b75565b612b5a565b905082815260208101848484011115612be457612be3612af5565b5b612bef848285612ba6565b509392505050565b600082601f830112612c0c57612c0b612af0565b5b8135612c1c848260208601612bb5565b91505092915050565b600060208284031215612c3b57612c3a6127c8565b5b600082013567ffffffffffffffff811115612c5957612c586127cd565b5b612c6584828501612bf7565b91505092915050565b600060208284031215612c8457612c836127c8565b5b6000612c9284828501612a1e565b91505092915050565b612ca481612857565b8114612caf57600080fd5b50565b600081359050612cc181612c9b565b92915050565b60008060408385031215612cde57612cdd6127c8565b5b6000612cec85828601612a1e565b9250506020612cfd85828601612cb2565b9150509250929050565b6000819050919050565b612d1a81612d07565b82525050565b6000602082019050612d356000830184612d11565b92915050565b600067ffffffffffffffff821115612d5657612d55612afa565b5b612d5f826128dc565b9050602081019050919050565b6000612d7f612d7a84612d3b565b612b5a565b905082815260208101848484011115612d9b57612d9a612af5565b5b612da6848285612ba6565b509392505050565b600082601f830112612dc357612dc2612af0565b5b8135612dd3848260208601612d6c565b91505092915050565b60008060008060808587031215612df657612df56127c8565b5b6000612e0487828801612a1e565b9450506020612e1587828801612a1e565b9350506040612e2687828801612969565b925050606085013567ffffffffffffffff811115612e4757612e466127cd565b5b612e5387828801612dae565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612e7f57612e7e612af0565b5b8235905067ffffffffffffffff811115612e9c57612e9b612e5f565b5b602083019150836020820283011115612eb857612eb7612e64565b5b9250929050565b600080600060408486031215612ed857612ed76127c8565b5b6000612ee686828701612969565b935050602084013567ffffffffffffffff811115612f0757612f066127cd565b5b612f1386828701612e69565b92509250509250925092565b612f2881612d07565b8114612f3357600080fd5b50565b600081359050612f4581612f1f565b92915050565b600060208284031215612f6157612f606127c8565b5b6000612f6f84828501612f36565b91505092915050565b60008060408385031215612f8f57612f8e6127c8565b5b6000612f9d85828601612a1e565b9250506020612fae85828601612a1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fff57607f821691505b6020821081141561301357613012612fb8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061305382612948565b915061305e83612948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561309357613092613019565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006130d4601483612898565b91506130df8261309e565b602082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613140601483612898565b915061314b8261310a565b602082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b600061318182612948565b915061318c83612948565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131c5576131c4613019565b5b828202905092915050565b60006131db82612948565b91506131e683612948565b9250828210156131f9576131f8613019565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061323a601383612898565b915061324582613204565b602082019050919050565b600060208201905081810360008301526132698161322d565b9050919050565b7f5075626c69632053616c65204973204e6f74204f70656e000000000000000000600082015250565b60006132a6601783612898565b91506132b182613270565b602082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b600081905092915050565b50565b60006132f76000836132dc565b9150613302826132e7565b600082019050919050565b6000613318826132ea565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061337e602f83612898565b915061338982613322565b604082019050919050565b600060208201905081810360008301526133ad81613371565b9050919050565b600081905092915050565b60006133ca8261288d565b6133d481856133b4565b93506133e48185602086016128a9565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461341281612fe7565b61341c81866133b4565b9450600182166000811461343757600181146134485761347b565b60ff1983168652818601935061347b565b613451856133f0565b60005b8381101561347357815481890152600182019150602081019050613454565b838801955050505b50505092915050565b600061349082866133bf565b915061349c82856133bf565b91506134a88284613405565b9150819050949350505050565b60008160601b9050919050565b60006134cd826134b5565b9050919050565b60006134df826134c2565b9050919050565b6134f76134f2826129cb565b6134d4565b82525050565b600061350982846134e6565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b600061354e601e83612898565b915061355982613518565b602082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f574c2053616c65204973204e6f74204f70656e00000000000000000000000000600082015250565b60006135ba601383612898565b91506135c582613584565b602082019050919050565b600060208201905081810360008301526135e9816135ad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061364c602683612898565b9150613657826135f0565b604082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136b8602083612898565b91506136c382613682565b602082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613724601083612898565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137818261375a565b61378b8185613765565b935061379b8185602086016128a9565b6137a4816128dc565b840191505092915050565b60006080820190506137c460008301876129dd565b6137d160208301866129dd565b6137de6040830185612a73565b81810360608301526137f08184613776565b905095945050505050565b60008151905061380a816127fe565b92915050565b600060208284031215613826576138256127c8565b5b6000613834848285016137fb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006138a2601483612898565b91506138ad8261386c565b602082019050919050565b600060208201905081810360008301526138d181613895565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061391282612948565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394557613944613019565b5b60018201905091905056fea264697066735822122011869fa2cbeb0fdc102027be3fea09640d044ef41de87a10287249e55f4be48764736f6c634300080a0033
Deployed Bytecode Sourcemap
82512:3803:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49412:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50314:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56805:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56238:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85630:105;;;;;;;;;;;;;:::i;:::-;;82755:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46065:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85523:101;;;;;;;;;;;;;:::i;:::-;;82832:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60444:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82916:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84349:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86175:137;;;;;;;;;;;;;:::i;:::-;;85458:59;;;;;;;;;;;;;:::i;:::-;;63365:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86095:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82869:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85863:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30026:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51707:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82649:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47249:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27536:103;;;;;;;;;;;;;:::i;:::-;;85397:55;;;;;;;;;;;;;:::i;:::-;;26888:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50490:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57363:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82675:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82992:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64156:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82711:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84626:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83982:361;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82796:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85967:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85270:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85741:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57754:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27794:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82951:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49412:639;49497:4;49836:10;49821:25;;:11;:25;;;;:102;;;;49913:10;49898:25;;:11;:25;;;;49821:102;:179;;;;49990:10;49975:25;;:11;:25;;;;49821:179;49801:199;;49412:639;;;:::o;50314:100::-;50368:13;50401:5;50394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50314:100;:::o;56805:218::-;56881:7;56906:16;56914:7;56906;:16::i;:::-;56901:64;;56931:34;;;;;;;;;;;;;;56901:64;56985:15;:24;57001:7;56985:24;;;;;;;;;;;:30;;;;;;;;;;;;56978:37;;56805:218;;;:::o;56238:408::-;56327:13;56343:16;56351:7;56343;:16::i;:::-;56327:32;;56399:5;56376:28;;:19;:17;:19::i;:::-;:28;;;56372:175;;56424:44;56441:5;56448:19;:17;:19::i;:::-;56424:16;:44::i;:::-;56419:128;;56496:35;;;;;;;;;;;;;;56419:128;56372:175;56592:2;56559:15;:24;56575:7;56559:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56630:7;56626:2;56610:28;;56619:5;56610:28;;;;;;;;;;;;56316:330;56238:408;;:::o;85630:105::-;26774:13;:11;:13::i;:::-;85700:4:::1;85683:14;;:21;;;;;;;;;;;;;;;;;;85724:5;85711:10;;:18;;;;;;;;;;;;;;;;;;85630:105::o:0;82755:34::-;;;;:::o;46065:323::-;46126:7;46354:15;:13;:15::i;:::-;46339:12;;46323:13;;:28;:46;46316:53;;46065:323;:::o;85523:101::-;26774:13;:11;:13::i;:::-;85585:4:::1;85572:10;;:17;;;;;;;;;;;;;;;;;;85613:5;85596:14;;:22;;;;;;;;;;;;;;;;;;85523:101::o:0;82832:32::-;;;;:::o;60444:2825::-;60586:27;60616;60635:7;60616:18;:27::i;:::-;60586:57;;60701:4;60660:45;;60676:19;60660:45;;;60656:86;;60714:28;;;;;;;;;;;;;;60656:86;60756:27;60785:23;60812:35;60839:7;60812:26;:35::i;:::-;60755:92;;;;60947:68;60972:15;60989:4;60995:19;:17;:19::i;:::-;60947:24;:68::i;:::-;60942:180;;61035:43;61052:4;61058:19;:17;:19::i;:::-;61035:16;:43::i;:::-;61030:92;;61087:35;;;;;;;;;;;;;;61030:92;60942:180;61153:1;61139:16;;:2;:16;;;61135:52;;;61164:23;;;;;;;;;;;;;;61135:52;61200:43;61222:4;61228:2;61232:7;61241:1;61200:21;:43::i;:::-;61336:15;61333:160;;;61476:1;61455:19;61448:30;61333:160;61873:18;:24;61892:4;61873:24;;;;;;;;;;;;;;;;61871:26;;;;;;;;;;;;61942:18;:22;61961:2;61942:22;;;;;;;;;;;;;;;;61940:24;;;;;;;;;;;62264:146;62301:2;62350:45;62365:4;62371:2;62375:19;62350:14;:45::i;:::-;42464:8;62322:73;62264:18;:146::i;:::-;62235:17;:26;62253:7;62235:26;;;;;;;;;;;:175;;;;62581:1;42464:8;62530:19;:47;:52;62526:627;;;62603:19;62635:1;62625:7;:11;62603:33;;62792:1;62758:17;:30;62776:11;62758:30;;;;;;;;;;;;:35;62754:384;;;62896:13;;62881:11;:28;62877:242;;63076:19;63043:17;:30;63061:11;63043:30;;;;;;;;;;;:52;;;;62877:242;62754:384;62584:569;62526:627;63200:7;63196:2;63181:27;;63190:4;63181:27;;;;;;;;;;;;63219:42;63240:4;63246:2;63250:7;63259:1;63219:20;:42::i;:::-;60575:2694;;;60444:2825;;;:::o;82916:30::-;;;;;;;;;;;;;:::o;84349:271::-;29631:19;:17;:19::i;:::-;84466:11:::1;83124:9;;83109:11;83093:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;83085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;83224:13;;83209:11;83181:25;83195:10;83181:13;:25::i;:::-;:39;;;;:::i;:::-;:56;;83165:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;84504:11:::2;83352:21;83383:11;83376:4;;:18;;;;:::i;:::-;83352:42;;83401:18;83422:25;83436:10;83422:13;:25::i;:::-;83401:46;;83474:1;83460:10;:15;83456:161;;;83517:21;;83502:11;:36;;:107;;83587:21;;83580:4;;:28;;;;:::i;:::-;83563:13;:46;;;;:::i;:::-;83502:107;;;83550:1;83502:107;83486:123;;83456:161;83646:13;83633:9;:26;;83625:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;84535:14:::3;;;;;;;;;;;84527:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;84584:30;84590:10;84602:11;84584:5;:30::i;:::-;83345:352:::2;;83282:1;29661::::1;84349:271:::0;:::o;86175:137::-;26774:13;:11;:13::i;:::-;86220:7:::1;86241;:5;:7::i;:::-;86233:21;;86262;86233:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86219:69;;;86303:2;86295:11;;;::::0;::::1;;86212:100;86175:137::o:0;85458:59::-;26774:13;:11;:13::i;:::-;85501:10:::1;:8;:10::i;:::-;85458:59::o:0;63365:193::-;63511:39;63528:4;63534:2;63538:7;63511:39;;;;;;;;;;;;:16;:39::i;:::-;63365:193;;;:::o;86095:74::-;26774:13;:11;:13::i;:::-;86158:5:::1;86151:4;:12;;;;86095:74:::0;:::o;82869:40::-;;;;:::o;85863:98::-;26774:13;:11;:13::i;:::-;85944:11:::1;85934:7;:21;;;;;;;;;;;;:::i;:::-;;85863:98:::0;:::o;30026:86::-;30073:4;30097:7;;;;;;;;;;;30090:14;;30026:86;:::o;51707:152::-;51779:7;51822:27;51841:7;51822:18;:27::i;:::-;51799:52;;51707:152;;;:::o;82649:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47249:233::-;47321:7;47362:1;47345:19;;:5;:19;;;47341:60;;;47373:28;;;;;;;;;;;;;;47341:60;41408:13;47419:18;:25;47438:5;47419:25;;;;;;;;;;;;;;;;:55;47412:62;;47249:233;;;:::o;27536:103::-;26774:13;:11;:13::i;:::-;27601:30:::1;27628:1;27601:18;:30::i;:::-;27536:103::o:0;85397:55::-;26774:13;:11;:13::i;:::-;85438:8:::1;:6;:8::i;:::-;85397:55::o:0;26888:87::-;26934:7;26961:6;;;;;;;;;;;26954:13;;26888:87;:::o;50490:104::-;50546:13;50579:7;50572:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50490:104;:::o;57363:234::-;57510:8;57458:18;:39;57477:19;:17;:19::i;:::-;57458:39;;;;;;;;;;;;;;;:49;57498:8;57458:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;57570:8;57534:55;;57549:19;:17;:19::i;:::-;57534:55;;;57580:8;57534:55;;;;;;:::i;:::-;;;;;;;;57363:234;;:::o;82675:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82992:34::-;;;;:::o;64156:407::-;64331:31;64344:4;64350:2;64354:7;64331:12;:31::i;:::-;64395:1;64377:2;:14;;;:19;64373:183;;64416:56;64447:4;64453:2;64457:7;64466:5;64416:30;:56::i;:::-;64411:145;;64500:40;;;;;;;;;;;;;;64411:145;64373:183;64156:407;;;;:::o;82711:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84626:437::-;84710:13;84748:17;84756:8;84748:7;:17::i;:::-;84732:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;84839:28;84870:10;:8;:10::i;:::-;84839:41;;84932:1;84907:14;84901:28;:32;:156;;;;;;;;;;;;;;;;;84981:14;84997:19;:8;:17;:19::i;:::-;85018:13;84964:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84901:156;84887:170;;;84626:437;;;:::o;83982:361::-;29631:19;:17;:19::i;:::-;84143:11:::1;;84156:19;;83800:114;83829:11;;83800:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83851:4;83893:10;83876:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;83866:39;;;;;;83800:18;:114::i;:::-;83784:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;84197:11:::2;83124:9;;83109:11;83093:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;83085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;83224:13;;83209:11;83181:25;83195:10;83181:13;:25::i;:::-;:39;;;;:::i;:::-;:56;;83165:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;84235:11:::3;83352:21;83383:11;83376:4;;:18;;;;:::i;:::-;83352:42;;83401:18;83422:25;83436:10;83422:13;:25::i;:::-;83401:46;;83474:1;83460:10;:15;83456:161;;;83517:21;;83502:11;:36;;:107;;83587:21;;83580:4;;:28;;;;:::i;:::-;83563:13;:46;;;;:::i;:::-;83502:107;;;83550:1;83502:107;83486:123;;83456:161;83646:13;83633:9;:26;;83625:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;84266:10:::4;;;;;;;;;;;84258:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;84307:30;84313:10;84325:11;84307:5;:30::i;:::-;83345:352:::3;;83282:1;83969::::2;29661::::1;;;83982:361:::0;;;:::o;82796:31::-;;;;:::o;85967:122::-;26774:13;:11;:13::i;:::-;86066:17:::1;86050:13;:33;;;;;;;;;;;;:::i;:::-;;85967:122:::0;:::o;85270:121::-;85336:7;85359:26;85373:11;85359:13;:26::i;:::-;85352:33;;85270:121;;;:::o;85741:116::-;26774:13;:11;:13::i;:::-;85841:10:::1;85819:19;:32;;;;85741:116:::0;:::o;57754:164::-;57851:4;57875:18;:25;57894:5;57875:25;;;;;;;;;;;;;;;:35;57901:8;57875:35;;;;;;;;;;;;;;;;;;;;;;;;;57868:42;;57754:164;;;;:::o;27794:201::-;26774:13;:11;:13::i;:::-;27903:1:::1;27883:22;;:8;:22;;;;27875:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27959:28;27978:8;27959:18;:28::i;:::-;27794:201:::0;:::o;82951:34::-;;;;;;;;;;;;;:::o;58176:282::-;58241:4;58297:7;58278:15;:13;:15::i;:::-;:26;;:66;;;;;58331:13;;58321:7;:23;58278:66;:153;;;;;58430:1;42184:8;58382:17;:26;58400:7;58382:26;;;;;;;;;;;;:44;:49;58278:153;58258:173;;58176:282;;;:::o;80484:105::-;80544:7;80571:10;80564:17;;80484:105;:::o;27053:132::-;27128:12;:10;:12::i;:::-;27117:23;;:7;:5;:7::i;:::-;:23;;;27109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27053:132::o;85169:95::-;85234:7;85257:1;85250:8;;85169:95;:::o;52862:1275::-;52929:7;52949:12;52964:7;52949:22;;53032:4;53013:15;:13;:15::i;:::-;:23;53009:1061;;53066:13;;53059:4;:20;53055:1015;;;53104:14;53121:17;:23;53139:4;53121:23;;;;;;;;;;;;53104:40;;53238:1;42184:8;53210:6;:24;:29;53206:845;;;53875:113;53892:1;53882:6;:11;53875:113;;;53935:17;:25;53953:6;;;;;;;53935:25;;;;;;;;;;;;53926:34;;53875:113;;;54021:6;54014:13;;;;;;53206:845;53081:989;53055:1015;53009:1061;54098:31;;;;;;;;;;;;;;52862:1275;;;;:::o;59339:485::-;59441:27;59470:23;59511:38;59552:15;:24;59568:7;59552:24;;;;;;;;;;;59511:65;;59729:18;59706:41;;59786:19;59780:26;59761:45;;59691:126;59339:485;;;:::o;58567:659::-;58716:11;58881:16;58874:5;58870:28;58861:37;;59041:16;59030:9;59026:32;59013:45;;59191:15;59180:9;59177:30;59169:5;59158:9;59155:20;59152:56;59142:66;;58567:659;;;;;:::o;65225:159::-;;;;;:::o;79793:311::-;79928:7;79948:16;42588:3;79974:19;:41;;79948:68;;42588:3;80042:31;80053:4;80059:2;80063:9;80042:10;:31::i;:::-;80034:40;;:62;;80027:69;;;79793:311;;;;;:::o;54685:450::-;54765:14;54933:16;54926:5;54922:28;54913:37;;55110:5;55096:11;55071:23;55067:41;55064:52;55057:5;55054:63;55044:73;;54685:450;;;;:::o;66049:158::-;;;;;:::o;30185:108::-;30256:8;:6;:8::i;:::-;30255:9;30247:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;30185:108::o;47564:178::-;47625:7;41408:13;41546:2;47653:18;:25;47672:5;47653:25;;;;;;;;;;;;;;;;:50;;47652:82;47645:89;;47564:178;;;:::o;67825:2966::-;67898:20;67921:13;;67898:36;;67961:1;67949:8;:13;67945:44;;;67971:18;;;;;;;;;;;;;;67945:44;68002:61;68032:1;68036:2;68040:12;68054:8;68002:21;:61::i;:::-;68546:1;41546:2;68516:1;:26;;68515:32;68503:8;:45;68477:18;:22;68496:2;68477:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;68825:139;68862:2;68916:33;68939:1;68943:2;68947:1;68916:14;:33::i;:::-;68883:30;68904:8;68883:20;:30::i;:::-;:66;68825:18;:139::i;:::-;68791:17;:31;68809:12;68791:31;;;;;;;;;;;:173;;;;68981:16;69012:11;69041:8;69026:12;:23;69012:37;;69562:16;69558:2;69554:25;69542:37;;69934:12;69894:8;69853:1;69791:25;69732:1;69671;69644:335;70305:1;70291:12;70287:20;70245:346;70346:3;70337:7;70334:16;70245:346;;70564:7;70554:8;70551:1;70524:25;70521:1;70518;70513:59;70399:1;70390:7;70386:15;70375:26;;70245:346;;;70249:77;70636:1;70624:8;:13;70620:45;;;70646:19;;;;;;;;;;;;;;70620:45;70698:3;70682:13;:19;;;;68251:2462;;70723:60;70752:1;70756:2;70760:12;70774:8;70723:20;:60::i;:::-;67887:2904;67825:2966;;:::o;30881:120::-;29890:16;:14;:16::i;:::-;30950:5:::1;30940:7;;:15;;;;;;;;;;;;;;;;;;30971:22;30980:12;:10;:12::i;:::-;30971:22;;;;;;:::i;:::-;;;;;;;;30881:120::o:0;28155:191::-;28229:16;28248:6;;;;;;;;;;;28229:25;;28274:8;28265:6;;:17;;;;;;;;;;;;;;;;;;28329:8;28298:40;;28319:8;28298:40;;;;;;;;;;;;28218:128;28155:191;:::o;30622:118::-;29631:19;:17;:19::i;:::-;30692:4:::1;30682:7;;:14;;;;;;;;;;;;;;;;;;30712:20;30719:12;:10;:12::i;:::-;30712:20;;;;;;:::i;:::-;;;;;;;;30622:118::o:0;66647:716::-;66810:4;66856:2;66831:45;;;66877:19;:17;:19::i;:::-;66898:4;66904:7;66913:5;66831:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66827:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67131:1;67114:6;:13;:18;67110:235;;;67160:40;;;;;;;;;;;;;;67110:235;67303:6;67297:13;67288:6;67284:2;67280:15;67273:38;66827:529;67000:54;;;66990:64;;;:6;:64;;;;66983:71;;;66647:716;;;;;;:::o;85069:94::-;85121:13;85150:7;85143:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85069:94;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;16421:190::-;16546:4;16599;16570:25;16583:5;16590:4;16570:12;:25::i;:::-;:33;16563:40;;16421:190;;;;;:::o;25439:98::-;25492:7;25519:10;25512:17;;25439:98;:::o;79494:147::-;79631:6;79494:147;;;;;:::o;55237:324::-;55307:14;55540:1;55530:8;55527:15;55501:24;55497:46;55487:56;;55237:324;;;:::o;30370:108::-;30437:8;:6;:8::i;:::-;30429:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;30370:108::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;17288:296::-;17371:7;17391:20;17414:4;17391:27;;17434:9;17429:118;17453:5;:12;17449:1;:16;17429:118;;;17502:33;17512:12;17526:5;17532:1;17526:8;;;;;;;;:::i;:::-;;;;;;;;17502:9;:33::i;:::-;17487:48;;17467:3;;;;;:::i;:::-;;;;17429:118;;;;17564:12;17557:19;;;17288:296;;;;:::o;24328:149::-;24391:7;24422:1;24418;:5;:51;;24449:20;24464:1;24467;24449:14;:20::i;:::-;24418:51;;;24426:20;24441:1;24444;24426:14;:20::i;:::-;24418:51;24411:58;;24328:149;;;;:::o;24485:268::-;24553:13;24660:1;24654:4;24647:15;24689:1;24683:4;24676:15;24730:4;24724;24714:21;24705:30;;24485:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:77::-;9643:7;9672:5;9661:16;;9606:77;;;:::o;9689:118::-;9776:24;9794:5;9776:24;:::i;:::-;9771:3;9764:37;9689:118;;:::o;9813:222::-;9906:4;9944:2;9933:9;9929:18;9921:26;;9957:71;10025:1;10014:9;10010:17;10001:6;9957:71;:::i;:::-;9813:222;;;;:::o;10041:307::-;10102:4;10192:18;10184:6;10181:30;10178:56;;;10214:18;;:::i;:::-;10178:56;10252:29;10274:6;10252:29;:::i;:::-;10244:37;;10336:4;10330;10326:15;10318:23;;10041:307;;;:::o;10354:410::-;10431:5;10456:65;10472:48;10513:6;10472:48;:::i;:::-;10456:65;:::i;:::-;10447:74;;10544:6;10537:5;10530:21;10582:4;10575:5;10571:16;10620:3;10611:6;10606:3;10602:16;10599:25;10596:112;;;10627:79;;:::i;:::-;10596:112;10717:41;10751:6;10746:3;10741;10717:41;:::i;:::-;10437:327;10354:410;;;;;:::o;10783:338::-;10838:5;10887:3;10880:4;10872:6;10868:17;10864:27;10854:122;;10895:79;;:::i;:::-;10854:122;11012:6;10999:20;11037:78;11111:3;11103:6;11096:4;11088:6;11084:17;11037:78;:::i;:::-;11028:87;;10844:277;10783:338;;;;:::o;11127:943::-;11222:6;11230;11238;11246;11295:3;11283:9;11274:7;11270:23;11266:33;11263:120;;;11302:79;;:::i;:::-;11263:120;11422:1;11447:53;11492:7;11483:6;11472:9;11468:22;11447:53;:::i;:::-;11437:63;;11393:117;11549:2;11575:53;11620:7;11611:6;11600:9;11596:22;11575:53;:::i;:::-;11565:63;;11520:118;11677:2;11703:53;11748:7;11739:6;11728:9;11724:22;11703:53;:::i;:::-;11693:63;;11648:118;11833:2;11822:9;11818:18;11805:32;11864:18;11856:6;11853:30;11850:117;;;11886:79;;:::i;:::-;11850:117;11991:62;12045:7;12036:6;12025:9;12021:22;11991:62;:::i;:::-;11981:72;;11776:287;11127:943;;;;;;;:::o;12076:117::-;12185:1;12182;12175:12;12199:117;12308:1;12305;12298:12;12339:568;12412:8;12422:6;12472:3;12465:4;12457:6;12453:17;12449:27;12439:122;;12480:79;;:::i;:::-;12439:122;12593:6;12580:20;12570:30;;12623:18;12615:6;12612:30;12609:117;;;12645:79;;:::i;:::-;12609:117;12759:4;12751:6;12747:17;12735:29;;12813:3;12805:4;12797:6;12793:17;12783:8;12779:32;12776:41;12773:128;;;12820:79;;:::i;:::-;12773:128;12339:568;;;;;:::o;12913:704::-;13008:6;13016;13024;13073:2;13061:9;13052:7;13048:23;13044:32;13041:119;;;13079:79;;:::i;:::-;13041:119;13199:1;13224:53;13269:7;13260:6;13249:9;13245:22;13224:53;:::i;:::-;13214:63;;13170:117;13354:2;13343:9;13339:18;13326:32;13385:18;13377:6;13374:30;13371:117;;;13407:79;;:::i;:::-;13371:117;13520:80;13592:7;13583:6;13572:9;13568:22;13520:80;:::i;:::-;13502:98;;;;13297:313;12913:704;;;;;:::o;13623:122::-;13696:24;13714:5;13696:24;:::i;:::-;13689:5;13686:35;13676:63;;13735:1;13732;13725:12;13676:63;13623:122;:::o;13751:139::-;13797:5;13835:6;13822:20;13813:29;;13851:33;13878:5;13851:33;:::i;:::-;13751:139;;;;:::o;13896:329::-;13955:6;14004:2;13992:9;13983:7;13979:23;13975:32;13972:119;;;14010:79;;:::i;:::-;13972:119;14130:1;14155:53;14200:7;14191:6;14180:9;14176:22;14155:53;:::i;:::-;14145:63;;14101:117;13896:329;;;;:::o;14231:474::-;14299:6;14307;14356:2;14344:9;14335:7;14331:23;14327:32;14324:119;;;14362:79;;:::i;:::-;14324:119;14482:1;14507:53;14552:7;14543:6;14532:9;14528:22;14507:53;:::i;:::-;14497:63;;14453:117;14609:2;14635:53;14680:7;14671:6;14660:9;14656:22;14635:53;:::i;:::-;14625:63;;14580:118;14231:474;;;;;:::o;14711:180::-;14759:77;14756:1;14749:88;14856:4;14853:1;14846:15;14880:4;14877:1;14870:15;14897:320;14941:6;14978:1;14972:4;14968:12;14958:22;;15025:1;15019:4;15015:12;15046:18;15036:81;;15102:4;15094:6;15090:17;15080:27;;15036:81;15164:2;15156:6;15153:14;15133:18;15130:38;15127:84;;;15183:18;;:::i;:::-;15127:84;14948:269;14897:320;;;:::o;15223:180::-;15271:77;15268:1;15261:88;15368:4;15365:1;15358:15;15392:4;15389:1;15382:15;15409:305;15449:3;15468:20;15486:1;15468:20;:::i;:::-;15463:25;;15502:20;15520:1;15502:20;:::i;:::-;15497:25;;15656:1;15588:66;15584:74;15581:1;15578:81;15575:107;;;15662:18;;:::i;:::-;15575:107;15706:1;15703;15699:9;15692:16;;15409:305;;;;:::o;15720:170::-;15860:22;15856:1;15848:6;15844:14;15837:46;15720:170;:::o;15896:366::-;16038:3;16059:67;16123:2;16118:3;16059:67;:::i;:::-;16052:74;;16135:93;16224:3;16135:93;:::i;:::-;16253:2;16248:3;16244:12;16237:19;;15896:366;;;:::o;16268:419::-;16434:4;16472:2;16461:9;16457:18;16449:26;;16521:9;16515:4;16511:20;16507:1;16496:9;16492:17;16485:47;16549:131;16675:4;16549:131;:::i;:::-;16541:139;;16268:419;;;:::o;16693:170::-;16833:22;16829:1;16821:6;16817:14;16810:46;16693:170;:::o;16869:366::-;17011:3;17032:67;17096:2;17091:3;17032:67;:::i;:::-;17025:74;;17108:93;17197:3;17108:93;:::i;:::-;17226:2;17221:3;17217:12;17210:19;;16869:366;;;:::o;17241:419::-;17407:4;17445:2;17434:9;17430:18;17422:26;;17494:9;17488:4;17484:20;17480:1;17469:9;17465:17;17458:47;17522:131;17648:4;17522:131;:::i;:::-;17514:139;;17241:419;;;:::o;17666:348::-;17706:7;17729:20;17747:1;17729:20;:::i;:::-;17724:25;;17763:20;17781:1;17763:20;:::i;:::-;17758:25;;17951:1;17883:66;17879:74;17876:1;17873:81;17868:1;17861:9;17854:17;17850:105;17847:131;;;17958:18;;:::i;:::-;17847:131;18006:1;18003;17999:9;17988:20;;17666:348;;;;:::o;18020:191::-;18060:4;18080:20;18098:1;18080:20;:::i;:::-;18075:25;;18114:20;18132:1;18114:20;:::i;:::-;18109:25;;18153:1;18150;18147:8;18144:34;;;18158:18;;:::i;:::-;18144:34;18203:1;18200;18196:9;18188:17;;18020:191;;;;:::o;18217:169::-;18357:21;18353:1;18345:6;18341:14;18334:45;18217:169;:::o;18392:366::-;18534:3;18555:67;18619:2;18614:3;18555:67;:::i;:::-;18548:74;;18631:93;18720:3;18631:93;:::i;:::-;18749:2;18744:3;18740:12;18733:19;;18392:366;;;:::o;18764:419::-;18930:4;18968:2;18957:9;18953:18;18945:26;;19017:9;19011:4;19007:20;19003:1;18992:9;18988:17;18981:47;19045:131;19171:4;19045:131;:::i;:::-;19037:139;;18764:419;;;:::o;19189:173::-;19329:25;19325:1;19317:6;19313:14;19306:49;19189:173;:::o;19368:366::-;19510:3;19531:67;19595:2;19590:3;19531:67;:::i;:::-;19524:74;;19607:93;19696:3;19607:93;:::i;:::-;19725:2;19720:3;19716:12;19709:19;;19368:366;;;:::o;19740:419::-;19906:4;19944:2;19933:9;19929:18;19921:26;;19993:9;19987:4;19983:20;19979:1;19968:9;19964:17;19957:47;20021:131;20147:4;20021:131;:::i;:::-;20013:139;;19740:419;;;:::o;20165:147::-;20266:11;20303:3;20288:18;;20165:147;;;;:::o;20318:114::-;;:::o;20438:398::-;20597:3;20618:83;20699:1;20694:3;20618:83;:::i;:::-;20611:90;;20710:93;20799:3;20710:93;:::i;:::-;20828:1;20823:3;20819:11;20812:18;;20438:398;;;:::o;20842:379::-;21026:3;21048:147;21191:3;21048:147;:::i;:::-;21041:154;;21212:3;21205:10;;20842:379;;;:::o;21227:234::-;21367:34;21363:1;21355:6;21351:14;21344:58;21436:17;21431:2;21423:6;21419:15;21412:42;21227:234;:::o;21467:366::-;21609:3;21630:67;21694:2;21689:3;21630:67;:::i;:::-;21623:74;;21706:93;21795:3;21706:93;:::i;:::-;21824:2;21819:3;21815:12;21808:19;;21467:366;;;:::o;21839:419::-;22005:4;22043:2;22032:9;22028:18;22020:26;;22092:9;22086:4;22082:20;22078:1;22067:9;22063:17;22056:47;22120:131;22246:4;22120:131;:::i;:::-;22112:139;;21839:419;;;:::o;22264:148::-;22366:11;22403:3;22388:18;;22264:148;;;;:::o;22418:377::-;22524:3;22552:39;22585:5;22552:39;:::i;:::-;22607:89;22689:6;22684:3;22607:89;:::i;:::-;22600:96;;22705:52;22750:6;22745:3;22738:4;22731:5;22727:16;22705:52;:::i;:::-;22782:6;22777:3;22773:16;22766:23;;22528:267;22418:377;;;;:::o;22801:141::-;22850:4;22873:3;22865:11;;22896:3;22893:1;22886:14;22930:4;22927:1;22917:18;22909:26;;22801:141;;;:::o;22972:845::-;23075:3;23112:5;23106:12;23141:36;23167:9;23141:36;:::i;:::-;23193:89;23275:6;23270:3;23193:89;:::i;:::-;23186:96;;23313:1;23302:9;23298:17;23329:1;23324:137;;;;23475:1;23470:341;;;;23291:520;;23324:137;23408:4;23404:9;23393;23389:25;23384:3;23377:38;23444:6;23439:3;23435:16;23428:23;;23324:137;;23470:341;23537:38;23569:5;23537:38;:::i;:::-;23597:1;23611:154;23625:6;23622:1;23619:13;23611:154;;;23699:7;23693:14;23689:1;23684:3;23680:11;23673:35;23749:1;23740:7;23736:15;23725:26;;23647:4;23644:1;23640:12;23635:17;;23611:154;;;23794:6;23789:3;23785:16;23778:23;;23477:334;;23291:520;;23079:738;;22972:845;;;;:::o;23823:589::-;24048:3;24070:95;24161:3;24152:6;24070:95;:::i;:::-;24063:102;;24182:95;24273:3;24264:6;24182:95;:::i;:::-;24175:102;;24294:92;24382:3;24373:6;24294:92;:::i;:::-;24287:99;;24403:3;24396:10;;23823:589;;;;;;:::o;24418:94::-;24451:8;24499:5;24495:2;24491:14;24470:35;;24418:94;;;:::o;24518:::-;24557:7;24586:20;24600:5;24586:20;:::i;:::-;24575:31;;24518:94;;;:::o;24618:100::-;24657:7;24686:26;24706:5;24686:26;:::i;:::-;24675:37;;24618:100;;;:::o;24724:157::-;24829:45;24849:24;24867:5;24849:24;:::i;:::-;24829:45;:::i;:::-;24824:3;24817:58;24724:157;;:::o;24887:256::-;24999:3;25014:75;25085:3;25076:6;25014:75;:::i;:::-;25114:2;25109:3;25105:12;25098:19;;25134:3;25127:10;;24887:256;;;;:::o;25149:180::-;25289:32;25285:1;25277:6;25273:14;25266:56;25149:180;:::o;25335:366::-;25477:3;25498:67;25562:2;25557:3;25498:67;:::i;:::-;25491:74;;25574:93;25663:3;25574:93;:::i;:::-;25692:2;25687:3;25683:12;25676:19;;25335:366;;;:::o;25707:419::-;25873:4;25911:2;25900:9;25896:18;25888:26;;25960:9;25954:4;25950:20;25946:1;25935:9;25931:17;25924:47;25988:131;26114:4;25988:131;:::i;:::-;25980:139;;25707:419;;;:::o;26132:169::-;26272:21;26268:1;26260:6;26256:14;26249:45;26132:169;:::o;26307:366::-;26449:3;26470:67;26534:2;26529:3;26470:67;:::i;:::-;26463:74;;26546:93;26635:3;26546:93;:::i;:::-;26664:2;26659:3;26655:12;26648:19;;26307:366;;;:::o;26679:419::-;26845:4;26883:2;26872:9;26868:18;26860:26;;26932:9;26926:4;26922:20;26918:1;26907:9;26903:17;26896:47;26960:131;27086:4;26960:131;:::i;:::-;26952:139;;26679:419;;;:::o;27104:225::-;27244:34;27240:1;27232:6;27228:14;27221:58;27313:8;27308:2;27300:6;27296:15;27289:33;27104:225;:::o;27335:366::-;27477:3;27498:67;27562:2;27557:3;27498:67;:::i;:::-;27491:74;;27574:93;27663:3;27574:93;:::i;:::-;27692:2;27687:3;27683:12;27676:19;;27335:366;;;:::o;27707:419::-;27873:4;27911:2;27900:9;27896:18;27888:26;;27960:9;27954:4;27950:20;27946:1;27935:9;27931:17;27924:47;27988:131;28114:4;27988:131;:::i;:::-;27980:139;;27707:419;;;:::o;28132:182::-;28272:34;28268:1;28260:6;28256:14;28249:58;28132:182;:::o;28320:366::-;28462:3;28483:67;28547:2;28542:3;28483:67;:::i;:::-;28476:74;;28559:93;28648:3;28559:93;:::i;:::-;28677:2;28672:3;28668:12;28661:19;;28320:366;;;:::o;28692:419::-;28858:4;28896:2;28885:9;28881:18;28873:26;;28945:9;28939:4;28935:20;28931:1;28920:9;28916:17;28909:47;28973:131;29099:4;28973:131;:::i;:::-;28965:139;;28692:419;;;:::o;29117:166::-;29257:18;29253:1;29245:6;29241:14;29234:42;29117:166;:::o;29289:366::-;29431:3;29452:67;29516:2;29511:3;29452:67;:::i;:::-;29445:74;;29528:93;29617:3;29528:93;:::i;:::-;29646:2;29641:3;29637:12;29630:19;;29289:366;;;:::o;29661:419::-;29827:4;29865:2;29854:9;29850:18;29842:26;;29914:9;29908:4;29904:20;29900:1;29889:9;29885:17;29878:47;29942:131;30068:4;29942:131;:::i;:::-;29934:139;;29661:419;;;:::o;30086:98::-;30137:6;30171:5;30165:12;30155:22;;30086:98;;;:::o;30190:168::-;30273:11;30307:6;30302:3;30295:19;30347:4;30342:3;30338:14;30323:29;;30190:168;;;;:::o;30364:360::-;30450:3;30478:38;30510:5;30478:38;:::i;:::-;30532:70;30595:6;30590:3;30532:70;:::i;:::-;30525:77;;30611:52;30656:6;30651:3;30644:4;30637:5;30633:16;30611:52;:::i;:::-;30688:29;30710:6;30688:29;:::i;:::-;30683:3;30679:39;30672:46;;30454:270;30364:360;;;;:::o;30730:640::-;30925:4;30963:3;30952:9;30948:19;30940:27;;30977:71;31045:1;31034:9;31030:17;31021:6;30977:71;:::i;:::-;31058:72;31126:2;31115:9;31111:18;31102:6;31058:72;:::i;:::-;31140;31208:2;31197:9;31193:18;31184:6;31140:72;:::i;:::-;31259:9;31253:4;31249:20;31244:2;31233:9;31229:18;31222:48;31287:76;31358:4;31349:6;31287:76;:::i;:::-;31279:84;;30730:640;;;;;;;:::o;31376:141::-;31432:5;31463:6;31457:13;31448:22;;31479:32;31505:5;31479:32;:::i;:::-;31376:141;;;;:::o;31523:349::-;31592:6;31641:2;31629:9;31620:7;31616:23;31612:32;31609:119;;;31647:79;;:::i;:::-;31609:119;31767:1;31792:63;31847:7;31838:6;31827:9;31823:22;31792:63;:::i;:::-;31782:73;;31738:127;31523:349;;;;:::o;31878:180::-;31926:77;31923:1;31916:88;32023:4;32020:1;32013:15;32047:4;32044:1;32037:15;32064:170;32204:22;32200:1;32192:6;32188:14;32181:46;32064:170;:::o;32240:366::-;32382:3;32403:67;32467:2;32462:3;32403:67;:::i;:::-;32396:74;;32479:93;32568:3;32479:93;:::i;:::-;32597:2;32592:3;32588:12;32581:19;;32240:366;;;:::o;32612:419::-;32778:4;32816:2;32805:9;32801:18;32793:26;;32865:9;32859:4;32855:20;32851:1;32840:9;32836:17;32829:47;32893:131;33019:4;32893:131;:::i;:::-;32885:139;;32612:419;;;:::o;33037:180::-;33085:77;33082:1;33075:88;33182:4;33179:1;33172:15;33206:4;33203:1;33196:15;33223:233;33262:3;33285:24;33303:5;33285:24;:::i;:::-;33276:33;;33331:66;33324:5;33321:77;33318:103;;;33401:18;;:::i;:::-;33318:103;33448:1;33441:5;33437:13;33430:20;;33223:233;;;:::o
Swarm Source
ipfs://11869fa2cbeb0fdc102027be3fea09640d044ef41de87a10287249e55f4be487
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.