ERC-721
Overview
Max Total Supply
770 CRT
Holders
46
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 CRTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoxedUniverse
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-23 */ // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: operator-filter-registry/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: operator-filter-registry/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.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) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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 256, 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 << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // 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: @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.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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: Crates.sol pragma solidity ^0.8.18; contract BoxedUniverse is Ownable, ERC721A, DefaultOperatorFilterer { using Strings for uint256; uint256 public maxSupplies = 178000; uint256 public priceForTen = 0.0020 ether; // New price for 10 NFTs event Mint(uint256 amount); uint64 public MAX_PER_WALLET = 100; // Modified to 100 NFTs per wallet bool public isSaleActive; mapping(address => uint256) public minted; string private baseURI; address payable private releaseWallet; constructor() ERC721A("Boxed Universe", "CRT") { releaseWallet = payable(msg.sender); } function mint(uint256 quantity) external payable { require(isSaleActive, "Mint has not started yet"); require(msg.sender == _msgSender(), "No contracts"); require(minted[msg.sender] + quantity <= MAX_PER_WALLET, "Per wallet limit exceeded"); require(totalSupply() + quantity <= maxSupplies,"Tier 1 supply exceeded"); uint256 requiredValue; if(quantity == 10) { requiredValue = priceForTen; } else { revert("Incorrect quantity"); } require(msg.value >= requiredValue, "Incorrect ETH amount"); minted[msg.sender] += quantity; _mint(msg.sender, quantity); emit Mint(quantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); return "https://pin.ski/465Ojhg"; //return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setMaxPerWallet(uint64 limit) external onlyOwner { MAX_PER_WALLET = limit; } function flipSaleState() external onlyOwner { isSaleActive = !isSaleActive; } function changePriceForTen(uint256 newPriceForTen) external onlyOwner { priceForTen = newPriceForTen; } function cutSupply(uint256 newMax) external onlyOwner { require(newMax < maxSupplies, "New max supply should be lower than current max supply"); require(newMax > totalSupply(),"New max supply should be higher than current number of minted tokens"); maxSupplies = newMax; } function airdrop(uint256 quantity, address receiver) external onlyOwner { require( totalSupply() + quantity <= maxSupplies, "Max supply exceeded" ); _safeMint(receiver, quantity); } function releaseFunds() external onlyOwner { (bool success, ) = releaseWallet.call{value: address(this).balance}(""); require(success, "Withdraw failed"); } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"uint256","name":"newPriceForTen","type":"uint256"}],"name":"changePriceForTen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"cutSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"priceForTen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseFunds","outputs":[],"stateMutability":"nonpayable","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":"uint64","name":"limit","type":"uint64"}],"name":"setMaxPerWallet","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"}]
Contract Creation Code
60806040526202b75060095566071afd498d0000600a556064600b60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055503480156200004d57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020017f426f78656420556e6976657273650000000000000000000000000000000000008152506040518060400160405280600381526020017f4352540000000000000000000000000000000000000000000000000000000000815250620000f1620000e56200036b60201b60201c565b6200037360201b60201c565b8160039081620001029190620006ba565b508060049081620001149190620006ba565b50620001256200043760201b60201c565b600181905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000322578015620001e8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ae929190620007e6565b600060405180830381600087803b158015620001c957600080fd5b505af1158015620001de573d6000803e3d6000fd5b5050505062000321565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000268929190620007e6565b600060405180830381600087803b1580156200028357600080fd5b505af115801562000298573d6000803e3d6000fd5b5050505062000320565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002eb919062000813565b600060405180830381600087803b1580156200030657600080fd5b505af11580156200031b573d6000803e3d6000fd5b505050505b5b5b505033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000830565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004c257607f821691505b602082108103620004d857620004d76200047a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005427fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000503565b6200054e868362000503565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200059b620005956200058f8462000566565b62000570565b62000566565b9050919050565b6000819050919050565b620005b7836200057a565b620005cf620005c682620005a2565b84845462000510565b825550505050565b600090565b620005e6620005d7565b620005f3818484620005ac565b505050565b5b818110156200061b576200060f600082620005dc565b600181019050620005f9565b5050565b601f8211156200066a576200063481620004de565b6200063f84620004f3565b810160208510156200064f578190505b620006676200065e85620004f3565b830182620005f8565b50505b505050565b600082821c905092915050565b60006200068f600019846008026200066f565b1980831691505092915050565b6000620006aa83836200067c565b9150826002028217905092915050565b620006c58262000440565b67ffffffffffffffff811115620006e157620006e06200044b565b5b620006ed8254620004a9565b620006fa8282856200061f565b600060209050601f8311600181146200073257600084156200071d578287015190505b6200072985826200069c565b86555062000799565b601f1984166200074286620004de565b60005b828110156200076c5784890151825560018201915060208501945060208101905062000745565b868310156200078c578489015162000788601f8916826200067c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007ce82620007a1565b9050919050565b620007e081620007c1565b82525050565b6000604082019050620007fd6000830185620007d5565b6200080c6020830184620007d5565b9392505050565b60006020820190506200082a6000830184620007d5565b92915050565b61306e80620008406000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146105fb578063e985e9c514610638578063f2fde38b14610675578063f4c445691461069e576101cd565b8063a0712d6814610571578063a22cb4651461058d578063b88d4fde146105b6578063bc63f02e146105d2576101cd565b8063715018a6116100d1578063715018a6146104d95780638da5cb5b146104f057806390e445da1461051b57806395d89b4114610546576101cd565b80636352211e1461044857806369d895751461048557806370a082311461049c576101cd565b80631e7269c51161016f57806341f434341161013e57806341f43434146103ab57806342842e0e146103d657806348076aae146103f2578063564566a81461041d576101cd565b80631e7269c51461031257806323b872dd1461034f57806334918dfd1461036b5780633e9f610b14610382576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630f2cdd6c1461029357806318160ddd146102be57806318562c2a146102e9576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061212e565b6106c7565b6040516102069190612176565b60405180910390f35b34801561021b57600080fd5b50610224610759565b6040516102319190612221565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612279565b6107eb565b60405161026e91906122e7565b60405180910390f35b610291600480360381019061028c919061232e565b61086a565b005b34801561029f57600080fd5b506102a8610883565b6040516102b59190612391565b60405180910390f35b3480156102ca57600080fd5b506102d361089d565b6040516102e091906123bb565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612279565b6108b4565b005b34801561031e57600080fd5b50610339600480360381019061033491906123d6565b6108c6565b60405161034691906123bb565b60405180910390f35b61036960048036038101906103649190612403565b6108de565b005b34801561037757600080fd5b5061038061092d565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612482565b610961565b005b3480156103b757600080fd5b506103c0610995565b6040516103cd919061250e565b60405180910390f35b6103f060048036038101906103eb9190612403565b6109a7565b005b3480156103fe57600080fd5b506104076109f6565b60405161041491906123bb565b60405180910390f35b34801561042957600080fd5b506104326109fc565b60405161043f9190612176565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612279565b610a0f565b60405161047c91906122e7565b60405180910390f35b34801561049157600080fd5b5061049a610a21565b005b3480156104a857600080fd5b506104c360048036038101906104be91906123d6565b610afa565b6040516104d091906123bb565b60405180910390f35b3480156104e557600080fd5b506104ee610bb2565b005b3480156104fc57600080fd5b50610505610bc6565b60405161051291906122e7565b60405180910390f35b34801561052757600080fd5b50610530610bef565b60405161053d91906123bb565b60405180910390f35b34801561055257600080fd5b5061055b610bf5565b6040516105689190612221565b60405180910390f35b61058b60048036038101906105869190612279565b610c87565b005b34801561059957600080fd5b506105b460048036038101906105af9190612555565b610f7c565b005b6105d060048036038101906105cb91906126ca565b610f95565b005b3480156105de57600080fd5b506105f960048036038101906105f4919061274d565b610fe6565b005b34801561060757600080fd5b50610622600480360381019061061d9190612279565b611053565b60405161062f9190612221565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a919061278d565b6110da565b60405161066c9190612176565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906123d6565b61116e565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612279565b6111f1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107525750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610768906127fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610794906127fc565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f682611290565b61082c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610874816112ef565b61087e83836113ec565b505050565b600b60009054906101000a900467ffffffffffffffff1681565b60006108a7611530565b6002546001540303905090565b6108bc611539565b80600a8190555050565b600c6020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461091c5761091b336112ef565b5b6109278484846115b7565b50505050565b610935611539565b600b60089054906101000a900460ff1615600b60086101000a81548160ff021916908315150217905550565b610969611539565b80600b60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e5576109e4336112ef565b5b6109f08484846118d9565b50505050565b60095481565b600b60089054906101000a900460ff1681565b6000610a1a826118f9565b9050919050565b610a29611539565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a719061285e565b60006040518083038185875af1925050503d8060008114610aae576040519150601f19603f3d011682016040523d82523d6000602084013e610ab3565b606091505b5050905080610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee906128bf565b60405180910390fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bba611539565b610bc460006119c5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b606060048054610c04906127fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c30906127fc565b8015610c7d5780601f10610c5257610100808354040283529160200191610c7d565b820191906000526020600020905b815481529060010190602001808311610c6057829003601f168201915b5050505050905090565b600b60089054906101000a900460ff16610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd9061292b565b60405180910390fd5b610cde611a89565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290612997565b60405180910390fd5b600b60009054906101000a900467ffffffffffffffff1667ffffffffffffffff1681600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db791906129e6565b1115610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90612a66565b60405180910390fd5b60095481610e0461089d565b610e0e91906129e6565b1115610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690612ad2565b60405180910390fd5b6000600a8203610e6357600a549050610e9e565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612b3e565b60405180910390fd5b80341015610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890612baa565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f3091906129e6565b92505081905550610f413383611a91565b7f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a8466582604051610f7091906123bb565b60405180910390a15050565b81610f86816112ef565b610f908383611c4d565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fd357610fd2336112ef565b5b610fdf85858585611d58565b5050505050565b610fee611539565b60095482610ffa61089d565b61100491906129e6565b1115611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612c16565b60405180910390fd5b61104f8183611dcb565b5050565b606061105e82611290565b61109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490612c82565b60405180910390fd5b6040518060400160405280601781526020017f68747470733a2f2f70696e2e736b692f3436354f6a68670000000000000000008152509050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611176611539565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612d14565b60405180910390fd5b6111ee816119c5565b50565b6111f9611539565b600954811061123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490612da6565b60405180910390fd5b61124561089d565b8111611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612e5e565b60405180910390fd5b8060098190555050565b60008161129b611530565b111580156112aa575060015482105b80156112e8575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611366929190612e7e565b602060405180830381865afa158015611383573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a79190612ebc565b6113e857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113df91906122e7565b60405180910390fd5b5b50565b60006113f782610a0f565b90508073ffffffffffffffffffffffffffffffffffffffff16611418611de9565b73ffffffffffffffffffffffffffffffffffffffff161461147b576114448161143f611de9565b6110da565b61147a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611541611a89565b73ffffffffffffffffffffffffffffffffffffffff1661155f610bc6565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612f35565b60405180910390fd5b565b60006115c2826118f9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611629576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061163584611df1565b9150915061164b8187611646611de9565b611e18565b611697576116608661165b611de9565b6110da565b611696576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036116fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61170a8686866001611e5c565b801561171557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117e3856117bf888887611e62565b7c020000000000000000000000000000000000000000000000000000000017611e8a565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118695760006001850190506000600560008381526020019081526020016000205403611867576001548114611866578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118d18686866001611eb5565b505050505050565b6118f483838360405180602001604052806000815250610f95565b505050565b60008082905080611908611530565b1161198e5760015481101561198d5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361198b575b60008103611981576005600083600190039350838152602001908152602001600020549050611957565b80925050506119c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000600154905060008203611ad2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611adf6000848385611e5c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b5683611b476000866000611e62565b611b5085611ebb565b17611e8a565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611bf757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611bbc565b5060008203611c32576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611c486000848385611eb5565b505050565b8060086000611c5a611de9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d07611de9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4c9190612176565b60405180910390a35050565b611d638484846108de565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dc557611d8e84848484611ecb565b611dc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611de582826040518060200160405280600081525061201b565b5050565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e798686846120b9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ef1611de9565b8786866040518563ffffffff1660e01b8152600401611f139493929190612faa565b6020604051808303816000875af1925050508015611f4f57506040513d601f19601f82011682018060405250810190611f4c919061300b565b60015b611fc8573d8060008114611f7f576040519150601f19603f3d011682016040523d82523d6000602084013e611f84565b606091505b506000815103611fc0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6120258383611a91565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120b45760006001549050600083820390505b6120666000868380600101945086611ecb565b61209c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120535781600154146120b157600080fd5b50505b505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61210b816120d6565b811461211657600080fd5b50565b60008135905061212881612102565b92915050565b600060208284031215612144576121436120cc565b5b600061215284828501612119565b91505092915050565b60008115159050919050565b6121708161215b565b82525050565b600060208201905061218b6000830184612167565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121cb5780820151818401526020810190506121b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006121f382612191565b6121fd818561219c565b935061220d8185602086016121ad565b612216816121d7565b840191505092915050565b6000602082019050818103600083015261223b81846121e8565b905092915050565b6000819050919050565b61225681612243565b811461226157600080fd5b50565b6000813590506122738161224d565b92915050565b60006020828403121561228f5761228e6120cc565b5b600061229d84828501612264565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122d1826122a6565b9050919050565b6122e1816122c6565b82525050565b60006020820190506122fc60008301846122d8565b92915050565b61230b816122c6565b811461231657600080fd5b50565b60008135905061232881612302565b92915050565b60008060408385031215612345576123446120cc565b5b600061235385828601612319565b925050602061236485828601612264565b9150509250929050565b600067ffffffffffffffff82169050919050565b61238b8161236e565b82525050565b60006020820190506123a66000830184612382565b92915050565b6123b581612243565b82525050565b60006020820190506123d060008301846123ac565b92915050565b6000602082840312156123ec576123eb6120cc565b5b60006123fa84828501612319565b91505092915050565b60008060006060848603121561241c5761241b6120cc565b5b600061242a86828701612319565b935050602061243b86828701612319565b925050604061244c86828701612264565b9150509250925092565b61245f8161236e565b811461246a57600080fd5b50565b60008135905061247c81612456565b92915050565b600060208284031215612498576124976120cc565b5b60006124a68482850161246d565b91505092915050565b6000819050919050565b60006124d46124cf6124ca846122a6565b6124af565b6122a6565b9050919050565b60006124e6826124b9565b9050919050565b60006124f8826124db565b9050919050565b612508816124ed565b82525050565b600060208201905061252360008301846124ff565b92915050565b6125328161215b565b811461253d57600080fd5b50565b60008135905061254f81612529565b92915050565b6000806040838503121561256c5761256b6120cc565b5b600061257a85828601612319565b925050602061258b85828601612540565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125d7826121d7565b810181811067ffffffffffffffff821117156125f6576125f561259f565b5b80604052505050565b60006126096120c2565b905061261582826125ce565b919050565b600067ffffffffffffffff8211156126355761263461259f565b5b61263e826121d7565b9050602081019050919050565b82818337600083830152505050565b600061266d6126688461261a565b6125ff565b9050828152602081018484840111156126895761268861259a565b5b61269484828561264b565b509392505050565b600082601f8301126126b1576126b0612595565b5b81356126c184826020860161265a565b91505092915050565b600080600080608085870312156126e4576126e36120cc565b5b60006126f287828801612319565b945050602061270387828801612319565b935050604061271487828801612264565b925050606085013567ffffffffffffffff811115612735576127346120d1565b5b6127418782880161269c565b91505092959194509250565b60008060408385031215612764576127636120cc565b5b600061277285828601612264565b925050602061278385828601612319565b9150509250929050565b600080604083850312156127a4576127a36120cc565b5b60006127b285828601612319565b92505060206127c385828601612319565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061281457607f821691505b602082108103612827576128266127cd565b5b50919050565b600081905092915050565b50565b600061284860008361282d565b915061285382612838565b600082019050919050565b60006128698261283b565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b60006128a9600f8361219c565b91506128b482612873565b602082019050919050565b600060208201905081810360008301526128d88161289c565b9050919050565b7f4d696e7420686173206e6f742073746172746564207965740000000000000000600082015250565b600061291560188361219c565b9150612920826128df565b602082019050919050565b6000602082019050818103600083015261294481612908565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000612981600c8361219c565b915061298c8261294b565b602082019050919050565b600060208201905081810360008301526129b081612974565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129f182612243565b91506129fc83612243565b9250828201905080821115612a1457612a136129b7565b5b92915050565b7f5065722077616c6c6574206c696d697420657863656564656400000000000000600082015250565b6000612a5060198361219c565b9150612a5b82612a1a565b602082019050919050565b60006020820190508181036000830152612a7f81612a43565b9050919050565b7f54696572203120737570706c7920657863656564656400000000000000000000600082015250565b6000612abc60168361219c565b9150612ac782612a86565b602082019050919050565b60006020820190508181036000830152612aeb81612aaf565b9050919050565b7f496e636f7272656374207175616e746974790000000000000000000000000000600082015250565b6000612b2860128361219c565b9150612b3382612af2565b602082019050919050565b60006020820190508181036000830152612b5781612b1b565b9050919050565b7f496e636f72726563742045544820616d6f756e74000000000000000000000000600082015250565b6000612b9460148361219c565b9150612b9f82612b5e565b602082019050919050565b60006020820190508181036000830152612bc381612b87565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612c0060138361219c565b9150612c0b82612bca565b602082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612c6c601f8361219c565b9150612c7782612c36565b602082019050919050565b60006020820190508181036000830152612c9b81612c5f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cfe60268361219c565b9150612d0982612ca2565b604082019050919050565b60006020820190508181036000830152612d2d81612cf1565b9050919050565b7f4e6577206d617820737570706c792073686f756c64206265206c6f776572207460008201527f68616e2063757272656e74206d617820737570706c7900000000000000000000602082015250565b6000612d9060368361219c565b9150612d9b82612d34565b604082019050919050565b60006020820190508181036000830152612dbf81612d83565b9050919050565b7f4e6577206d617820737570706c792073686f756c64206265206869676865722060008201527f7468616e2063757272656e74206e756d626572206f66206d696e74656420746f60208201527f6b656e7300000000000000000000000000000000000000000000000000000000604082015250565b6000612e4860448361219c565b9150612e5382612dc6565b606082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b6000604082019050612e9360008301856122d8565b612ea060208301846122d8565b9392505050565b600081519050612eb681612529565b92915050565b600060208284031215612ed257612ed16120cc565b5b6000612ee084828501612ea7565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f1f60208361219c565b9150612f2a82612ee9565b602082019050919050565b60006020820190508181036000830152612f4e81612f12565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f7c82612f55565b612f868185612f60565b9350612f968185602086016121ad565b612f9f816121d7565b840191505092915050565b6000608082019050612fbf60008301876122d8565b612fcc60208301866122d8565b612fd960408301856123ac565b8181036060830152612feb8184612f71565b905095945050505050565b60008151905061300581612102565b92915050565b600060208284031215613021576130206120cc565b5b600061302f84828501612ff6565b9150509291505056fea26469706673582212206df9f12615856624b43b75501db7a419a297bad11301dc75f4fa74daca02e7f564736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80636352211e116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146105fb578063e985e9c514610638578063f2fde38b14610675578063f4c445691461069e576101cd565b8063a0712d6814610571578063a22cb4651461058d578063b88d4fde146105b6578063bc63f02e146105d2576101cd565b8063715018a6116100d1578063715018a6146104d95780638da5cb5b146104f057806390e445da1461051b57806395d89b4114610546576101cd565b80636352211e1461044857806369d895751461048557806370a082311461049c576101cd565b80631e7269c51161016f57806341f434341161013e57806341f43434146103ab57806342842e0e146103d657806348076aae146103f2578063564566a81461041d576101cd565b80631e7269c51461031257806323b872dd1461034f57806334918dfd1461036b5780633e9f610b14610382576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630f2cdd6c1461029357806318160ddd146102be57806318562c2a146102e9576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061212e565b6106c7565b6040516102069190612176565b60405180910390f35b34801561021b57600080fd5b50610224610759565b6040516102319190612221565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612279565b6107eb565b60405161026e91906122e7565b60405180910390f35b610291600480360381019061028c919061232e565b61086a565b005b34801561029f57600080fd5b506102a8610883565b6040516102b59190612391565b60405180910390f35b3480156102ca57600080fd5b506102d361089d565b6040516102e091906123bb565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612279565b6108b4565b005b34801561031e57600080fd5b50610339600480360381019061033491906123d6565b6108c6565b60405161034691906123bb565b60405180910390f35b61036960048036038101906103649190612403565b6108de565b005b34801561037757600080fd5b5061038061092d565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612482565b610961565b005b3480156103b757600080fd5b506103c0610995565b6040516103cd919061250e565b60405180910390f35b6103f060048036038101906103eb9190612403565b6109a7565b005b3480156103fe57600080fd5b506104076109f6565b60405161041491906123bb565b60405180910390f35b34801561042957600080fd5b506104326109fc565b60405161043f9190612176565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612279565b610a0f565b60405161047c91906122e7565b60405180910390f35b34801561049157600080fd5b5061049a610a21565b005b3480156104a857600080fd5b506104c360048036038101906104be91906123d6565b610afa565b6040516104d091906123bb565b60405180910390f35b3480156104e557600080fd5b506104ee610bb2565b005b3480156104fc57600080fd5b50610505610bc6565b60405161051291906122e7565b60405180910390f35b34801561052757600080fd5b50610530610bef565b60405161053d91906123bb565b60405180910390f35b34801561055257600080fd5b5061055b610bf5565b6040516105689190612221565b60405180910390f35b61058b60048036038101906105869190612279565b610c87565b005b34801561059957600080fd5b506105b460048036038101906105af9190612555565b610f7c565b005b6105d060048036038101906105cb91906126ca565b610f95565b005b3480156105de57600080fd5b506105f960048036038101906105f4919061274d565b610fe6565b005b34801561060757600080fd5b50610622600480360381019061061d9190612279565b611053565b60405161062f9190612221565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a919061278d565b6110da565b60405161066c9190612176565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906123d6565b61116e565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612279565b6111f1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107525750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610768906127fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610794906127fc565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f682611290565b61082c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610874816112ef565b61087e83836113ec565b505050565b600b60009054906101000a900467ffffffffffffffff1681565b60006108a7611530565b6002546001540303905090565b6108bc611539565b80600a8190555050565b600c6020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461091c5761091b336112ef565b5b6109278484846115b7565b50505050565b610935611539565b600b60089054906101000a900460ff1615600b60086101000a81548160ff021916908315150217905550565b610969611539565b80600b60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e5576109e4336112ef565b5b6109f08484846118d9565b50505050565b60095481565b600b60089054906101000a900460ff1681565b6000610a1a826118f9565b9050919050565b610a29611539565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a719061285e565b60006040518083038185875af1925050503d8060008114610aae576040519150601f19603f3d011682016040523d82523d6000602084013e610ab3565b606091505b5050905080610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee906128bf565b60405180910390fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bba611539565b610bc460006119c5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b606060048054610c04906127fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c30906127fc565b8015610c7d5780601f10610c5257610100808354040283529160200191610c7d565b820191906000526020600020905b815481529060010190602001808311610c6057829003601f168201915b5050505050905090565b600b60089054906101000a900460ff16610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd9061292b565b60405180910390fd5b610cde611a89565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290612997565b60405180910390fd5b600b60009054906101000a900467ffffffffffffffff1667ffffffffffffffff1681600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db791906129e6565b1115610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90612a66565b60405180910390fd5b60095481610e0461089d565b610e0e91906129e6565b1115610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690612ad2565b60405180910390fd5b6000600a8203610e6357600a549050610e9e565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612b3e565b60405180910390fd5b80341015610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890612baa565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f3091906129e6565b92505081905550610f413383611a91565b7f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a8466582604051610f7091906123bb565b60405180910390a15050565b81610f86816112ef565b610f908383611c4d565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fd357610fd2336112ef565b5b610fdf85858585611d58565b5050505050565b610fee611539565b60095482610ffa61089d565b61100491906129e6565b1115611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612c16565b60405180910390fd5b61104f8183611dcb565b5050565b606061105e82611290565b61109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490612c82565b60405180910390fd5b6040518060400160405280601781526020017f68747470733a2f2f70696e2e736b692f3436354f6a68670000000000000000008152509050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611176611539565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612d14565b60405180910390fd5b6111ee816119c5565b50565b6111f9611539565b600954811061123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490612da6565b60405180910390fd5b61124561089d565b8111611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612e5e565b60405180910390fd5b8060098190555050565b60008161129b611530565b111580156112aa575060015482105b80156112e8575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611366929190612e7e565b602060405180830381865afa158015611383573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a79190612ebc565b6113e857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113df91906122e7565b60405180910390fd5b5b50565b60006113f782610a0f565b90508073ffffffffffffffffffffffffffffffffffffffff16611418611de9565b73ffffffffffffffffffffffffffffffffffffffff161461147b576114448161143f611de9565b6110da565b61147a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611541611a89565b73ffffffffffffffffffffffffffffffffffffffff1661155f610bc6565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612f35565b60405180910390fd5b565b60006115c2826118f9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611629576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061163584611df1565b9150915061164b8187611646611de9565b611e18565b611697576116608661165b611de9565b6110da565b611696576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036116fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61170a8686866001611e5c565b801561171557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117e3856117bf888887611e62565b7c020000000000000000000000000000000000000000000000000000000017611e8a565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118695760006001850190506000600560008381526020019081526020016000205403611867576001548114611866578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118d18686866001611eb5565b505050505050565b6118f483838360405180602001604052806000815250610f95565b505050565b60008082905080611908611530565b1161198e5760015481101561198d5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361198b575b60008103611981576005600083600190039350838152602001908152602001600020549050611957565b80925050506119c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000600154905060008203611ad2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611adf6000848385611e5c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b5683611b476000866000611e62565b611b5085611ebb565b17611e8a565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611bf757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611bbc565b5060008203611c32576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611c486000848385611eb5565b505050565b8060086000611c5a611de9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d07611de9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4c9190612176565b60405180910390a35050565b611d638484846108de565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dc557611d8e84848484611ecb565b611dc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611de582826040518060200160405280600081525061201b565b5050565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e798686846120b9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ef1611de9565b8786866040518563ffffffff1660e01b8152600401611f139493929190612faa565b6020604051808303816000875af1925050508015611f4f57506040513d601f19601f82011682018060405250810190611f4c919061300b565b60015b611fc8573d8060008114611f7f576040519150601f19603f3d011682016040523d82523d6000602084013e611f84565b606091505b506000815103611fc0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6120258383611a91565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120b45760006001549050600083820390505b6120666000868380600101945086611ecb565b61209c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120535781600154146120b157600080fd5b50505b505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61210b816120d6565b811461211657600080fd5b50565b60008135905061212881612102565b92915050565b600060208284031215612144576121436120cc565b5b600061215284828501612119565b91505092915050565b60008115159050919050565b6121708161215b565b82525050565b600060208201905061218b6000830184612167565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121cb5780820151818401526020810190506121b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006121f382612191565b6121fd818561219c565b935061220d8185602086016121ad565b612216816121d7565b840191505092915050565b6000602082019050818103600083015261223b81846121e8565b905092915050565b6000819050919050565b61225681612243565b811461226157600080fd5b50565b6000813590506122738161224d565b92915050565b60006020828403121561228f5761228e6120cc565b5b600061229d84828501612264565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122d1826122a6565b9050919050565b6122e1816122c6565b82525050565b60006020820190506122fc60008301846122d8565b92915050565b61230b816122c6565b811461231657600080fd5b50565b60008135905061232881612302565b92915050565b60008060408385031215612345576123446120cc565b5b600061235385828601612319565b925050602061236485828601612264565b9150509250929050565b600067ffffffffffffffff82169050919050565b61238b8161236e565b82525050565b60006020820190506123a66000830184612382565b92915050565b6123b581612243565b82525050565b60006020820190506123d060008301846123ac565b92915050565b6000602082840312156123ec576123eb6120cc565b5b60006123fa84828501612319565b91505092915050565b60008060006060848603121561241c5761241b6120cc565b5b600061242a86828701612319565b935050602061243b86828701612319565b925050604061244c86828701612264565b9150509250925092565b61245f8161236e565b811461246a57600080fd5b50565b60008135905061247c81612456565b92915050565b600060208284031215612498576124976120cc565b5b60006124a68482850161246d565b91505092915050565b6000819050919050565b60006124d46124cf6124ca846122a6565b6124af565b6122a6565b9050919050565b60006124e6826124b9565b9050919050565b60006124f8826124db565b9050919050565b612508816124ed565b82525050565b600060208201905061252360008301846124ff565b92915050565b6125328161215b565b811461253d57600080fd5b50565b60008135905061254f81612529565b92915050565b6000806040838503121561256c5761256b6120cc565b5b600061257a85828601612319565b925050602061258b85828601612540565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125d7826121d7565b810181811067ffffffffffffffff821117156125f6576125f561259f565b5b80604052505050565b60006126096120c2565b905061261582826125ce565b919050565b600067ffffffffffffffff8211156126355761263461259f565b5b61263e826121d7565b9050602081019050919050565b82818337600083830152505050565b600061266d6126688461261a565b6125ff565b9050828152602081018484840111156126895761268861259a565b5b61269484828561264b565b509392505050565b600082601f8301126126b1576126b0612595565b5b81356126c184826020860161265a565b91505092915050565b600080600080608085870312156126e4576126e36120cc565b5b60006126f287828801612319565b945050602061270387828801612319565b935050604061271487828801612264565b925050606085013567ffffffffffffffff811115612735576127346120d1565b5b6127418782880161269c565b91505092959194509250565b60008060408385031215612764576127636120cc565b5b600061277285828601612264565b925050602061278385828601612319565b9150509250929050565b600080604083850312156127a4576127a36120cc565b5b60006127b285828601612319565b92505060206127c385828601612319565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061281457607f821691505b602082108103612827576128266127cd565b5b50919050565b600081905092915050565b50565b600061284860008361282d565b915061285382612838565b600082019050919050565b60006128698261283b565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b60006128a9600f8361219c565b91506128b482612873565b602082019050919050565b600060208201905081810360008301526128d88161289c565b9050919050565b7f4d696e7420686173206e6f742073746172746564207965740000000000000000600082015250565b600061291560188361219c565b9150612920826128df565b602082019050919050565b6000602082019050818103600083015261294481612908565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000612981600c8361219c565b915061298c8261294b565b602082019050919050565b600060208201905081810360008301526129b081612974565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129f182612243565b91506129fc83612243565b9250828201905080821115612a1457612a136129b7565b5b92915050565b7f5065722077616c6c6574206c696d697420657863656564656400000000000000600082015250565b6000612a5060198361219c565b9150612a5b82612a1a565b602082019050919050565b60006020820190508181036000830152612a7f81612a43565b9050919050565b7f54696572203120737570706c7920657863656564656400000000000000000000600082015250565b6000612abc60168361219c565b9150612ac782612a86565b602082019050919050565b60006020820190508181036000830152612aeb81612aaf565b9050919050565b7f496e636f7272656374207175616e746974790000000000000000000000000000600082015250565b6000612b2860128361219c565b9150612b3382612af2565b602082019050919050565b60006020820190508181036000830152612b5781612b1b565b9050919050565b7f496e636f72726563742045544820616d6f756e74000000000000000000000000600082015250565b6000612b9460148361219c565b9150612b9f82612b5e565b602082019050919050565b60006020820190508181036000830152612bc381612b87565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612c0060138361219c565b9150612c0b82612bca565b602082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612c6c601f8361219c565b9150612c7782612c36565b602082019050919050565b60006020820190508181036000830152612c9b81612c5f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cfe60268361219c565b9150612d0982612ca2565b604082019050919050565b60006020820190508181036000830152612d2d81612cf1565b9050919050565b7f4e6577206d617820737570706c792073686f756c64206265206c6f776572207460008201527f68616e2063757272656e74206d617820737570706c7900000000000000000000602082015250565b6000612d9060368361219c565b9150612d9b82612d34565b604082019050919050565b60006020820190508181036000830152612dbf81612d83565b9050919050565b7f4e6577206d617820737570706c792073686f756c64206265206869676865722060008201527f7468616e2063757272656e74206e756d626572206f66206d696e74656420746f60208201527f6b656e7300000000000000000000000000000000000000000000000000000000604082015250565b6000612e4860448361219c565b9150612e5382612dc6565b606082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b6000604082019050612e9360008301856122d8565b612ea060208301846122d8565b9392505050565b600081519050612eb681612529565b92915050565b600060208284031215612ed257612ed16120cc565b5b6000612ee084828501612ea7565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f1f60208361219c565b9150612f2a82612ee9565b602082019050919050565b60006020820190508181036000830152612f4e81612f12565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f7c82612f55565b612f868185612f60565b9350612f968185602086016121ad565b612f9f816121d7565b840191505092915050565b6000608082019050612fbf60008301876122d8565b612fcc60208301866122d8565b612fd960408301856123ac565b8181036060830152612feb8184612f71565b905095945050505050565b60008151905061300581612102565b92915050565b600060208284031215613021576130206120cc565b5b600061302f84828501612ff6565b9150509291505056fea26469706673582212206df9f12615856624b43b75501db7a419a297bad11301dc75f4fa74daca02e7f564736f6c63430008120033
Deployed Bytecode Sourcemap
83492:3953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46814:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47716:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54207:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86563:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83751:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43467:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85491:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83861:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86761:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85395:91;;;;;;;;;;;;;:::i;:::-;;85288:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7735:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86974:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83599:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83828:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49109:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86167:179;;;;;;;;;;;;;:::i;:::-;;44651:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82614:103;;;;;;;;;;;;;:::i;:::-;;81973:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83641:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47892:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84093:744;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86354:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87195:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85920:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84845:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55156:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82872:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85608:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46814:639;46899:4;47238:10;47223:25;;:11;:25;;;;:102;;;;47315:10;47300:25;;:11;:25;;;;47223:102;:179;;;;47392:10;47377:25;;:11;:25;;;;47223:179;47203:199;;46814:639;;;:::o;47716:100::-;47770:13;47803:5;47796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47716:100;:::o;54207:218::-;54283:7;54308:16;54316:7;54308;:16::i;:::-;54303:64;;54333:34;;;;;;;;;;;;;;54303:64;54387:15;:24;54403:7;54387:24;;;;;;;;;;;:30;;;;;;;;;;;;54380:37;;54207:218;;;:::o;86563:190::-;86692:8;9517:30;9538:8;9517:20;:30::i;:::-;86713:32:::1;86727:8;86737:7;86713:13;:32::i;:::-;86563:190:::0;;;:::o;83751:34::-;;;;;;;;;;;;;:::o;43467:323::-;43528:7;43756:15;:13;:15::i;:::-;43741:12;;43725:13;;:28;:46;43718:53;;43467:323;:::o;85491:109::-;81859:13;:11;:13::i;:::-;85582:14:::1;85568:11;:28;;;;85491:109:::0;:::o;83861:41::-;;;;;;;;;;;;;;;;;:::o;86761:205::-;86904:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;86921:37:::1;86940:4;86946:2;86950:7;86921:18;:37::i;:::-;86761:205:::0;;;;:::o;85395:91::-;81859:13;:11;:13::i;:::-;85466:12:::1;;;;;;;;;;;85465:13;85450:12;;:28;;;;;;;;;;;;;;;;;;85395:91::o:0;85288:99::-;81859:13;:11;:13::i;:::-;85374:5:::1;85357:14;;:22;;;;;;;;;;;;;;;;;;85288:99:::0;:::o;7735:143::-;151:42;7735:143;:::o;86974:213::-;87121:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;87138:41:::1;87161:4;87167:2;87171:7;87138:22;:41::i;:::-;86974:213:::0;;;;:::o;83599:35::-;;;;:::o;83828:24::-;;;;;;;;;;;;;:::o;49109:152::-;49181:7;49224:27;49243:7;49224:18;:27::i;:::-;49201:52;;49109:152;;;:::o;86167:179::-;81859:13;:11;:13::i;:::-;86222:12:::1;86240:13;;;;;;;;;;;:18;;86266:21;86240:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86221:71;;;86311:7;86303:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;86210:136;86167:179::o:0;44651:233::-;44723:7;44764:1;44747:19;;:5;:19;;;44743:60;;44775:28;;;;;;;;;;;;;;44743:60;38810:13;44821:18;:25;44840:5;44821:25;;;;;;;;;;;;;;;;:55;44814:62;;44651:233;;;:::o;82614:103::-;81859:13;:11;:13::i;:::-;82679:30:::1;82706:1;82679:18;:30::i;:::-;82614:103::o:0;81973:87::-;82019:7;82046:6;;;;;;;;;;;82039:13;;81973:87;:::o;83641:41::-;;;;:::o;47892:104::-;47948:13;47981:7;47974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47892:104;:::o;84093:744::-;84161:12;;;;;;;;;;;84153:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;84235:12;:10;:12::i;:::-;84221:26;;:10;:26;;;84213:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;84316:14;;;;;;;;;;;84283:47;;84304:8;84283:6;:18;84290:10;84283:18;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;:47;;84275:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;84407:11;;84395:8;84379:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:39;;84371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;84465:21;84512:2;84500:8;:14;84497:134;;84547:11;;84531:27;;84497:134;;;84591:28;;;;;;;;;;:::i;:::-;;;;;;;;84497:134;84672:13;84659:9;:26;;84651:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;84753:8;84731:6;:18;84738:10;84731:18;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;84772:27;84778:10;84790:8;84772:5;:27::i;:::-;84815:14;84820:8;84815:14;;;;;;:::i;:::-;;;;;;;;84142:695;84093:744;:::o;86354:201::-;86483:8;9517:30;9538:8;9517:20;:30::i;:::-;86504:43:::1;86528:8;86538;86504:23;:43::i;:::-;86354:201:::0;;;:::o;87195:247::-;87370:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;87387:47:::1;87410:4;87416:2;87420:7;87429:4;87387:22;:47::i;:::-;87195:247:::0;;;;;:::o;85920:239::-;81859:13;:11;:13::i;:::-;86053:11:::1;;86041:8;86025:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:39;;86003:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;86122:29;86132:8;86142;86122:9;:29::i;:::-;85920:239:::0;;:::o;84845:326::-;84918:13;84952:16;84960:7;84952;:16::i;:::-;84944:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;85015:32;;;;;;;;;;;;;;;;;;;84845:326;;;:::o;55156:164::-;55253:4;55277:18;:25;55296:5;55277:25;;;;;;;;;;;;;;;:35;55303:8;55277:35;;;;;;;;;;;;;;;;;;;;;;;;;55270:42;;55156:164;;;;:::o;82872:201::-;81859:13;:11;:13::i;:::-;82981:1:::1;82961:22;;:8;:22;;::::0;82953:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;83037:28;83056:8;83037:18;:28::i;:::-;82872:201:::0;:::o;85608:304::-;81859:13;:11;:13::i;:::-;85690:11:::1;;85681:6;:20;85673:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;85788:13;:11;:13::i;:::-;85779:6;:22;85771:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85898:6;85884:11;:20;;;;85608:304:::0;:::o;55578:282::-;55643:4;55699:7;55680:15;:13;:15::i;:::-;:26;;:66;;;;;55733:13;;55723:7;:23;55680:66;:153;;;;;55832:1;39586:8;55784:17;:26;55802:7;55784:26;;;;;;;;;;;;:44;:49;55680:153;55660:173;;55578:282;;;:::o;9660:647::-;9899:1;151:42;9851:45;;;:49;9847:453;;;151:42;10150;;;10201:4;10208:8;10150:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10264:8;10245:28;;;;;;;;;;;:::i;:::-;;;;;;;;10145:144;9847:453;9660:647;:::o;53640:408::-;53729:13;53745:16;53753:7;53745;:16::i;:::-;53729:32;;53801:5;53778:28;;:19;:17;:19::i;:::-;:28;;;53774:175;;53826:44;53843:5;53850:19;:17;:19::i;:::-;53826:16;:44::i;:::-;53821:128;;53898:35;;;;;;;;;;;;;;53821:128;53774:175;53994:2;53961:15;:24;53977:7;53961:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;54032:7;54028:2;54012:28;;54021:5;54012:28;;;;;;;;;;;;53718:330;53640:408;;:::o;85179:101::-;85244:7;85271:1;85264:8;;85179:101;:::o;82138:132::-;82213:12;:10;:12::i;:::-;82202:23;;:7;:5;:7::i;:::-;:23;;;82194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82138:132::o;57846:2825::-;57988:27;58018;58037:7;58018:18;:27::i;:::-;57988:57;;58103:4;58062:45;;58078:19;58062:45;;;58058:86;;58116:28;;;;;;;;;;;;;;58058:86;58158:27;58187:23;58214:35;58241:7;58214:26;:35::i;:::-;58157:92;;;;58349:68;58374:15;58391:4;58397:19;:17;:19::i;:::-;58349:24;:68::i;:::-;58344:180;;58437:43;58454:4;58460:19;:17;:19::i;:::-;58437:16;:43::i;:::-;58432:92;;58489:35;;;;;;;;;;;;;;58432:92;58344:180;58555:1;58541:16;;:2;:16;;;58537:52;;58566:23;;;;;;;;;;;;;;58537:52;58602:43;58624:4;58630:2;58634:7;58643:1;58602:21;:43::i;:::-;58738:15;58735:160;;;58878:1;58857:19;58850:30;58735:160;59275:18;:24;59294:4;59275:24;;;;;;;;;;;;;;;;59273:26;;;;;;;;;;;;59344:18;:22;59363:2;59344:22;;;;;;;;;;;;;;;;59342:24;;;;;;;;;;;59666:146;59703:2;59752:45;59767:4;59773:2;59777:19;59752:14;:45::i;:::-;39866:8;59724:73;59666:18;:146::i;:::-;59637:17;:26;59655:7;59637:26;;;;;;;;;;;:175;;;;59983:1;39866:8;59932:19;:47;:52;59928:627;;60005:19;60037:1;60027:7;:11;60005:33;;60194:1;60160:17;:30;60178:11;60160:30;;;;;;;;;;;;:35;60156:384;;60298:13;;60283:11;:28;60279:242;;60478:19;60445:17;:30;60463:11;60445:30;;;;;;;;;;;:52;;;;60279:242;60156:384;59986:569;59928:627;60602:7;60598:2;60583:27;;60592:4;60583:27;;;;;;;;;;;;60621:42;60642:4;60648:2;60652:7;60661:1;60621:20;:42::i;:::-;57977:2694;;;57846:2825;;;:::o;60767:193::-;60913:39;60930:4;60936:2;60940:7;60913:39;;;;;;;;;;;;:16;:39::i;:::-;60767:193;;;:::o;50264:1275::-;50331:7;50351:12;50366:7;50351:22;;50434:4;50415:15;:13;:15::i;:::-;:23;50411:1061;;50468:13;;50461:4;:20;50457:1015;;;50506:14;50523:17;:23;50541:4;50523:23;;;;;;;;;;;;50506:40;;50640:1;39586:8;50612:6;:24;:29;50608:845;;51277:113;51294:1;51284:6;:11;51277:113;;51337:17;:25;51355:6;;;;;;;51337:25;;;;;;;;;;;;51328:34;;51277:113;;;51423:6;51416:13;;;;;;50608:845;50483:989;50457:1015;50411:1061;51500:31;;;;;;;;;;;;;;50264:1275;;;;:::o;83233:191::-;83307:16;83326:6;;;;;;;;;;;83307:25;;83352:8;83343:6;;:17;;;;;;;;;;;;;;;;;;83407:8;83376:40;;83397:8;83376:40;;;;;;;;;;;;83296:128;83233:191;:::o;80524:98::-;80577:7;80604:10;80597:17;;80524:98;:::o;65227:2966::-;65300:20;65323:13;;65300:36;;65363:1;65351:8;:13;65347:44;;65373:18;;;;;;;;;;;;;;65347:44;65404:61;65434:1;65438:2;65442:12;65456:8;65404:21;:61::i;:::-;65948:1;38948:2;65918:1;:26;;65917:32;65905:8;:45;65879:18;:22;65898:2;65879:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;66227:139;66264:2;66318:33;66341:1;66345:2;66349:1;66318:14;:33::i;:::-;66285:30;66306:8;66285:20;:30::i;:::-;:66;66227:18;:139::i;:::-;66193:17;:31;66211:12;66193:31;;;;;;;;;;;:173;;;;66383:16;66414:11;66443:8;66428:12;:23;66414:37;;66964:16;66960:2;66956:25;66944:37;;67336:12;67296:8;67255:1;67193:25;67134:1;67073;67046:335;67707:1;67693:12;67689:20;67647:346;67748:3;67739:7;67736:16;67647:346;;67966:7;67956:8;67953:1;67926:25;67923:1;67920;67915:59;67801:1;67792:7;67788:15;67777:26;;67647:346;;;67651:77;68038:1;68026:8;:13;68022:45;;68048:19;;;;;;;;;;;;;;68022:45;68100:3;68084:13;:19;;;;65653:2462;;68125:60;68154:1;68158:2;68162:12;68176:8;68125:20;:60::i;:::-;65289:2904;65227:2966;;:::o;54765:234::-;54912:8;54860:18;:39;54879:19;:17;:19::i;:::-;54860:39;;;;;;;;;;;;;;;:49;54900:8;54860:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54972:8;54936:55;;54951:19;:17;:19::i;:::-;54936:55;;;54982:8;54936:55;;;;;;:::i;:::-;;;;;;;;54765:234;;:::o;61558:407::-;61733:31;61746:4;61752:2;61756:7;61733:12;:31::i;:::-;61797:1;61779:2;:14;;;:19;61775:183;;61818:56;61849:4;61855:2;61859:7;61868:5;61818:30;:56::i;:::-;61813:145;;61902:40;;;;;;;;;;;;;;61813:145;61775:183;61558:407;;;;:::o;71718:112::-;71795:27;71805:2;71809:8;71795:27;;;;;;;;;;;;:9;:27::i;:::-;71718:112;;:::o;77886:105::-;77946:7;77973:10;77966:17;;77886:105;:::o;56741:485::-;56843:27;56872:23;56913:38;56954:15;:24;56970:7;56954:24;;;;;;;;;;;56913:65;;57131:18;57108:41;;57188:19;57182:26;57163:45;;57093:126;56741:485;;;:::o;55969:659::-;56118:11;56283:16;56276:5;56272:28;56263:37;;56443:16;56432:9;56428:32;56415:45;;56593:15;56582:9;56579:30;56571:5;56560:9;56557:20;56554:56;56544:66;;55969:659;;;;;:::o;62627:159::-;;;;;:::o;77195:311::-;77330:7;77350:16;39990:3;77376:19;:41;;77350:68;;39990:3;77444:31;77455:4;77461:2;77465:9;77444:10;:31::i;:::-;77436:40;;:62;;77429:69;;;77195:311;;;;;:::o;52087:450::-;52167:14;52335:16;52328:5;52324:28;52315:37;;52512:5;52498:11;52473:23;52469:41;52466:52;52459:5;52456:63;52446:73;;52087:450;;;;:::o;63451:158::-;;;;;:::o;52639:324::-;52709:14;52942:1;52932:8;52929:15;52903:24;52899:46;52889:56;;52639:324;;;:::o;64049:716::-;64212:4;64258:2;64233:45;;;64279:19;:17;:19::i;:::-;64300:4;64306:7;64315:5;64233:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64229:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64533:1;64516:6;:13;:18;64512:235;;64562:40;;;;;;;;;;;;;;64512:235;64705:6;64699:13;64690:6;64686:2;64682:15;64675:38;64229:529;64402:54;;;64392:64;;;:6;:64;;;;64385:71;;;64049:716;;;;;;:::o;70945:689::-;71076:19;71082:2;71086:8;71076:5;:19::i;:::-;71155:1;71137:2;:14;;;:19;71133:483;;71177:11;71191:13;;71177:27;;71223:13;71245:8;71239:3;:14;71223:30;;71272:233;71303:62;71342:1;71346:2;71350:7;;;;;;71359:5;71303:30;:62::i;:::-;71298:167;;71401:40;;;;;;;;;;;;;;71298:167;71500:3;71492:5;:11;71272:233;;71587:3;71570:13;;:20;71566:34;;71592:8;;;71566:34;71158:458;;71133:483;70945:689;;;:::o;76896:147::-;77033:6;76896:147;;;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:101::-;4926:7;4966:18;4959:5;4955:30;4944:41;;4890:101;;;:::o;4997:115::-;5082:23;5099:5;5082:23;:::i;:::-;5077:3;5070:36;4997:115;;:::o;5118:218::-;5209:4;5247:2;5236:9;5232:18;5224:26;;5260:69;5326:1;5315:9;5311:17;5302:6;5260:69;:::i;:::-;5118:218;;;;:::o;5342:118::-;5429:24;5447:5;5429:24;:::i;:::-;5424:3;5417:37;5342:118;;:::o;5466:222::-;5559:4;5597:2;5586:9;5582:18;5574:26;;5610:71;5678:1;5667:9;5663:17;5654:6;5610:71;:::i;:::-;5466:222;;;;:::o;5694:329::-;5753:6;5802:2;5790:9;5781:7;5777:23;5773:32;5770:119;;;5808:79;;:::i;:::-;5770:119;5928:1;5953:53;5998:7;5989:6;5978:9;5974:22;5953:53;:::i;:::-;5943:63;;5899:117;5694:329;;;;:::o;6029:619::-;6106:6;6114;6122;6171:2;6159:9;6150:7;6146:23;6142:32;6139:119;;;6177:79;;:::i;:::-;6139:119;6297:1;6322:53;6367:7;6358:6;6347:9;6343:22;6322:53;:::i;:::-;6312:63;;6268:117;6424:2;6450:53;6495:7;6486:6;6475:9;6471:22;6450:53;:::i;:::-;6440:63;;6395:118;6552:2;6578:53;6623:7;6614:6;6603:9;6599:22;6578:53;:::i;:::-;6568:63;;6523:118;6029:619;;;;;:::o;6654:120::-;6726:23;6743:5;6726:23;:::i;:::-;6719:5;6716:34;6706:62;;6764:1;6761;6754:12;6706:62;6654:120;:::o;6780:137::-;6825:5;6863:6;6850:20;6841:29;;6879:32;6905:5;6879:32;:::i;:::-;6780:137;;;;:::o;6923:327::-;6981:6;7030:2;7018:9;7009:7;7005:23;7001:32;6998:119;;;7036:79;;:::i;:::-;6998:119;7156:1;7181:52;7225:7;7216:6;7205:9;7201:22;7181:52;:::i;:::-;7171:62;;7127:116;6923:327;;;;:::o;7256:60::-;7284:3;7305:5;7298:12;;7256:60;;;:::o;7322:142::-;7372:9;7405:53;7423:34;7432:24;7450:5;7432:24;:::i;:::-;7423:34;:::i;:::-;7405:53;:::i;:::-;7392:66;;7322:142;;;:::o;7470:126::-;7520:9;7553:37;7584:5;7553:37;:::i;:::-;7540:50;;7470:126;;;:::o;7602:157::-;7683:9;7716:37;7747:5;7716:37;:::i;:::-;7703:50;;7602:157;;;:::o;7765:193::-;7883:68;7945:5;7883:68;:::i;:::-;7878:3;7871:81;7765:193;;:::o;7964:284::-;8088:4;8126:2;8115:9;8111:18;8103:26;;8139:102;8238:1;8227:9;8223:17;8214:6;8139:102;:::i;:::-;7964:284;;;;:::o;8254:116::-;8324:21;8339:5;8324:21;:::i;:::-;8317:5;8314:32;8304:60;;8360:1;8357;8350:12;8304:60;8254:116;:::o;8376:133::-;8419:5;8457:6;8444:20;8435:29;;8473:30;8497:5;8473:30;:::i;:::-;8376:133;;;;:::o;8515:468::-;8580:6;8588;8637:2;8625:9;8616:7;8612:23;8608:32;8605:119;;;8643:79;;:::i;:::-;8605:119;8763:1;8788:53;8833:7;8824:6;8813:9;8809:22;8788:53;:::i;:::-;8778:63;;8734:117;8890:2;8916:50;8958:7;8949:6;8938:9;8934:22;8916:50;:::i;:::-;8906:60;;8861:115;8515:468;;;;;:::o;8989:117::-;9098:1;9095;9088:12;9112:117;9221:1;9218;9211:12;9235:180;9283:77;9280:1;9273:88;9380:4;9377:1;9370:15;9404:4;9401:1;9394:15;9421:281;9504:27;9526:4;9504:27;:::i;:::-;9496:6;9492:40;9634:6;9622:10;9619:22;9598:18;9586:10;9583:34;9580:62;9577:88;;;9645:18;;:::i;:::-;9577:88;9685:10;9681:2;9674:22;9464:238;9421:281;;:::o;9708:129::-;9742:6;9769:20;;:::i;:::-;9759:30;;9798:33;9826:4;9818:6;9798:33;:::i;:::-;9708:129;;;:::o;9843:307::-;9904:4;9994:18;9986:6;9983:30;9980:56;;;10016:18;;:::i;:::-;9980:56;10054:29;10076:6;10054:29;:::i;:::-;10046:37;;10138:4;10132;10128:15;10120:23;;9843:307;;;:::o;10156:146::-;10253:6;10248:3;10243;10230:30;10294:1;10285:6;10280:3;10276:16;10269:27;10156:146;;;:::o;10308:423::-;10385:5;10410:65;10426:48;10467:6;10426:48;:::i;:::-;10410:65;:::i;:::-;10401:74;;10498:6;10491:5;10484:21;10536:4;10529:5;10525:16;10574:3;10565:6;10560:3;10556:16;10553:25;10550:112;;;10581:79;;:::i;:::-;10550:112;10671:54;10718:6;10713:3;10708;10671:54;:::i;:::-;10391:340;10308:423;;;;;:::o;10750:338::-;10805:5;10854:3;10847:4;10839:6;10835:17;10831:27;10821:122;;10862:79;;:::i;:::-;10821:122;10979:6;10966:20;11004:78;11078:3;11070:6;11063:4;11055:6;11051:17;11004:78;:::i;:::-;10995:87;;10811:277;10750:338;;;;:::o;11094:943::-;11189:6;11197;11205;11213;11262:3;11250:9;11241:7;11237:23;11233:33;11230:120;;;11269:79;;:::i;:::-;11230:120;11389:1;11414:53;11459:7;11450:6;11439:9;11435:22;11414:53;:::i;:::-;11404:63;;11360:117;11516:2;11542:53;11587:7;11578:6;11567:9;11563:22;11542:53;:::i;:::-;11532:63;;11487:118;11644:2;11670:53;11715:7;11706:6;11695:9;11691:22;11670:53;:::i;:::-;11660:63;;11615:118;11800:2;11789:9;11785:18;11772:32;11831:18;11823:6;11820:30;11817:117;;;11853:79;;:::i;:::-;11817:117;11958:62;12012:7;12003:6;11992:9;11988:22;11958:62;:::i;:::-;11948:72;;11743:287;11094:943;;;;;;;:::o;12043:474::-;12111:6;12119;12168:2;12156:9;12147:7;12143:23;12139:32;12136:119;;;12174:79;;:::i;:::-;12136:119;12294:1;12319:53;12364:7;12355:6;12344:9;12340:22;12319:53;:::i;:::-;12309:63;;12265:117;12421:2;12447:53;12492:7;12483:6;12472:9;12468:22;12447:53;:::i;:::-;12437:63;;12392:118;12043:474;;;;;:::o;12523:::-;12591:6;12599;12648:2;12636:9;12627:7;12623:23;12619:32;12616:119;;;12654:79;;:::i;:::-;12616:119;12774:1;12799:53;12844:7;12835:6;12824:9;12820:22;12799:53;:::i;:::-;12789:63;;12745:117;12901:2;12927:53;12972:7;12963:6;12952:9;12948:22;12927:53;:::i;:::-;12917:63;;12872:118;12523:474;;;;;:::o;13003:180::-;13051:77;13048:1;13041:88;13148:4;13145:1;13138:15;13172:4;13169:1;13162:15;13189:320;13233:6;13270:1;13264:4;13260:12;13250:22;;13317:1;13311:4;13307:12;13338:18;13328:81;;13394:4;13386:6;13382:17;13372:27;;13328:81;13456:2;13448:6;13445:14;13425:18;13422:38;13419:84;;13475:18;;:::i;:::-;13419:84;13240:269;13189:320;;;:::o;13515:147::-;13616:11;13653:3;13638:18;;13515:147;;;;:::o;13668:114::-;;:::o;13788:398::-;13947:3;13968:83;14049:1;14044:3;13968:83;:::i;:::-;13961:90;;14060:93;14149:3;14060:93;:::i;:::-;14178:1;14173:3;14169:11;14162:18;;13788:398;;;:::o;14192:379::-;14376:3;14398:147;14541:3;14398:147;:::i;:::-;14391:154;;14562:3;14555:10;;14192:379;;;:::o;14577:165::-;14717:17;14713:1;14705:6;14701:14;14694:41;14577:165;:::o;14748:366::-;14890:3;14911:67;14975:2;14970:3;14911:67;:::i;:::-;14904:74;;14987:93;15076:3;14987:93;:::i;:::-;15105:2;15100:3;15096:12;15089:19;;14748:366;;;:::o;15120:419::-;15286:4;15324:2;15313:9;15309:18;15301:26;;15373:9;15367:4;15363:20;15359:1;15348:9;15344:17;15337:47;15401:131;15527:4;15401:131;:::i;:::-;15393:139;;15120:419;;;:::o;15545:174::-;15685:26;15681:1;15673:6;15669:14;15662:50;15545:174;:::o;15725:366::-;15867:3;15888:67;15952:2;15947:3;15888:67;:::i;:::-;15881:74;;15964:93;16053:3;15964:93;:::i;:::-;16082:2;16077:3;16073:12;16066:19;;15725:366;;;:::o;16097:419::-;16263:4;16301:2;16290:9;16286:18;16278:26;;16350:9;16344:4;16340:20;16336:1;16325:9;16321:17;16314:47;16378:131;16504:4;16378:131;:::i;:::-;16370:139;;16097:419;;;:::o;16522:162::-;16662:14;16658:1;16650:6;16646:14;16639:38;16522:162;:::o;16690:366::-;16832:3;16853:67;16917:2;16912:3;16853:67;:::i;:::-;16846:74;;16929:93;17018:3;16929:93;:::i;:::-;17047:2;17042:3;17038:12;17031:19;;16690:366;;;:::o;17062:419::-;17228:4;17266:2;17255:9;17251:18;17243:26;;17315:9;17309:4;17305:20;17301:1;17290:9;17286:17;17279:47;17343:131;17469:4;17343:131;:::i;:::-;17335:139;;17062:419;;;:::o;17487:180::-;17535:77;17532:1;17525:88;17632:4;17629:1;17622:15;17656:4;17653:1;17646:15;17673:191;17713:3;17732:20;17750:1;17732:20;:::i;:::-;17727:25;;17766:20;17784:1;17766:20;:::i;:::-;17761:25;;17809:1;17806;17802:9;17795:16;;17830:3;17827:1;17824:10;17821:36;;;17837:18;;:::i;:::-;17821:36;17673:191;;;;:::o;17870:175::-;18010:27;18006:1;17998:6;17994:14;17987:51;17870:175;:::o;18051:366::-;18193:3;18214:67;18278:2;18273:3;18214:67;:::i;:::-;18207:74;;18290:93;18379:3;18290:93;:::i;:::-;18408:2;18403:3;18399:12;18392:19;;18051:366;;;:::o;18423:419::-;18589:4;18627:2;18616:9;18612:18;18604:26;;18676:9;18670:4;18666:20;18662:1;18651:9;18647:17;18640:47;18704:131;18830:4;18704:131;:::i;:::-;18696:139;;18423:419;;;:::o;18848:172::-;18988:24;18984:1;18976:6;18972:14;18965:48;18848:172;:::o;19026:366::-;19168:3;19189:67;19253:2;19248:3;19189:67;:::i;:::-;19182:74;;19265:93;19354:3;19265:93;:::i;:::-;19383:2;19378:3;19374:12;19367:19;;19026:366;;;:::o;19398:419::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19651:9;19645:4;19641:20;19637:1;19626:9;19622:17;19615:47;19679:131;19805:4;19679:131;:::i;:::-;19671:139;;19398:419;;;:::o;19823:168::-;19963:20;19959:1;19951:6;19947:14;19940:44;19823:168;:::o;19997:366::-;20139:3;20160:67;20224:2;20219:3;20160:67;:::i;:::-;20153:74;;20236:93;20325:3;20236:93;:::i;:::-;20354:2;20349:3;20345:12;20338:19;;19997:366;;;:::o;20369:419::-;20535:4;20573:2;20562:9;20558:18;20550:26;;20622:9;20616:4;20612:20;20608:1;20597:9;20593:17;20586:47;20650:131;20776:4;20650:131;:::i;:::-;20642:139;;20369:419;;;:::o;20794:170::-;20934:22;20930:1;20922:6;20918:14;20911:46;20794:170;:::o;20970:366::-;21112:3;21133:67;21197:2;21192:3;21133:67;:::i;:::-;21126:74;;21209:93;21298:3;21209:93;:::i;:::-;21327:2;21322:3;21318:12;21311:19;;20970:366;;;:::o;21342:419::-;21508:4;21546:2;21535:9;21531:18;21523:26;;21595:9;21589:4;21585:20;21581:1;21570:9;21566:17;21559:47;21623:131;21749:4;21623:131;:::i;:::-;21615:139;;21342:419;;;:::o;21767:169::-;21907:21;21903:1;21895:6;21891:14;21884:45;21767:169;:::o;21942:366::-;22084:3;22105:67;22169:2;22164:3;22105:67;:::i;:::-;22098:74;;22181:93;22270:3;22181:93;:::i;:::-;22299:2;22294:3;22290:12;22283:19;;21942:366;;;:::o;22314:419::-;22480:4;22518:2;22507:9;22503:18;22495:26;;22567:9;22561:4;22557:20;22553:1;22542:9;22538:17;22531:47;22595:131;22721:4;22595:131;:::i;:::-;22587:139;;22314:419;;;:::o;22739:181::-;22879:33;22875:1;22867:6;22863:14;22856:57;22739:181;:::o;22926:366::-;23068:3;23089:67;23153:2;23148:3;23089:67;:::i;:::-;23082:74;;23165:93;23254:3;23165:93;:::i;:::-;23283:2;23278:3;23274:12;23267:19;;22926:366;;;:::o;23298:419::-;23464:4;23502:2;23491:9;23487:18;23479:26;;23551:9;23545:4;23541:20;23537:1;23526:9;23522:17;23515:47;23579:131;23705:4;23579:131;:::i;:::-;23571:139;;23298:419;;;:::o;23723:225::-;23863:34;23859:1;23851:6;23847:14;23840:58;23932:8;23927:2;23919:6;23915:15;23908:33;23723:225;:::o;23954:366::-;24096:3;24117:67;24181:2;24176:3;24117:67;:::i;:::-;24110:74;;24193:93;24282:3;24193:93;:::i;:::-;24311:2;24306:3;24302:12;24295:19;;23954:366;;;:::o;24326:419::-;24492:4;24530:2;24519:9;24515:18;24507:26;;24579:9;24573:4;24569:20;24565:1;24554:9;24550:17;24543:47;24607:131;24733:4;24607:131;:::i;:::-;24599:139;;24326:419;;;:::o;24751:241::-;24891:34;24887:1;24879:6;24875:14;24868:58;24960:24;24955:2;24947:6;24943:15;24936:49;24751:241;:::o;24998:366::-;25140:3;25161:67;25225:2;25220:3;25161:67;:::i;:::-;25154:74;;25237:93;25326:3;25237:93;:::i;:::-;25355:2;25350:3;25346:12;25339:19;;24998:366;;;:::o;25370:419::-;25536:4;25574:2;25563:9;25559:18;25551:26;;25623:9;25617:4;25613:20;25609:1;25598:9;25594:17;25587:47;25651:131;25777:4;25651:131;:::i;:::-;25643:139;;25370:419;;;:::o;25795:292::-;25935:34;25931:1;25923:6;25919:14;25912:58;26004:34;25999:2;25991:6;25987:15;25980:59;26073:6;26068:2;26060:6;26056:15;26049:31;25795:292;:::o;26093:366::-;26235:3;26256:67;26320:2;26315:3;26256:67;:::i;:::-;26249:74;;26332:93;26421:3;26332:93;:::i;:::-;26450:2;26445:3;26441:12;26434:19;;26093:366;;;:::o;26465:419::-;26631:4;26669:2;26658:9;26654:18;26646:26;;26718:9;26712:4;26708:20;26704:1;26693:9;26689:17;26682:47;26746:131;26872:4;26746:131;:::i;:::-;26738:139;;26465:419;;;:::o;26890:332::-;27011:4;27049:2;27038:9;27034:18;27026:26;;27062:71;27130:1;27119:9;27115:17;27106:6;27062:71;:::i;:::-;27143:72;27211:2;27200:9;27196:18;27187:6;27143:72;:::i;:::-;26890:332;;;;;:::o;27228:137::-;27282:5;27313:6;27307:13;27298:22;;27329:30;27353:5;27329:30;:::i;:::-;27228:137;;;;:::o;27371:345::-;27438:6;27487:2;27475:9;27466:7;27462:23;27458:32;27455:119;;;27493:79;;:::i;:::-;27455:119;27613:1;27638:61;27691:7;27682:6;27671:9;27667:22;27638:61;:::i;:::-;27628:71;;27584:125;27371:345;;;;:::o;27722:182::-;27862:34;27858:1;27850:6;27846:14;27839:58;27722:182;:::o;27910:366::-;28052:3;28073:67;28137:2;28132:3;28073:67;:::i;:::-;28066:74;;28149:93;28238:3;28149:93;:::i;:::-;28267:2;28262:3;28258:12;28251:19;;27910:366;;;:::o;28282:419::-;28448:4;28486:2;28475:9;28471:18;28463:26;;28535:9;28529:4;28525:20;28521:1;28510:9;28506:17;28499:47;28563:131;28689:4;28563:131;:::i;:::-;28555:139;;28282:419;;;:::o;28707:98::-;28758:6;28792:5;28786:12;28776:22;;28707:98;;;:::o;28811:168::-;28894:11;28928:6;28923:3;28916:19;28968:4;28963:3;28959:14;28944:29;;28811:168;;;;:::o;28985:373::-;29071:3;29099:38;29131:5;29099:38;:::i;:::-;29153:70;29216:6;29211:3;29153:70;:::i;:::-;29146:77;;29232:65;29290:6;29285:3;29278:4;29271:5;29267:16;29232:65;:::i;:::-;29322:29;29344:6;29322:29;:::i;:::-;29317:3;29313:39;29306:46;;29075:283;28985:373;;;;:::o;29364:640::-;29559:4;29597:3;29586:9;29582:19;29574:27;;29611:71;29679:1;29668:9;29664:17;29655:6;29611:71;:::i;:::-;29692:72;29760:2;29749:9;29745:18;29736:6;29692:72;:::i;:::-;29774;29842:2;29831:9;29827:18;29818:6;29774:72;:::i;:::-;29893:9;29887:4;29883:20;29878:2;29867:9;29863:18;29856:48;29921:76;29992:4;29983:6;29921:76;:::i;:::-;29913:84;;29364:640;;;;;;;:::o;30010:141::-;30066:5;30097:6;30091:13;30082:22;;30113:32;30139:5;30113:32;:::i;:::-;30010:141;;;;:::o;30157:349::-;30226:6;30275:2;30263:9;30254:7;30250:23;30246:32;30243:119;;;30281:79;;:::i;:::-;30243:119;30401:1;30426:63;30481:7;30472:6;30461:9;30457:22;30426:63;:::i;:::-;30416:73;;30372:127;30157:349;;;;:::o
Swarm Source
ipfs://6df9f12615856624b43b75501db7a419a297bad11301dc75f4fa74daca02e7f5
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.