ERC-721
Overview
Max Total Supply
19 MP
Holders
14
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MoonPotatoz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-22 */ // Moon Potatoz. // 1 Free / wallet. // Want more? 0.002eth per additional Potatoz. // 5/tx. // Paper potatoz will get burned. // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 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 virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/MoonPotatoz.sol pragma solidity ^0.8.4; contract MoonPotatoz is ERC721A, Ownable { using Strings for uint256; using ECDSA for bytes32; address signer; error InvalidSignarure(); uint256 MAX_SUPPLY = 3333; uint256 MAX_PER_TRANSACTION = 5; uint256 MINT_PRICE = 0 ether; uint256 PAID_PRICE = 0.002 ether; string public hiddenMetadataUri = "https://gateway.pinata.cloud/ipfs/QmUVmyFS9ARA9WmQrFq5yco4TfRdfi9xWqH8ezVBpkDN9N"; string tokenBaseUri = ""; bool public paused = false; bool public revealed = false; mapping(address => uint256) private _freeMintedCount; constructor() ERC721A("Moon Potatoz", "MP") {} function mint(uint256 _quantity) external payable { require(!paused, "Minting paused"); uint256 _totalSupply = totalSupply(); require(_totalSupply + _quantity < MAX_SUPPLY + 1, "No more Potatoz"); require(_quantity < MAX_PER_TRANSACTION + 1, "Max per transaction is 5"); uint256 payCount = _quantity; uint256 freeMintCount = _freeMintedCount[msg.sender]; if (freeMintCount < 1) { if (_quantity > 1) { payCount = _quantity - 1; } else { payCount = 0; } _freeMintedCount[msg.sender] = 1; } require( msg.value == payCount * PAID_PRICE, "INCORRECT ETH AMOUNT" ); _mint(msg.sender, _quantity); } function freeMintedCount(address owner) external view returns (uint256) { return _freeMintedCount[owner]; } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return tokenBaseUri; } function setBaseURI(string calldata _newBaseUri) external onlyOwner { tokenBaseUri = _newBaseUri; } function flipSale() external onlyOwner { paused = !paused; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ''; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function burn( uint256 tokenId, uint8 v, bytes32 r, bytes32 s ) external { if (keccak256(abi.encodePacked(msg.sender, tokenId)).toEthSignedMessageHash().recover(v, r, s) != signer) { revert InvalidSignarure(); } _burn(tokenId); } function batchBurn(uint256[] memory tokenids) external onlyOwner { uint256 len = tokenids.length; for (uint256 i; i < len; i++) { uint256 tokenid = tokenids[i]; _burn(tokenid); } } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidSignarure","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610d05600a556005600b556000600c5566071afd498d0000600d5560405180608001604052806050815260200162003e7b60509139600e90805190602001906200005092919062000270565b5060405180602001604052806000815250600f90805190602001906200007892919062000270565b506000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000bc57600080fd5b506040518060400160405280600c81526020017f4d6f6f6e20506f7461746f7a00000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d5000000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014192919062000270565b5080600390805190602001906200015a92919062000270565b506200016b6200019960201b60201c565b60008190555050506200019362000187620001a260201b60201c565b620001aa60201b60201c565b62000385565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027e9062000320565b90600052602060002090601f016020900481019282620002a25760008555620002ee565b82601f10620002bd57805160ff1916838001178555620002ee565b82800160010185558215620002ee579182015b82811115620002ed578251825591602001919060010190620002d0565b5b509050620002fd919062000301565b5090565b5b808211156200031c57600081600090555060010162000302565b5090565b600060028204905060018216806200033957607f821691505b6020821081141562000350576200034f62000356565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ae680620003956000396000f3fe6080604052600436106101b75760003560e01c80637ba5e621116100ec578063b88d4fde1161008a578063e0a8085311610064578063e0a80853146105d7578063e985e9c514610600578063f2fde38b1461063d578063fcc82dc214610666576101b7565b8063b88d4fde14610548578063c87b56dd14610571578063dc8e92ea146105ae576101b7565b806398133235116100c6578063981332351461049b578063a0712d68146104d8578063a22cb465146104f4578063a45ba8e71461051d576101b7565b80637ba5e6211461042e5780638da5cb5b1461044557806395d89b4114610470576101b7565b806342842e0e116101595780635c975abb116101335780635c975abb146103725780636352211e1461039d57806370a08231146103da578063715018a614610417576101b7565b806342842e0e146102f5578063518302271461031e57806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612b07565b61068f565b6040516101f0919061305c565b60405180910390f35b34801561020557600080fd5b5061020e610721565b60405161021b91906130bc565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612bae565b6107b3565b6040516102589190612ff5565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a51565b610832565b005b34801561029657600080fd5b5061029f610976565b6040516102ac919061323e565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061293b565b61098d565b005b3480156102ea57600080fd5b506102f3610cb2565b005b34801561030157600080fd5b5061031c6004803603810190610317919061293b565b610d3a565b005b34801561032a57600080fd5b50610333610d5a565b604051610340919061305c565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612b61565b610d6d565b005b34801561037e57600080fd5b50610387610d8b565b604051610394919061305c565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612bae565b610d9e565b6040516103d19190612ff5565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906128ce565b610db0565b60405161040e919061323e565b60405180910390f35b34801561042357600080fd5b5061042c610e69565b005b34801561043a57600080fd5b50610443610e7d565b005b34801561045157600080fd5b5061045a610eb1565b6040516104679190612ff5565b60405180910390f35b34801561047c57600080fd5b50610485610edb565b60405161049291906130bc565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd91906128ce565b610f6d565b6040516104cf919061323e565b60405180910390f35b6104f260048036038101906104ed9190612bae565b610fb6565b005b34801561050057600080fd5b5061051b60048036038101906105169190612a11565b6111d6565b005b34801561052957600080fd5b5061053261134e565b60405161053f91906130bc565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a919061298e565b6113dc565b005b34801561057d57600080fd5b5061059860048036038101906105939190612bae565b61144f565b6040516105a591906130bc565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612a91565b6115a5565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612ada565b6115ff565b005b34801561060c57600080fd5b50610627600480360381019061062291906128fb565b611624565b604051610634919061305c565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906128ce565b6116b8565b005b34801561067257600080fd5b5061068d60048036038101906106889190612bdb565b61173c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107309061350b565b80601f016020809104026020016040519081016040528092919081815260200182805461075c9061350b565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be82611818565b6107f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82610d9e565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e611877565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a81610885611877565b611624565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061098061187f565b6001546000540303905090565b600061099882611888565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109ff576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0b84611956565b91509150610a218187610a1c611877565b61197d565b610a6d57610a3686610a31611877565b611624565b610a6c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae186868660016119c1565b8015610aec57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bba85610b968888876119c7565b7c0200000000000000000000000000000000000000000000000000000000176119ef565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c42576000600185019050600060046000838152602001908152602001600020541415610c40576000548114610c3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610caa8686866001611a1a565b505050505050565b610cba611a20565b6000610cc4610eb1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ce790612fe0565b60006040518083038185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d3757600080fd5b50565b610d55838383604051806020016040528060008152506113dc565b505050565b601060019054906101000a900460ff1681565b610d75611a20565b8181600f9190610d86929190612634565b505050565b601060009054906101000a900460ff1681565b6000610da982611888565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e71611a20565b610e7b6000611a9e565b565b610e85611a20565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eea9061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f169061350b565b8015610f635780601f10610f3857610100808354040283529160200191610f63565b820191906000526020600020905b815481529060010190602001808311610f4657829003601f168201915b5050505050905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060009054906101000a900460ff1615611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd9061311e565b60405180910390fd5b6000611010610976565b90506001600a546110219190613329565b828261102d9190613329565b1061106d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110649061317e565b60405180910390fd5b6001600b5461107c9190613329565b82106110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b4906131be565b60405180910390fd5b60008290506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561117757600184111561112c57600184611125919061340a565b9150611131565b600091505b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600d548261118591906133b0565b34146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061321e565b60405180910390fd5b6111d03385611b64565b50505050565b6111de611877565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611243576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611250611877565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fd611877565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611342919061305c565b60405180910390a35050565b600e805461135b9061350b565b80601f01602080910402602001604051908101604052809291908181526020018280546113879061350b565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b505050505081565b6113e784848461098d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114495761141284848484611d21565b611448576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061145a82611818565b611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906131fe565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561154757600e80546114c29061350b565b80601f01602080910402602001604051908101604052809291908181526020018280546114ee9061350b565b801561153b5780601f106115105761010080835404028352916020019161153b565b820191906000526020600020905b81548152906001019060200180831161151e57829003601f168201915b505050505090506115a0565b6000611551611e81565b90506000815111611571576040518060200160405280600081525061159c565b8061157b84611f13565b60405160200161158c929190612f8b565b6040516020818303038152906040525b9150505b919050565b6115ad611a20565b60008151905060005b818110156115fa5760008382815181106115d3576115d26136dc565b5b602002602001015190506115e681612074565b5080806115f29061356e565b9150506115b6565b505050565b611607611a20565b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c0611a20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061313e565b60405180910390fd5b61173981611a9e565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117bc8484846117ac338a604051602001611791929190612f5f565b60405160208183030381529060405280519060200120612082565b6120b2909392919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f8aa9c9ac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181284612074565b50505050565b60008161182361187f565b11158015611832575060005482105b8015611870575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061189761187f565b1161191f5760005481101561191e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561191c575b60008114156119125760046000836001900393508381526020019081526020016000205490506118e7565b8092505050611951565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119de8686846120dd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a286120e6565b73ffffffffffffffffffffffffffffffffffffffff16611a46610eb1565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a93906131de565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611ba5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bb260008483856119c1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611c2983611c1a60008660006119c7565b611c23856120ee565b176119ef565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611cca57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c8f565b506000821415611d06576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611d1c6000848385611a1a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d47611877565b8786866040518563ffffffff1660e01b8152600401611d699493929190613010565b602060405180830381600087803b158015611d8357600080fd5b505af1925050508015611db457506040513d601f19601f82011682018060405250810190611db19190612b34565b60015b611e2e573d8060008114611de4576040519150601f19603f3d011682016040523d82523d6000602084013e611de9565b606091505b50600081511415611e26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611e909061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc9061350b565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b5050505050905090565b60606000821415611f5b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061206f565b600082905060005b60008214611f8d578080611f769061356e565b915050600a82611f86919061337f565b9150611f63565b60008167ffffffffffffffff811115611fa957611fa861370b565b5b6040519080825280601f01601f191660200182016040528015611fdb5781602001600182028036833780820191505090505b5090505b6000851461206857600182611ff4919061340a565b9150600a8561200391906135ef565b603061200f9190613329565b60f81b818381518110612025576120246136dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612061919061337f565b9450611fdf565b8093505050505b919050565b61207f8160006120fe565b50565b6000816040516020016120959190612fba565b604051602081830303815290604052805190602001209050919050565b60008060006120c387878787612352565b915091506120d08161245f565b8192505050949350505050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b600061210983611888565b9050600081905060008061211c86611956565b915091508415612185576121388184612133611877565b61197d565b6121845761214d83612148611877565b611624565b612183576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6121938360008860016119c1565b801561219e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061224683612203856000886119c7565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176119ef565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851614156122ce5760006001870190506000600460008381526020019081526020016000205414156122cc5760005481146122cb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612338836000886001611a1a565b600160008154809291906001019190505550505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561238d576000600391509150612456565b601b8560ff16141580156123a55750601c8560ff1614155b156123b7576000600491509150612456565b6000600187878787604051600081526020016040526040516123dc9493929190613077565b6020604051602081039080840390855afa1580156123fe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561244d57600060019250925050612456565b80600092509250505b94509492505050565b600060048111156124735761247261367e565b5b8160048111156124865761248561367e565b5b141561249157612631565b600160048111156124a5576124a461367e565b5b8160048111156124b8576124b761367e565b5b14156124f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f0906130de565b60405180910390fd5b6002600481111561250d5761250c61367e565b5b8160048111156125205761251f61367e565b5b1415612561576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612558906130fe565b60405180910390fd5b600360048111156125755761257461367e565b5b8160048111156125885761258761367e565b5b14156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c09061315e565b60405180910390fd5b6004808111156125dc576125db61367e565b5b8160048111156125ef576125ee61367e565b5b1415612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061319e565b60405180910390fd5b5b50565b8280546126409061350b565b90600052602060002090601f01602090048101928261266257600085556126a9565b82601f1061267b57803560ff19168380011785556126a9565b828001600101855582156126a9579182015b828111156126a857823582559160200191906001019061268d565b5b5090506126b691906126ba565b5090565b5b808211156126d35760008160009055506001016126bb565b5090565b60006126ea6126e58461327e565b613259565b9050808382526020820190508285602086028201111561270d5761270c613744565b5b60005b8581101561273d578161272388826128a4565b845260208401935060208301925050600181019050612710565b5050509392505050565b600061275a612755846132aa565b613259565b90508281526020810184848401111561277657612775613749565b5b6127818482856134c9565b509392505050565b60008135905061279881613a26565b92915050565b600082601f8301126127b3576127b261373f565b5b81356127c38482602086016126d7565b91505092915050565b6000813590506127db81613a3d565b92915050565b6000813590506127f081613a54565b92915050565b60008135905061280581613a6b565b92915050565b60008151905061281a81613a6b565b92915050565b600082601f8301126128355761283461373f565b5b8135612845848260208601612747565b91505092915050565b60008083601f8401126128645761286361373f565b5b8235905067ffffffffffffffff8111156128815761288061373a565b5b60208301915083600182028301111561289d5761289c613744565b5b9250929050565b6000813590506128b381613a82565b92915050565b6000813590506128c881613a99565b92915050565b6000602082840312156128e4576128e3613753565b5b60006128f284828501612789565b91505092915050565b6000806040838503121561291257612911613753565b5b600061292085828601612789565b925050602061293185828601612789565b9150509250929050565b60008060006060848603121561295457612953613753565b5b600061296286828701612789565b935050602061297386828701612789565b9250506040612984868287016128a4565b9150509250925092565b600080600080608085870312156129a8576129a7613753565b5b60006129b687828801612789565b94505060206129c787828801612789565b93505060406129d8878288016128a4565b925050606085013567ffffffffffffffff8111156129f9576129f861374e565b5b612a0587828801612820565b91505092959194509250565b60008060408385031215612a2857612a27613753565b5b6000612a3685828601612789565b9250506020612a47858286016127cc565b9150509250929050565b60008060408385031215612a6857612a67613753565b5b6000612a7685828601612789565b9250506020612a87858286016128a4565b9150509250929050565b600060208284031215612aa757612aa6613753565b5b600082013567ffffffffffffffff811115612ac557612ac461374e565b5b612ad18482850161279e565b91505092915050565b600060208284031215612af057612aef613753565b5b6000612afe848285016127cc565b91505092915050565b600060208284031215612b1d57612b1c613753565b5b6000612b2b848285016127f6565b91505092915050565b600060208284031215612b4a57612b49613753565b5b6000612b588482850161280b565b91505092915050565b60008060208385031215612b7857612b77613753565b5b600083013567ffffffffffffffff811115612b9657612b9561374e565b5b612ba28582860161284e565b92509250509250929050565b600060208284031215612bc457612bc3613753565b5b6000612bd2848285016128a4565b91505092915050565b60008060008060808587031215612bf557612bf4613753565b5b6000612c03878288016128a4565b9450506020612c14878288016128b9565b9350506040612c25878288016127e1565b9250506060612c36878288016127e1565b91505092959194509250565b612c4b8161343e565b82525050565b612c62612c5d8261343e565b6135b7565b82525050565b612c7181613450565b82525050565b612c808161345c565b82525050565b612c97612c928261345c565b6135c9565b82525050565b6000612ca8826132db565b612cb281856132f1565b9350612cc28185602086016134d8565b612ccb81613758565b840191505092915050565b6000612ce1826132e6565b612ceb818561330d565b9350612cfb8185602086016134d8565b612d0481613758565b840191505092915050565b6000612d1a826132e6565b612d24818561331e565b9350612d348185602086016134d8565b80840191505092915050565b6000612d4d60188361330d565b9150612d5882613776565b602082019050919050565b6000612d70601f8361330d565b9150612d7b8261379f565b602082019050919050565b6000612d93601c8361331e565b9150612d9e826137c8565b601c82019050919050565b6000612db6600e8361330d565b9150612dc1826137f1565b602082019050919050565b6000612dd960268361330d565b9150612de48261381a565b604082019050919050565b6000612dfc60228361330d565b9150612e0782613869565b604082019050919050565b6000612e1f600f8361330d565b9150612e2a826138b8565b602082019050919050565b6000612e4260228361330d565b9150612e4d826138e1565b604082019050919050565b6000612e6560188361330d565b9150612e7082613930565b602082019050919050565b6000612e8860058361331e565b9150612e9382613959565b600582019050919050565b6000612eab60208361330d565b9150612eb682613982565b602082019050919050565b6000612ece602f8361330d565b9150612ed9826139ab565b604082019050919050565b6000612ef1600083613302565b9150612efc826139fa565b600082019050919050565b6000612f1460148361330d565b9150612f1f826139fd565b602082019050919050565b612f33816134b2565b82525050565b612f4a612f45826134b2565b6135e5565b82525050565b612f59816134bc565b82525050565b6000612f6b8285612c51565b601482019150612f7b8284612f39565b6020820191508190509392505050565b6000612f978285612d0f565b9150612fa38284612d0f565b9150612fae82612e7b565b91508190509392505050565b6000612fc582612d86565b9150612fd18284612c86565b60208201915081905092915050565b6000612feb82612ee4565b9150819050919050565b600060208201905061300a6000830184612c42565b92915050565b60006080820190506130256000830187612c42565b6130326020830186612c42565b61303f6040830185612f2a565b81810360608301526130518184612c9d565b905095945050505050565b60006020820190506130716000830184612c68565b92915050565b600060808201905061308c6000830187612c77565b6130996020830186612f50565b6130a66040830185612c77565b6130b36060830184612c77565b95945050505050565b600060208201905081810360008301526130d68184612cd6565b905092915050565b600060208201905081810360008301526130f781612d40565b9050919050565b6000602082019050818103600083015261311781612d63565b9050919050565b6000602082019050818103600083015261313781612da9565b9050919050565b6000602082019050818103600083015261315781612dcc565b9050919050565b6000602082019050818103600083015261317781612def565b9050919050565b6000602082019050818103600083015261319781612e12565b9050919050565b600060208201905081810360008301526131b781612e35565b9050919050565b600060208201905081810360008301526131d781612e58565b9050919050565b600060208201905081810360008301526131f781612e9e565b9050919050565b6000602082019050818103600083015261321781612ec1565b9050919050565b6000602082019050818103600083015261323781612f07565b9050919050565b60006020820190506132536000830184612f2a565b92915050565b6000613263613274565b905061326f828261353d565b919050565b6000604051905090565b600067ffffffffffffffff8211156132995761329861370b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132c5576132c461370b565b5b6132ce82613758565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613334826134b2565b915061333f836134b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561337457613373613620565b5b828201905092915050565b600061338a826134b2565b9150613395836134b2565b9250826133a5576133a461364f565b5b828204905092915050565b60006133bb826134b2565b91506133c6836134b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133ff576133fe613620565b5b828202905092915050565b6000613415826134b2565b9150613420836134b2565b92508282101561343357613432613620565b5b828203905092915050565b600061344982613492565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156134f65780820151818401526020810190506134db565b83811115613505576000848401525b50505050565b6000600282049050600182168061352357607f821691505b60208210811415613537576135366136ad565b5b50919050565b61354682613758565b810181811067ffffffffffffffff821117156135655761356461370b565b5b80604052505050565b6000613579826134b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135ac576135ab613620565b5b600182019050919050565b60006135c2826135d3565b9050919050565b6000819050919050565b60006135de82613769565b9050919050565b6000819050919050565b60006135fa826134b2565b9150613605836134b2565b9250826136155761361461364f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520506f7461746f7a0000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820706572207472616e73616374696f6e20697320350000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f494e434f52524543542045544820414d4f554e54000000000000000000000000600082015250565b613a2f8161343e565b8114613a3a57600080fd5b50565b613a4681613450565b8114613a5157600080fd5b50565b613a5d8161345c565b8114613a6857600080fd5b50565b613a7481613466565b8114613a7f57600080fd5b50565b613a8b816134b2565b8114613a9657600080fd5b50565b613aa2816134bc565b8114613aad57600080fd5b5056fea26469706673582212206ecc17912b375ebbb9ea569e7a12537171f387d18b262861a4e18e6264b2184164736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55566d7946533941524139576d517246713579636f34546652646669397857714838657a5642706b444e394e
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80637ba5e621116100ec578063b88d4fde1161008a578063e0a8085311610064578063e0a80853146105d7578063e985e9c514610600578063f2fde38b1461063d578063fcc82dc214610666576101b7565b8063b88d4fde14610548578063c87b56dd14610571578063dc8e92ea146105ae576101b7565b806398133235116100c6578063981332351461049b578063a0712d68146104d8578063a22cb465146104f4578063a45ba8e71461051d576101b7565b80637ba5e6211461042e5780638da5cb5b1461044557806395d89b4114610470576101b7565b806342842e0e116101595780635c975abb116101335780635c975abb146103725780636352211e1461039d57806370a08231146103da578063715018a614610417576101b7565b806342842e0e146102f5578063518302271461031e57806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612b07565b61068f565b6040516101f0919061305c565b60405180910390f35b34801561020557600080fd5b5061020e610721565b60405161021b91906130bc565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612bae565b6107b3565b6040516102589190612ff5565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a51565b610832565b005b34801561029657600080fd5b5061029f610976565b6040516102ac919061323e565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061293b565b61098d565b005b3480156102ea57600080fd5b506102f3610cb2565b005b34801561030157600080fd5b5061031c6004803603810190610317919061293b565b610d3a565b005b34801561032a57600080fd5b50610333610d5a565b604051610340919061305c565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612b61565b610d6d565b005b34801561037e57600080fd5b50610387610d8b565b604051610394919061305c565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612bae565b610d9e565b6040516103d19190612ff5565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906128ce565b610db0565b60405161040e919061323e565b60405180910390f35b34801561042357600080fd5b5061042c610e69565b005b34801561043a57600080fd5b50610443610e7d565b005b34801561045157600080fd5b5061045a610eb1565b6040516104679190612ff5565b60405180910390f35b34801561047c57600080fd5b50610485610edb565b60405161049291906130bc565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd91906128ce565b610f6d565b6040516104cf919061323e565b60405180910390f35b6104f260048036038101906104ed9190612bae565b610fb6565b005b34801561050057600080fd5b5061051b60048036038101906105169190612a11565b6111d6565b005b34801561052957600080fd5b5061053261134e565b60405161053f91906130bc565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a919061298e565b6113dc565b005b34801561057d57600080fd5b5061059860048036038101906105939190612bae565b61144f565b6040516105a591906130bc565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612a91565b6115a5565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612ada565b6115ff565b005b34801561060c57600080fd5b50610627600480360381019061062291906128fb565b611624565b604051610634919061305c565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906128ce565b6116b8565b005b34801561067257600080fd5b5061068d60048036038101906106889190612bdb565b61173c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107309061350b565b80601f016020809104026020016040519081016040528092919081815260200182805461075c9061350b565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be82611818565b6107f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82610d9e565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e611877565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a81610885611877565b611624565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061098061187f565b6001546000540303905090565b600061099882611888565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109ff576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0b84611956565b91509150610a218187610a1c611877565b61197d565b610a6d57610a3686610a31611877565b611624565b610a6c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae186868660016119c1565b8015610aec57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bba85610b968888876119c7565b7c0200000000000000000000000000000000000000000000000000000000176119ef565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c42576000600185019050600060046000838152602001908152602001600020541415610c40576000548114610c3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610caa8686866001611a1a565b505050505050565b610cba611a20565b6000610cc4610eb1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ce790612fe0565b60006040518083038185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d3757600080fd5b50565b610d55838383604051806020016040528060008152506113dc565b505050565b601060019054906101000a900460ff1681565b610d75611a20565b8181600f9190610d86929190612634565b505050565b601060009054906101000a900460ff1681565b6000610da982611888565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e71611a20565b610e7b6000611a9e565b565b610e85611a20565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eea9061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f169061350b565b8015610f635780601f10610f3857610100808354040283529160200191610f63565b820191906000526020600020905b815481529060010190602001808311610f4657829003601f168201915b5050505050905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060009054906101000a900460ff1615611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd9061311e565b60405180910390fd5b6000611010610976565b90506001600a546110219190613329565b828261102d9190613329565b1061106d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110649061317e565b60405180910390fd5b6001600b5461107c9190613329565b82106110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b4906131be565b60405180910390fd5b60008290506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561117757600184111561112c57600184611125919061340a565b9150611131565b600091505b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600d548261118591906133b0565b34146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061321e565b60405180910390fd5b6111d03385611b64565b50505050565b6111de611877565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611243576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611250611877565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fd611877565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611342919061305c565b60405180910390a35050565b600e805461135b9061350b565b80601f01602080910402602001604051908101604052809291908181526020018280546113879061350b565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b505050505081565b6113e784848461098d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114495761141284848484611d21565b611448576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061145a82611818565b611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906131fe565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561154757600e80546114c29061350b565b80601f01602080910402602001604051908101604052809291908181526020018280546114ee9061350b565b801561153b5780601f106115105761010080835404028352916020019161153b565b820191906000526020600020905b81548152906001019060200180831161151e57829003601f168201915b505050505090506115a0565b6000611551611e81565b90506000815111611571576040518060200160405280600081525061159c565b8061157b84611f13565b60405160200161158c929190612f8b565b6040516020818303038152906040525b9150505b919050565b6115ad611a20565b60008151905060005b818110156115fa5760008382815181106115d3576115d26136dc565b5b602002602001015190506115e681612074565b5080806115f29061356e565b9150506115b6565b505050565b611607611a20565b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c0611a20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061313e565b60405180910390fd5b61173981611a9e565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117bc8484846117ac338a604051602001611791929190612f5f565b60405160208183030381529060405280519060200120612082565b6120b2909392919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f8aa9c9ac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181284612074565b50505050565b60008161182361187f565b11158015611832575060005482105b8015611870575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061189761187f565b1161191f5760005481101561191e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561191c575b60008114156119125760046000836001900393508381526020019081526020016000205490506118e7565b8092505050611951565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119de8686846120dd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a286120e6565b73ffffffffffffffffffffffffffffffffffffffff16611a46610eb1565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a93906131de565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611ba5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bb260008483856119c1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611c2983611c1a60008660006119c7565b611c23856120ee565b176119ef565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611cca57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c8f565b506000821415611d06576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611d1c6000848385611a1a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d47611877565b8786866040518563ffffffff1660e01b8152600401611d699493929190613010565b602060405180830381600087803b158015611d8357600080fd5b505af1925050508015611db457506040513d601f19601f82011682018060405250810190611db19190612b34565b60015b611e2e573d8060008114611de4576040519150601f19603f3d011682016040523d82523d6000602084013e611de9565b606091505b50600081511415611e26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611e909061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc9061350b565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b5050505050905090565b60606000821415611f5b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061206f565b600082905060005b60008214611f8d578080611f769061356e565b915050600a82611f86919061337f565b9150611f63565b60008167ffffffffffffffff811115611fa957611fa861370b565b5b6040519080825280601f01601f191660200182016040528015611fdb5781602001600182028036833780820191505090505b5090505b6000851461206857600182611ff4919061340a565b9150600a8561200391906135ef565b603061200f9190613329565b60f81b818381518110612025576120246136dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612061919061337f565b9450611fdf565b8093505050505b919050565b61207f8160006120fe565b50565b6000816040516020016120959190612fba565b604051602081830303815290604052805190602001209050919050565b60008060006120c387878787612352565b915091506120d08161245f565b8192505050949350505050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b600061210983611888565b9050600081905060008061211c86611956565b915091508415612185576121388184612133611877565b61197d565b6121845761214d83612148611877565b611624565b612183576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6121938360008860016119c1565b801561219e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061224683612203856000886119c7565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176119ef565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851614156122ce5760006001870190506000600460008381526020019081526020016000205414156122cc5760005481146122cb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612338836000886001611a1a565b600160008154809291906001019190505550505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561238d576000600391509150612456565b601b8560ff16141580156123a55750601c8560ff1614155b156123b7576000600491509150612456565b6000600187878787604051600081526020016040526040516123dc9493929190613077565b6020604051602081039080840390855afa1580156123fe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561244d57600060019250925050612456565b80600092509250505b94509492505050565b600060048111156124735761247261367e565b5b8160048111156124865761248561367e565b5b141561249157612631565b600160048111156124a5576124a461367e565b5b8160048111156124b8576124b761367e565b5b14156124f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f0906130de565b60405180910390fd5b6002600481111561250d5761250c61367e565b5b8160048111156125205761251f61367e565b5b1415612561576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612558906130fe565b60405180910390fd5b600360048111156125755761257461367e565b5b8160048111156125885761258761367e565b5b14156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c09061315e565b60405180910390fd5b6004808111156125dc576125db61367e565b5b8160048111156125ef576125ee61367e565b5b1415612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061319e565b60405180910390fd5b5b50565b8280546126409061350b565b90600052602060002090601f01602090048101928261266257600085556126a9565b82601f1061267b57803560ff19168380011785556126a9565b828001600101855582156126a9579182015b828111156126a857823582559160200191906001019061268d565b5b5090506126b691906126ba565b5090565b5b808211156126d35760008160009055506001016126bb565b5090565b60006126ea6126e58461327e565b613259565b9050808382526020820190508285602086028201111561270d5761270c613744565b5b60005b8581101561273d578161272388826128a4565b845260208401935060208301925050600181019050612710565b5050509392505050565b600061275a612755846132aa565b613259565b90508281526020810184848401111561277657612775613749565b5b6127818482856134c9565b509392505050565b60008135905061279881613a26565b92915050565b600082601f8301126127b3576127b261373f565b5b81356127c38482602086016126d7565b91505092915050565b6000813590506127db81613a3d565b92915050565b6000813590506127f081613a54565b92915050565b60008135905061280581613a6b565b92915050565b60008151905061281a81613a6b565b92915050565b600082601f8301126128355761283461373f565b5b8135612845848260208601612747565b91505092915050565b60008083601f8401126128645761286361373f565b5b8235905067ffffffffffffffff8111156128815761288061373a565b5b60208301915083600182028301111561289d5761289c613744565b5b9250929050565b6000813590506128b381613a82565b92915050565b6000813590506128c881613a99565b92915050565b6000602082840312156128e4576128e3613753565b5b60006128f284828501612789565b91505092915050565b6000806040838503121561291257612911613753565b5b600061292085828601612789565b925050602061293185828601612789565b9150509250929050565b60008060006060848603121561295457612953613753565b5b600061296286828701612789565b935050602061297386828701612789565b9250506040612984868287016128a4565b9150509250925092565b600080600080608085870312156129a8576129a7613753565b5b60006129b687828801612789565b94505060206129c787828801612789565b93505060406129d8878288016128a4565b925050606085013567ffffffffffffffff8111156129f9576129f861374e565b5b612a0587828801612820565b91505092959194509250565b60008060408385031215612a2857612a27613753565b5b6000612a3685828601612789565b9250506020612a47858286016127cc565b9150509250929050565b60008060408385031215612a6857612a67613753565b5b6000612a7685828601612789565b9250506020612a87858286016128a4565b9150509250929050565b600060208284031215612aa757612aa6613753565b5b600082013567ffffffffffffffff811115612ac557612ac461374e565b5b612ad18482850161279e565b91505092915050565b600060208284031215612af057612aef613753565b5b6000612afe848285016127cc565b91505092915050565b600060208284031215612b1d57612b1c613753565b5b6000612b2b848285016127f6565b91505092915050565b600060208284031215612b4a57612b49613753565b5b6000612b588482850161280b565b91505092915050565b60008060208385031215612b7857612b77613753565b5b600083013567ffffffffffffffff811115612b9657612b9561374e565b5b612ba28582860161284e565b92509250509250929050565b600060208284031215612bc457612bc3613753565b5b6000612bd2848285016128a4565b91505092915050565b60008060008060808587031215612bf557612bf4613753565b5b6000612c03878288016128a4565b9450506020612c14878288016128b9565b9350506040612c25878288016127e1565b9250506060612c36878288016127e1565b91505092959194509250565b612c4b8161343e565b82525050565b612c62612c5d8261343e565b6135b7565b82525050565b612c7181613450565b82525050565b612c808161345c565b82525050565b612c97612c928261345c565b6135c9565b82525050565b6000612ca8826132db565b612cb281856132f1565b9350612cc28185602086016134d8565b612ccb81613758565b840191505092915050565b6000612ce1826132e6565b612ceb818561330d565b9350612cfb8185602086016134d8565b612d0481613758565b840191505092915050565b6000612d1a826132e6565b612d24818561331e565b9350612d348185602086016134d8565b80840191505092915050565b6000612d4d60188361330d565b9150612d5882613776565b602082019050919050565b6000612d70601f8361330d565b9150612d7b8261379f565b602082019050919050565b6000612d93601c8361331e565b9150612d9e826137c8565b601c82019050919050565b6000612db6600e8361330d565b9150612dc1826137f1565b602082019050919050565b6000612dd960268361330d565b9150612de48261381a565b604082019050919050565b6000612dfc60228361330d565b9150612e0782613869565b604082019050919050565b6000612e1f600f8361330d565b9150612e2a826138b8565b602082019050919050565b6000612e4260228361330d565b9150612e4d826138e1565b604082019050919050565b6000612e6560188361330d565b9150612e7082613930565b602082019050919050565b6000612e8860058361331e565b9150612e9382613959565b600582019050919050565b6000612eab60208361330d565b9150612eb682613982565b602082019050919050565b6000612ece602f8361330d565b9150612ed9826139ab565b604082019050919050565b6000612ef1600083613302565b9150612efc826139fa565b600082019050919050565b6000612f1460148361330d565b9150612f1f826139fd565b602082019050919050565b612f33816134b2565b82525050565b612f4a612f45826134b2565b6135e5565b82525050565b612f59816134bc565b82525050565b6000612f6b8285612c51565b601482019150612f7b8284612f39565b6020820191508190509392505050565b6000612f978285612d0f565b9150612fa38284612d0f565b9150612fae82612e7b565b91508190509392505050565b6000612fc582612d86565b9150612fd18284612c86565b60208201915081905092915050565b6000612feb82612ee4565b9150819050919050565b600060208201905061300a6000830184612c42565b92915050565b60006080820190506130256000830187612c42565b6130326020830186612c42565b61303f6040830185612f2a565b81810360608301526130518184612c9d565b905095945050505050565b60006020820190506130716000830184612c68565b92915050565b600060808201905061308c6000830187612c77565b6130996020830186612f50565b6130a66040830185612c77565b6130b36060830184612c77565b95945050505050565b600060208201905081810360008301526130d68184612cd6565b905092915050565b600060208201905081810360008301526130f781612d40565b9050919050565b6000602082019050818103600083015261311781612d63565b9050919050565b6000602082019050818103600083015261313781612da9565b9050919050565b6000602082019050818103600083015261315781612dcc565b9050919050565b6000602082019050818103600083015261317781612def565b9050919050565b6000602082019050818103600083015261319781612e12565b9050919050565b600060208201905081810360008301526131b781612e35565b9050919050565b600060208201905081810360008301526131d781612e58565b9050919050565b600060208201905081810360008301526131f781612e9e565b9050919050565b6000602082019050818103600083015261321781612ec1565b9050919050565b6000602082019050818103600083015261323781612f07565b9050919050565b60006020820190506132536000830184612f2a565b92915050565b6000613263613274565b905061326f828261353d565b919050565b6000604051905090565b600067ffffffffffffffff8211156132995761329861370b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132c5576132c461370b565b5b6132ce82613758565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613334826134b2565b915061333f836134b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561337457613373613620565b5b828201905092915050565b600061338a826134b2565b9150613395836134b2565b9250826133a5576133a461364f565b5b828204905092915050565b60006133bb826134b2565b91506133c6836134b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133ff576133fe613620565b5b828202905092915050565b6000613415826134b2565b9150613420836134b2565b92508282101561343357613432613620565b5b828203905092915050565b600061344982613492565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156134f65780820151818401526020810190506134db565b83811115613505576000848401525b50505050565b6000600282049050600182168061352357607f821691505b60208210811415613537576135366136ad565b5b50919050565b61354682613758565b810181811067ffffffffffffffff821117156135655761356461370b565b5b80604052505050565b6000613579826134b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135ac576135ab613620565b5b600182019050919050565b60006135c2826135d3565b9050919050565b6000819050919050565b60006135de82613769565b9050919050565b6000819050919050565b60006135fa826134b2565b9150613605836134b2565b9250826136155761361461364f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520506f7461746f7a0000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820706572207472616e73616374696f6e20697320350000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f494e434f52524543542045544820414d4f554e54000000000000000000000000600082015250565b613a2f8161343e565b8114613a3a57600080fd5b50565b613a4681613450565b8114613a5157600080fd5b50565b613a5d8161345c565b8114613a6857600080fd5b50565b613a7481613466565b8114613a7f57600080fd5b50565b613a8b816134b2565b8114613a9657600080fd5b50565b613aa2816134bc565b8114613aad57600080fd5b5056fea26469706673582212206ecc17912b375ebbb9ea569e7a12537171f387d18b262861a4e18e6264b2184164736f6c63430008070033
Deployed Bytecode Sourcemap
67178:3151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34289:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35191:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41674:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41115:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30942:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45381:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69537:137;;;;;;;;;;;;;:::i;:::-;;48294:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67657:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68899:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67626:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36584:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32126:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15037:103;;;;;;;;;;;;;:::i;:::-;;69012:68;;;;;;;;;;;;;:::i;:::-;;14389:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35367:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68580:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67802:772;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42232:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67474:116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49077:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69086:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70088:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69682:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42697:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15295:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69769:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34289:639;34374:4;34713:10;34698:25;;:11;:25;;;;:102;;;;34790:10;34775:25;;:11;:25;;;;34698:102;:179;;;;34867:10;34852:25;;:11;:25;;;;34698:179;34678:199;;34289:639;;;:::o;35191:100::-;35245:13;35278:5;35271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35191:100;:::o;41674:218::-;41750:7;41775:16;41783:7;41775;:16::i;:::-;41770:64;;41800:34;;;;;;;;;;;;;;41770:64;41854:15;:24;41870:7;41854:24;;;;;;;;;;;:30;;;;;;;;;;;;41847:37;;41674:218;;;:::o;41115:400::-;41196:13;41212:16;41220:7;41212;:16::i;:::-;41196:32;;41268:5;41245:28;;:19;:17;:19::i;:::-;:28;;;41241:175;;41293:44;41310:5;41317:19;:17;:19::i;:::-;41293:16;:44::i;:::-;41288:128;;41365:35;;;;;;;;;;;;;;41288:128;41241:175;41461:2;41428:15;:24;41444:7;41428:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41499:7;41495:2;41479:28;;41488:5;41479:28;;;;;;;;;;;;41185:330;41115:400;;:::o;30942:323::-;31003:7;31231:15;:13;:15::i;:::-;31216:12;;31200:13;;:28;:46;31193:53;;30942:323;:::o;45381:2817::-;45515:27;45545;45564:7;45545:18;:27::i;:::-;45515:57;;45630:4;45589:45;;45605:19;45589:45;;;45585:86;;45643:28;;;;;;;;;;;;;;45585:86;45685:27;45714:23;45741:35;45768:7;45741:26;:35::i;:::-;45684:92;;;;45876:68;45901:15;45918:4;45924:19;:17;:19::i;:::-;45876:24;:68::i;:::-;45871:180;;45964:43;45981:4;45987:19;:17;:19::i;:::-;45964:16;:43::i;:::-;45959:92;;46016:35;;;;;;;;;;;;;;45959:92;45871:180;46082:1;46068:16;;:2;:16;;;46064:52;;;46093:23;;;;;;;;;;;;;;46064:52;46129:43;46151:4;46157:2;46161:7;46170:1;46129:21;:43::i;:::-;46265:15;46262:160;;;46405:1;46384:19;46377:30;46262:160;46802:18;:24;46821:4;46802:24;;;;;;;;;;;;;;;;46800:26;;;;;;;;;;;;46871:18;:22;46890:2;46871:22;;;;;;;;;;;;;;;;46869:24;;;;;;;;;;;47193:146;47230:2;47279:45;47294:4;47300:2;47304:19;47279:14;:45::i;:::-;27341:8;47251:73;47193:18;:146::i;:::-;47164:17;:26;47182:7;47164:26;;;;;;;;;;;:175;;;;47510:1;27341:8;47459:19;:47;:52;47455:627;;;47532:19;47564:1;47554:7;:11;47532:33;;47721:1;47687:17;:30;47705:11;47687:30;;;;;;;;;;;;:35;47683:384;;;47825:13;;47810:11;:28;47806:242;;48005:19;47972:17;:30;47990:11;47972:30;;;;;;;;;;;:52;;;;47806:242;47683:384;47513:569;47455:627;48129:7;48125:2;48110:27;;48119:4;48110:27;;;;;;;;;;;;48148:42;48169:4;48175:2;48179:7;48188:1;48148:20;:42::i;:::-;45504:2694;;;45381:2817;;;:::o;69537:137::-;14275:13;:11;:13::i;:::-;69582:7:::1;69603;:5;:7::i;:::-;69595:21;;69624;69595:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69581:69;;;69665:2;69657:11;;;::::0;::::1;;69574:100;69537:137::o:0;48294:185::-;48432:39;48449:4;48455:2;48459:7;48432:39;;;;;;;;;;;;:16;:39::i;:::-;48294:185;;;:::o;67657:28::-;;;;;;;;;;;;;:::o;68899:107::-;14275:13;:11;:13::i;:::-;68989:11:::1;;68974:12;:26;;;;;;;:::i;:::-;;68899:107:::0;;:::o;67626:26::-;;;;;;;;;;;;;:::o;36584:152::-;36656:7;36699:27;36718:7;36699:18;:27::i;:::-;36676:52;;36584:152;;;:::o;32126:233::-;32198:7;32239:1;32222:19;;:5;:19;;;32218:60;;;32250:28;;;;;;;;;;;;;;32218:60;26285:13;32296:18;:25;32315:5;32296:25;;;;;;;;;;;;;;;;:55;32289:62;;32126:233;;;:::o;15037:103::-;14275:13;:11;:13::i;:::-;15102:30:::1;15129:1;15102:18;:30::i;:::-;15037:103::o:0;69012:68::-;14275:13;:11;:13::i;:::-;69068:6:::1;;;;;;;;;;;69067:7;69058:6;;:16;;;;;;;;;;;;;;;;;;69012:68::o:0;14389:87::-;14435:7;14462:6;;;;;;;;;;;14455:13;;14389:87;:::o;35367:104::-;35423:13;35456:7;35449:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35367:104;:::o;68580:115::-;68643:7;68666:16;:23;68683:5;68666:23;;;;;;;;;;;;;;;;68659:30;;68580:115;;;:::o;67802:772::-;67876:6;;;;;;;;;;;67875:7;67867:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;67912:20;67935:13;:11;:13::i;:::-;67912:36;;68007:1;67994:10;;:14;;;;:::i;:::-;67982:9;67967:12;:24;;;;:::i;:::-;:41;67959:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68079:1;68057:19;;:23;;;;:::i;:::-;68045:9;:35;68037:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;68120:16;68139:9;68120:28;;68157:21;68181:16;:28;68198:10;68181:28;;;;;;;;;;;;;;;;68157:52;;68240:1;68224:13;:17;68220:199;;;68270:1;68258:9;:13;68254:111;;;68309:1;68297:9;:13;;;;:::i;:::-;68286:24;;68254:111;;;68352:1;68341:12;;68254:111;68408:1;68377:16;:28;68394:10;68377:28;;;;;;;;;;;;;;;:32;;;;68220:199;68471:10;;68460:8;:21;;;;:::i;:::-;68447:9;:34;68429:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;68534:28;68540:10;68552:9;68534:5;:28::i;:::-;67852:722;;;67802:772;:::o;42232:308::-;42343:19;:17;:19::i;:::-;42331:31;;:8;:31;;;42327:61;;;42371:17;;;;;;;;;;;;;;42327:61;42453:8;42401:18;:39;42420:19;:17;:19::i;:::-;42401:39;;;;;;;;;;;;;;;:49;42441:8;42401:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42513:8;42477:55;;42492:19;:17;:19::i;:::-;42477:55;;;42523:8;42477:55;;;;;;:::i;:::-;;;;;;;;42232:308;;:::o;67474:116::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49077:399::-;49244:31;49257:4;49263:2;49267:7;49244:12;:31::i;:::-;49308:1;49290:2;:14;;;:19;49286:183;;49329:56;49360:4;49366:2;49370:7;49379:5;49329:30;:56::i;:::-;49324:145;;49413:40;;;;;;;;;;;;;;49324:145;49286:183;49077:399;;;;:::o;69086:443::-;69160:13;69190:17;69198:8;69190:7;:17::i;:::-;69182:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;69284:5;69272:17;;:8;;;;;;;;;;;:17;;;69268:64;;;69307:17;69300:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69268:64;69340:28;69371:10;:8;:10::i;:::-;69340:41;;69426:1;69401:14;69395:28;:32;:128;;;;;;;;;;;;;;;;;69463:14;69479:19;:8;:17;:19::i;:::-;69446:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69395:128;69388:135;;;69086:443;;;;:::o;70088:238::-;14275:13;:11;:13::i;:::-;70164:11:::1;70178:8;:15;70164:29;;70209:9;70204:115;70224:3;70220:1;:7;70204:115;;;70249:15;70267:8;70276:1;70267:11;;;;;;;;:::i;:::-;;;;;;;;70249:29;;70293:14;70299:7;70293:5;:14::i;:::-;70234:85;70229:3;;;;;:::i;:::-;;;;70204:115;;;;70153:173;70088:238:::0;:::o;69682:81::-;14275:13;:11;:13::i;:::-;69751:6:::1;69740:8;;:17;;;;;;;;;;;;;;;;;;69682:81:::0;:::o;42697:164::-;42794:4;42818:18;:25;42837:5;42818:25;;;;;;;;;;;;;;;:35;42844:8;42818:35;;;;;;;;;;;;;;;;;;;;;;;;;42811:42;;42697:164;;;;:::o;15295:201::-;14275:13;:11;:13::i;:::-;15404:1:::1;15384:22;;:8;:22;;;;15376:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15460:28;15479:8;15460:18;:28::i;:::-;15295:201:::0;:::o;69769:315::-;69992:6;;;;;;;;;;;69898:100;;:90;69980:1;69983;69986;69898:73;69925:10;69937:7;69908:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69898:48;;;;;;:71;:73::i;:::-;:81;;:90;;;;;;:::i;:::-;:100;;;69894:158;;70022:18;;;;;;;;;;;;;;69894:158;70062:14;70068:7;70062:5;:14::i;:::-;69769:315;;;;:::o;43119:282::-;43184:4;43240:7;43221:15;:13;:15::i;:::-;:26;;:66;;;;;43274:13;;43264:7;:23;43221:66;:153;;;;;43373:1;27061:8;43325:17;:26;43343:7;43325:26;;;;;;;;;;;;:44;:49;43221:153;43201:173;;43119:282;;;:::o;64885:105::-;64945:7;64972:10;64965:17;;64885:105;:::o;68701:87::-;68758:7;68781:1;68774:8;;68701:87;:::o;37739:1275::-;37806:7;37826:12;37841:7;37826:22;;37909:4;37890:15;:13;:15::i;:::-;:23;37886:1061;;37943:13;;37936:4;:20;37932:1015;;;37981:14;37998:17;:23;38016:4;37998:23;;;;;;;;;;;;37981:40;;38115:1;27061:8;38087:6;:24;:29;38083:845;;;38752:113;38769:1;38759:6;:11;38752:113;;;38812:17;:25;38830:6;;;;;;;38812:25;;;;;;;;;;;;38803:34;;38752:113;;;38898:6;38891:13;;;;;;38083:845;37958:989;37932:1015;37886:1061;38975:31;;;;;;;;;;;;;;37739:1275;;;;:::o;44282:479::-;44384:27;44413:23;44454:38;44495:15;:24;44511:7;44495:24;;;;;;;;;;;44454:65;;44666:18;44643:41;;44723:19;44717:26;44698:45;;44628:126;44282:479;;;:::o;43510:659::-;43659:11;43824:16;43817:5;43813:28;43804:37;;43984:16;43973:9;43969:32;43956:45;;44134:15;44123:9;44120:30;44112:5;44101:9;44098:20;44095:56;44085:66;;43510:659;;;;;:::o;50138:159::-;;;;;:::o;64194:311::-;64329:7;64349:16;27465:3;64375:19;:41;;64349:68;;27465:3;64443:31;64454:4;64460:2;64464:9;64443:10;:31::i;:::-;64435:40;;:62;;64428:69;;;64194:311;;;;;:::o;39562:450::-;39642:14;39810:16;39803:5;39799:28;39790:37;;39987:5;39973:11;39948:23;39944:41;39941:52;39934:5;39931:63;39921:73;;39562:450;;;;:::o;50962:158::-;;;;;:::o;14554:132::-;14629:12;:10;:12::i;:::-;14618:23;;:7;:5;:7::i;:::-;:23;;;14610:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14554:132::o;15656:191::-;15730:16;15749:6;;;;;;;;;;;15730:25;;15775:8;15766:6;;:17;;;;;;;;;;;;;;;;;;15830:8;15799:40;;15820:8;15799:40;;;;;;;;;;;;15719:128;15656:191;:::o;52738:2454::-;52811:20;52834:13;;52811:36;;52874:1;52862:8;:13;52858:44;;;52884:18;;;;;;;;;;;;;;52858:44;52915:61;52945:1;52949:2;52953:12;52967:8;52915:21;:61::i;:::-;53459:1;26423:2;53429:1;:26;;53428:32;53416:8;:45;53390:18;:22;53409:2;53390:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53738:139;53775:2;53829:33;53852:1;53856:2;53860:1;53829:14;:33::i;:::-;53796:30;53817:8;53796:20;:30::i;:::-;:66;53738:18;:139::i;:::-;53704:17;:31;53722:12;53704:31;;;;;;;;;;;:173;;;;53894:16;53925:11;53954:8;53939:12;:23;53925:37;;54209:16;54205:2;54201:25;54189:37;;54581:12;54541:8;54500:1;54438:25;54379:1;54318;54291:335;54706:1;54692:12;54688:20;54646:346;54747:3;54738:7;54735:16;54646:346;;54965:7;54955:8;54952:1;54925:25;54922:1;54919;54914:59;54800:1;54791:7;54787:15;54776:26;;54646:346;;;54650:77;55037:1;55025:8;:13;55021:45;;;55047:19;;;;;;;;;;;;;;55021:45;55099:3;55083:13;:19;;;;53164:1950;;55124:60;55153:1;55157:2;55161:12;55175:8;55124:20;:60::i;:::-;52800:2392;52738:2454;;:::o;51560:716::-;51723:4;51769:2;51744:45;;;51790:19;:17;:19::i;:::-;51811:4;51817:7;51826:5;51744:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51740:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52044:1;52027:6;:13;:18;52023:235;;;52073:40;;;;;;;;;;;;;;52023:235;52216:6;52210:13;52201:6;52197:2;52193:15;52186:38;51740:529;51913:54;;;51903:64;;;:6;:64;;;;51896:71;;;51560:716;;;;;;:::o;68794:99::-;68846:13;68875:12;68868:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68794:99;:::o;564:723::-;620:13;850:1;841:5;:10;837:53;;;868:10;;;;;;;;;;;;;;;;;;;;;837:53;900:12;915:5;900:20;;931:14;956:78;971:1;963:4;:9;956:78;;989:8;;;;;:::i;:::-;;;;1020:2;1012:10;;;;;:::i;:::-;;;956:78;;;1044:19;1076:6;1066:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1044:39;;1094:154;1110:1;1101:5;:10;1094:154;;1138:1;1128:11;;;;;:::i;:::-;;;1205:2;1197:5;:10;;;;:::i;:::-;1184:2;:24;;;;:::i;:::-;1171:39;;1154:6;1161;1154:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1234:2;1225:11;;;;;:::i;:::-;;;1094:154;;;1272:6;1258:21;;;;;564:723;;;;:::o;59096:89::-;59156:21;59162:7;59171:5;59156;:21::i;:::-;59096:89;:::o;10946:269::-;11015:7;11201:4;11148:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;11138:69;;;;;;11131:76;;10946:269;;;:::o;10367:279::-;10495:7;10516:17;10535:18;10557:25;10568:4;10574:1;10577;10580;10557:10;:25::i;:::-;10515:67;;;;10593:18;10605:5;10593:11;:18::i;:::-;10629:9;10622:16;;;;10367:279;;;;;;:::o;63895:147::-;64032:6;63895:147;;;;;:::o;12940:98::-;12993:7;13020:10;13013:17;;12940:98;:::o;40114:324::-;40184:14;40417:1;40407:8;40404:15;40378:24;40374:46;40364:56;;40114:324;;;:::o;59414:3081::-;59494:27;59524;59543:7;59524:18;:27::i;:::-;59494:57;;59564:12;59595:19;59564:52;;59630:27;59659:23;59686:35;59713:7;59686:26;:35::i;:::-;59629:92;;;;59738:13;59734:316;;;59859:68;59884:15;59901:4;59907:19;:17;:19::i;:::-;59859:24;:68::i;:::-;59854:184;;59951:43;59968:4;59974:19;:17;:19::i;:::-;59951:16;:43::i;:::-;59946:92;;60003:35;;;;;;;;;;;;;;59946:92;59854:184;59734:316;60062:51;60084:4;60098:1;60102:7;60111:1;60062:21;:51::i;:::-;60206:15;60203:160;;;60346:1;60325:19;60318:30;60203:160;61024:1;26550:3;60994:1;:26;;60993:32;60965:18;:24;60984:4;60965:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;61292:176;61329:4;61400:53;61415:4;61429:1;61433:19;61400:14;:53::i;:::-;27341:8;27061;61353:43;61352:101;61292:18;:176::i;:::-;61263:17;:26;61281:7;61263:26;;;;;;;;;;;:205;;;;61639:1;27341:8;61588:19;:47;:52;61584:627;;;61661:19;61693:1;61683:7;:11;61661:33;;61850:1;61816:17;:30;61834:11;61816:30;;;;;;;;;;;;:35;61812:384;;;61954:13;;61939:11;:28;61935:242;;62134:19;62101:17;:30;62119:11;62101:30;;;;;;;;;;;:52;;;;61935:242;61812:384;61642:569;61584:627;62266:7;62262:1;62239:35;;62248:4;62239:35;;;;;;;;;;;;62285:50;62306:4;62320:1;62324:7;62333:1;62285:20;:50::i;:::-;62462:12;;:14;;;;;;;;;;;;;59483:3012;;;;59414:3081;;:::o;8596:1632::-;8727:7;8736:12;9661:66;9656:1;9648:10;;:79;9644:163;;;9760:1;9764:30;9744:51;;;;;;9644:163;9826:2;9821:1;:7;;;;:18;;;;;9837:2;9832:1;:7;;;;9821:18;9817:102;;;9872:1;9876:30;9856:51;;;;;;9817:102;10016:14;10033:24;10043:4;10049:1;10052;10055;10033:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10016:41;;10090:1;10072:20;;:6;:20;;;10068:103;;;10125:1;10129:29;10109:50;;;;;;;10068:103;10191:6;10199:20;10183:37;;;;;8596:1632;;;;;;;;:::o;3209:643::-;3287:20;3278:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;3274:571;;;3324:7;;3274:571;3385:29;3376:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;3372:473;;;3431:34;;;;;;;;;;:::i;:::-;;;;;;;;3372:473;3496:35;3487:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;3483:362;;;3548:41;;;;;;;;;;:::i;:::-;;;;;;;;3483:362;3620:30;3611:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;3607:238;;;3667:44;;;;;;;;;;:::i;:::-;;;;;;;;3607:238;3742:30;3733:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;3729:116;;;3789:44;;;;;;;;;;:::i;:::-;;;;;;;;3729:116;3209:643;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:370::-;1401:5;1450:3;1443:4;1435:6;1431:17;1427:27;1417:122;;1458:79;;:::i;:::-;1417:122;1575:6;1562:20;1600:94;1690:3;1682:6;1675:4;1667:6;1663:17;1600:94;:::i;:::-;1591:103;;1407:293;1330:370;;;;:::o;1706:133::-;1749:5;1787:6;1774:20;1765:29;;1803:30;1827:5;1803:30;:::i;:::-;1706:133;;;;:::o;1845:139::-;1891:5;1929:6;1916:20;1907:29;;1945:33;1972:5;1945:33;:::i;:::-;1845:139;;;;:::o;1990:137::-;2035:5;2073:6;2060:20;2051:29;;2089:32;2115:5;2089:32;:::i;:::-;1990:137;;;;:::o;2133:141::-;2189:5;2220:6;2214:13;2205:22;;2236:32;2262:5;2236:32;:::i;:::-;2133:141;;;;:::o;2293:338::-;2348:5;2397:3;2390:4;2382:6;2378:17;2374:27;2364:122;;2405:79;;:::i;:::-;2364:122;2522:6;2509:20;2547:78;2621:3;2613:6;2606:4;2598:6;2594:17;2547:78;:::i;:::-;2538:87;;2354:277;2293:338;;;;:::o;2651:553::-;2709:8;2719:6;2769:3;2762:4;2754:6;2750:17;2746:27;2736:122;;2777:79;;:::i;:::-;2736:122;2890:6;2877:20;2867:30;;2920:18;2912:6;2909:30;2906:117;;;2942:79;;:::i;:::-;2906:117;3056:4;3048:6;3044:17;3032:29;;3110:3;3102:4;3094:6;3090:17;3080:8;3076:32;3073:41;3070:128;;;3117:79;;:::i;:::-;3070:128;2651:553;;;;;:::o;3210:139::-;3256:5;3294:6;3281:20;3272:29;;3310:33;3337:5;3310:33;:::i;:::-;3210:139;;;;:::o;3355:135::-;3399:5;3437:6;3424:20;3415:29;;3453:31;3478:5;3453:31;:::i;:::-;3355:135;;;;:::o;3496:329::-;3555:6;3604:2;3592:9;3583:7;3579:23;3575:32;3572:119;;;3610:79;;:::i;:::-;3572:119;3730:1;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3701:117;3496:329;;;;:::o;3831:474::-;3899:6;3907;3956:2;3944:9;3935:7;3931:23;3927:32;3924:119;;;3962:79;;:::i;:::-;3924:119;4082:1;4107:53;4152:7;4143:6;4132:9;4128:22;4107:53;:::i;:::-;4097:63;;4053:117;4209:2;4235:53;4280:7;4271:6;4260:9;4256:22;4235:53;:::i;:::-;4225:63;;4180:118;3831:474;;;;;:::o;4311:619::-;4388:6;4396;4404;4453:2;4441:9;4432:7;4428:23;4424:32;4421:119;;;4459:79;;:::i;:::-;4421:119;4579:1;4604:53;4649:7;4640:6;4629:9;4625:22;4604:53;:::i;:::-;4594:63;;4550:117;4706:2;4732:53;4777:7;4768:6;4757:9;4753:22;4732:53;:::i;:::-;4722:63;;4677:118;4834:2;4860:53;4905:7;4896:6;4885:9;4881:22;4860:53;:::i;:::-;4850:63;;4805:118;4311:619;;;;;:::o;4936:943::-;5031:6;5039;5047;5055;5104:3;5092:9;5083:7;5079:23;5075:33;5072:120;;;5111:79;;:::i;:::-;5072:120;5231:1;5256:53;5301:7;5292:6;5281:9;5277:22;5256:53;:::i;:::-;5246:63;;5202:117;5358:2;5384:53;5429:7;5420:6;5409:9;5405:22;5384:53;:::i;:::-;5374:63;;5329:118;5486:2;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5457:118;5642:2;5631:9;5627:18;5614:32;5673:18;5665:6;5662:30;5659:117;;;5695:79;;:::i;:::-;5659:117;5800:62;5854:7;5845:6;5834:9;5830:22;5800:62;:::i;:::-;5790:72;;5585:287;4936:943;;;;;;;:::o;5885:468::-;5950:6;5958;6007:2;5995:9;5986:7;5982:23;5978:32;5975:119;;;6013:79;;:::i;:::-;5975:119;6133:1;6158:53;6203:7;6194:6;6183:9;6179:22;6158:53;:::i;:::-;6148:63;;6104:117;6260:2;6286:50;6328:7;6319:6;6308:9;6304:22;6286:50;:::i;:::-;6276:60;;6231:115;5885:468;;;;;:::o;6359:474::-;6427:6;6435;6484:2;6472:9;6463:7;6459:23;6455:32;6452:119;;;6490:79;;:::i;:::-;6452:119;6610:1;6635:53;6680:7;6671:6;6660:9;6656:22;6635:53;:::i;:::-;6625:63;;6581:117;6737:2;6763:53;6808:7;6799:6;6788:9;6784:22;6763:53;:::i;:::-;6753:63;;6708:118;6359:474;;;;;:::o;6839:539::-;6923:6;6972:2;6960:9;6951:7;6947:23;6943:32;6940:119;;;6978:79;;:::i;:::-;6940:119;7126:1;7115:9;7111:17;7098:31;7156:18;7148:6;7145:30;7142:117;;;7178:79;;:::i;:::-;7142:117;7283:78;7353:7;7344:6;7333:9;7329:22;7283:78;:::i;:::-;7273:88;;7069:302;6839:539;;;;:::o;7384:323::-;7440:6;7489:2;7477:9;7468:7;7464:23;7460:32;7457:119;;;7495:79;;:::i;:::-;7457:119;7615:1;7640:50;7682:7;7673:6;7662:9;7658:22;7640:50;:::i;:::-;7630:60;;7586:114;7384:323;;;;:::o;7713:327::-;7771:6;7820:2;7808:9;7799:7;7795:23;7791:32;7788:119;;;7826:79;;:::i;:::-;7788:119;7946:1;7971:52;8015:7;8006:6;7995:9;7991:22;7971:52;:::i;:::-;7961:62;;7917:116;7713:327;;;;:::o;8046:349::-;8115:6;8164:2;8152:9;8143:7;8139:23;8135:32;8132:119;;;8170:79;;:::i;:::-;8132:119;8290:1;8315:63;8370:7;8361:6;8350:9;8346:22;8315:63;:::i;:::-;8305:73;;8261:127;8046:349;;;;:::o;8401:529::-;8472:6;8480;8529:2;8517:9;8508:7;8504:23;8500:32;8497:119;;;8535:79;;:::i;:::-;8497:119;8683:1;8672:9;8668:17;8655:31;8713:18;8705:6;8702:30;8699:117;;;8735:79;;:::i;:::-;8699:117;8848:65;8905:7;8896:6;8885:9;8881:22;8848:65;:::i;:::-;8830:83;;;;8626:297;8401:529;;;;;:::o;8936:329::-;8995:6;9044:2;9032:9;9023:7;9019:23;9015:32;9012:119;;;9050:79;;:::i;:::-;9012:119;9170:1;9195:53;9240:7;9231:6;9220:9;9216:22;9195:53;:::i;:::-;9185:63;;9141:117;8936:329;;;;:::o;9271:761::-;9355:6;9363;9371;9379;9428:3;9416:9;9407:7;9403:23;9399:33;9396:120;;;9435:79;;:::i;:::-;9396:120;9555:1;9580:53;9625:7;9616:6;9605:9;9601:22;9580:53;:::i;:::-;9570:63;;9526:117;9682:2;9708:51;9751:7;9742:6;9731:9;9727:22;9708:51;:::i;:::-;9698:61;;9653:116;9808:2;9834:53;9879:7;9870:6;9859:9;9855:22;9834:53;:::i;:::-;9824:63;;9779:118;9936:2;9962:53;10007:7;9998:6;9987:9;9983:22;9962:53;:::i;:::-;9952:63;;9907:118;9271:761;;;;;;;:::o;10038:118::-;10125:24;10143:5;10125:24;:::i;:::-;10120:3;10113:37;10038:118;;:::o;10162:157::-;10267:45;10287:24;10305:5;10287:24;:::i;:::-;10267:45;:::i;:::-;10262:3;10255:58;10162:157;;:::o;10325:109::-;10406:21;10421:5;10406:21;:::i;:::-;10401:3;10394:34;10325:109;;:::o;10440:118::-;10527:24;10545:5;10527:24;:::i;:::-;10522:3;10515:37;10440:118;;:::o;10564:157::-;10669:45;10689:24;10707:5;10689:24;:::i;:::-;10669:45;:::i;:::-;10664:3;10657:58;10564:157;;:::o;10727:360::-;10813:3;10841:38;10873:5;10841:38;:::i;:::-;10895:70;10958:6;10953:3;10895:70;:::i;:::-;10888:77;;10974:52;11019:6;11014:3;11007:4;11000:5;10996:16;10974:52;:::i;:::-;11051:29;11073:6;11051:29;:::i;:::-;11046:3;11042:39;11035:46;;10817:270;10727:360;;;;:::o;11093:364::-;11181:3;11209:39;11242:5;11209:39;:::i;:::-;11264:71;11328:6;11323:3;11264:71;:::i;:::-;11257:78;;11344:52;11389:6;11384:3;11377:4;11370:5;11366:16;11344:52;:::i;:::-;11421:29;11443:6;11421:29;:::i;:::-;11416:3;11412:39;11405:46;;11185:272;11093:364;;;;:::o;11463:377::-;11569:3;11597:39;11630:5;11597:39;:::i;:::-;11652:89;11734:6;11729:3;11652:89;:::i;:::-;11645:96;;11750:52;11795:6;11790:3;11783:4;11776:5;11772:16;11750:52;:::i;:::-;11827:6;11822:3;11818:16;11811:23;;11573:267;11463:377;;;;:::o;11846:366::-;11988:3;12009:67;12073:2;12068:3;12009:67;:::i;:::-;12002:74;;12085:93;12174:3;12085:93;:::i;:::-;12203:2;12198:3;12194:12;12187:19;;11846:366;;;:::o;12218:::-;12360:3;12381:67;12445:2;12440:3;12381:67;:::i;:::-;12374:74;;12457:93;12546:3;12457:93;:::i;:::-;12575:2;12570:3;12566:12;12559:19;;12218:366;;;:::o;12590:402::-;12750:3;12771:85;12853:2;12848:3;12771:85;:::i;:::-;12764:92;;12865:93;12954:3;12865:93;:::i;:::-;12983:2;12978:3;12974:12;12967:19;;12590:402;;;:::o;12998:366::-;13140:3;13161:67;13225:2;13220:3;13161:67;:::i;:::-;13154:74;;13237:93;13326:3;13237:93;:::i;:::-;13355:2;13350:3;13346:12;13339:19;;12998:366;;;:::o;13370:::-;13512:3;13533:67;13597:2;13592:3;13533:67;:::i;:::-;13526:74;;13609:93;13698:3;13609:93;:::i;:::-;13727:2;13722:3;13718:12;13711:19;;13370:366;;;:::o;13742:::-;13884:3;13905:67;13969:2;13964:3;13905:67;:::i;:::-;13898:74;;13981:93;14070:3;13981:93;:::i;:::-;14099:2;14094:3;14090:12;14083:19;;13742:366;;;:::o;14114:::-;14256:3;14277:67;14341:2;14336:3;14277:67;:::i;:::-;14270:74;;14353:93;14442:3;14353:93;:::i;:::-;14471:2;14466:3;14462:12;14455:19;;14114:366;;;:::o;14486:::-;14628:3;14649:67;14713:2;14708:3;14649:67;:::i;:::-;14642:74;;14725:93;14814:3;14725:93;:::i;:::-;14843:2;14838:3;14834:12;14827:19;;14486:366;;;:::o;14858:::-;15000:3;15021:67;15085:2;15080:3;15021:67;:::i;:::-;15014:74;;15097:93;15186:3;15097:93;:::i;:::-;15215:2;15210:3;15206:12;15199:19;;14858:366;;;:::o;15230:400::-;15390:3;15411:84;15493:1;15488:3;15411:84;:::i;:::-;15404:91;;15504:93;15593:3;15504:93;:::i;:::-;15622:1;15617:3;15613:11;15606:18;;15230:400;;;:::o;15636:366::-;15778:3;15799:67;15863:2;15858:3;15799:67;:::i;:::-;15792:74;;15875:93;15964:3;15875:93;:::i;:::-;15993:2;15988:3;15984:12;15977:19;;15636:366;;;:::o;16008:::-;16150:3;16171:67;16235:2;16230:3;16171:67;:::i;:::-;16164:74;;16247:93;16336:3;16247:93;:::i;:::-;16365:2;16360:3;16356:12;16349:19;;16008:366;;;:::o;16380:398::-;16539:3;16560:83;16641:1;16636:3;16560:83;:::i;:::-;16553:90;;16652:93;16741:3;16652:93;:::i;:::-;16770:1;16765:3;16761:11;16754:18;;16380:398;;;:::o;16784:366::-;16926:3;16947:67;17011:2;17006:3;16947:67;:::i;:::-;16940:74;;17023:93;17112:3;17023:93;:::i;:::-;17141:2;17136:3;17132:12;17125:19;;16784:366;;;:::o;17156:118::-;17243:24;17261:5;17243:24;:::i;:::-;17238:3;17231:37;17156:118;;:::o;17280:157::-;17385:45;17405:24;17423:5;17405:24;:::i;:::-;17385:45;:::i;:::-;17380:3;17373:58;17280:157;;:::o;17443:112::-;17526:22;17542:5;17526:22;:::i;:::-;17521:3;17514:35;17443:112;;:::o;17561:397::-;17701:3;17716:75;17787:3;17778:6;17716:75;:::i;:::-;17816:2;17811:3;17807:12;17800:19;;17829:75;17900:3;17891:6;17829:75;:::i;:::-;17929:2;17924:3;17920:12;17913:19;;17949:3;17942:10;;17561:397;;;;;:::o;17964:701::-;18245:3;18267:95;18358:3;18349:6;18267:95;:::i;:::-;18260:102;;18379:95;18470:3;18461:6;18379:95;:::i;:::-;18372:102;;18491:148;18635:3;18491:148;:::i;:::-;18484:155;;18656:3;18649:10;;17964:701;;;;;:::o;18671:522::-;18884:3;18906:148;19050:3;18906:148;:::i;:::-;18899:155;;19064:75;19135:3;19126:6;19064:75;:::i;:::-;19164:2;19159:3;19155:12;19148:19;;19184:3;19177:10;;18671:522;;;;:::o;19199:379::-;19383:3;19405:147;19548:3;19405:147;:::i;:::-;19398:154;;19569:3;19562:10;;19199:379;;;:::o;19584:222::-;19677:4;19715:2;19704:9;19700:18;19692:26;;19728:71;19796:1;19785:9;19781:17;19772:6;19728:71;:::i;:::-;19584:222;;;;:::o;19812:640::-;20007:4;20045:3;20034:9;20030:19;20022:27;;20059:71;20127:1;20116:9;20112:17;20103:6;20059:71;:::i;:::-;20140:72;20208:2;20197:9;20193:18;20184:6;20140:72;:::i;:::-;20222;20290:2;20279:9;20275:18;20266:6;20222:72;:::i;:::-;20341:9;20335:4;20331:20;20326:2;20315:9;20311:18;20304:48;20369:76;20440:4;20431:6;20369:76;:::i;:::-;20361:84;;19812:640;;;;;;;:::o;20458:210::-;20545:4;20583:2;20572:9;20568:18;20560:26;;20596:65;20658:1;20647:9;20643:17;20634:6;20596:65;:::i;:::-;20458:210;;;;:::o;20674:545::-;20847:4;20885:3;20874:9;20870:19;20862:27;;20899:71;20967:1;20956:9;20952:17;20943:6;20899:71;:::i;:::-;20980:68;21044:2;21033:9;21029:18;21020:6;20980:68;:::i;:::-;21058:72;21126:2;21115:9;21111:18;21102:6;21058:72;:::i;:::-;21140;21208:2;21197:9;21193:18;21184:6;21140:72;:::i;:::-;20674:545;;;;;;;:::o;21225:313::-;21338:4;21376:2;21365:9;21361:18;21353:26;;21425:9;21419:4;21415:20;21411:1;21400:9;21396:17;21389:47;21453:78;21526:4;21517:6;21453:78;:::i;:::-;21445:86;;21225:313;;;;:::o;21544:419::-;21710:4;21748:2;21737:9;21733:18;21725:26;;21797:9;21791:4;21787:20;21783:1;21772:9;21768:17;21761:47;21825:131;21951:4;21825:131;:::i;:::-;21817:139;;21544:419;;;:::o;21969:::-;22135:4;22173:2;22162:9;22158:18;22150:26;;22222:9;22216:4;22212:20;22208:1;22197:9;22193:17;22186:47;22250:131;22376:4;22250:131;:::i;:::-;22242:139;;21969:419;;;:::o;22394:::-;22560:4;22598:2;22587:9;22583:18;22575:26;;22647:9;22641:4;22637:20;22633:1;22622:9;22618:17;22611:47;22675:131;22801:4;22675:131;:::i;:::-;22667:139;;22394:419;;;:::o;22819:::-;22985:4;23023:2;23012:9;23008:18;23000:26;;23072:9;23066:4;23062:20;23058:1;23047:9;23043:17;23036:47;23100:131;23226:4;23100:131;:::i;:::-;23092:139;;22819:419;;;:::o;23244:::-;23410:4;23448:2;23437:9;23433:18;23425:26;;23497:9;23491:4;23487:20;23483:1;23472:9;23468:17;23461:47;23525:131;23651:4;23525:131;:::i;:::-;23517:139;;23244:419;;;:::o;23669:::-;23835:4;23873:2;23862:9;23858:18;23850:26;;23922:9;23916:4;23912:20;23908:1;23897:9;23893:17;23886:47;23950:131;24076:4;23950:131;:::i;:::-;23942:139;;23669:419;;;:::o;24094:::-;24260:4;24298:2;24287:9;24283:18;24275:26;;24347:9;24341:4;24337:20;24333:1;24322:9;24318:17;24311:47;24375:131;24501:4;24375:131;:::i;:::-;24367:139;;24094:419;;;:::o;24519:::-;24685:4;24723:2;24712:9;24708:18;24700:26;;24772:9;24766:4;24762:20;24758:1;24747:9;24743:17;24736:47;24800:131;24926:4;24800:131;:::i;:::-;24792:139;;24519:419;;;:::o;24944:::-;25110:4;25148:2;25137:9;25133:18;25125:26;;25197:9;25191:4;25187:20;25183:1;25172:9;25168:17;25161:47;25225:131;25351:4;25225:131;:::i;:::-;25217:139;;24944:419;;;:::o;25369:::-;25535:4;25573:2;25562:9;25558:18;25550:26;;25622:9;25616:4;25612:20;25608:1;25597:9;25593:17;25586:47;25650:131;25776:4;25650:131;:::i;:::-;25642:139;;25369:419;;;:::o;25794:::-;25960:4;25998:2;25987:9;25983:18;25975:26;;26047:9;26041:4;26037:20;26033:1;26022:9;26018:17;26011:47;26075:131;26201:4;26075:131;:::i;:::-;26067:139;;25794:419;;;:::o;26219:222::-;26312:4;26350:2;26339:9;26335:18;26327:26;;26363:71;26431:1;26420:9;26416:17;26407:6;26363:71;:::i;:::-;26219:222;;;;:::o;26447:129::-;26481:6;26508:20;;:::i;:::-;26498:30;;26537:33;26565:4;26557:6;26537:33;:::i;:::-;26447:129;;;:::o;26582:75::-;26615:6;26648:2;26642:9;26632:19;;26582:75;:::o;26663:311::-;26740:4;26830:18;26822:6;26819:30;26816:56;;;26852:18;;:::i;:::-;26816:56;26902:4;26894:6;26890:17;26882:25;;26962:4;26956;26952:15;26944:23;;26663:311;;;:::o;26980:307::-;27041:4;27131:18;27123:6;27120:30;27117:56;;;27153:18;;:::i;:::-;27117:56;27191:29;27213:6;27191:29;:::i;:::-;27183:37;;27275:4;27269;27265:15;27257:23;;26980:307;;;:::o;27293:98::-;27344:6;27378:5;27372:12;27362:22;;27293:98;;;:::o;27397:99::-;27449:6;27483:5;27477:12;27467:22;;27397:99;;;:::o;27502:168::-;27585:11;27619:6;27614:3;27607:19;27659:4;27654:3;27650:14;27635:29;;27502:168;;;;:::o;27676:147::-;27777:11;27814:3;27799:18;;27676:147;;;;:::o;27829:169::-;27913:11;27947:6;27942:3;27935:19;27987:4;27982:3;27978:14;27963:29;;27829:169;;;;:::o;28004:148::-;28106:11;28143:3;28128:18;;28004:148;;;;:::o;28158:305::-;28198:3;28217:20;28235:1;28217:20;:::i;:::-;28212:25;;28251:20;28269:1;28251:20;:::i;:::-;28246:25;;28405:1;28337:66;28333:74;28330:1;28327:81;28324:107;;;28411:18;;:::i;:::-;28324:107;28455:1;28452;28448:9;28441:16;;28158:305;;;;:::o;28469:185::-;28509:1;28526:20;28544:1;28526:20;:::i;:::-;28521:25;;28560:20;28578:1;28560:20;:::i;:::-;28555:25;;28599:1;28589:35;;28604:18;;:::i;:::-;28589:35;28646:1;28643;28639:9;28634:14;;28469:185;;;;:::o;28660:348::-;28700:7;28723:20;28741:1;28723:20;:::i;:::-;28718:25;;28757:20;28775:1;28757:20;:::i;:::-;28752:25;;28945:1;28877:66;28873:74;28870:1;28867:81;28862:1;28855:9;28848:17;28844:105;28841:131;;;28952:18;;:::i;:::-;28841:131;29000:1;28997;28993:9;28982:20;;28660:348;;;;:::o;29014:191::-;29054:4;29074:20;29092:1;29074:20;:::i;:::-;29069:25;;29108:20;29126:1;29108:20;:::i;:::-;29103:25;;29147:1;29144;29141:8;29138:34;;;29152:18;;:::i;:::-;29138:34;29197:1;29194;29190:9;29182:17;;29014:191;;;;:::o;29211:96::-;29248:7;29277:24;29295:5;29277:24;:::i;:::-;29266:35;;29211:96;;;:::o;29313:90::-;29347:7;29390:5;29383:13;29376:21;29365:32;;29313:90;;;:::o;29409:77::-;29446:7;29475:5;29464:16;;29409:77;;;:::o;29492:149::-;29528:7;29568:66;29561:5;29557:78;29546:89;;29492:149;;;:::o;29647:126::-;29684:7;29724:42;29717:5;29713:54;29702:65;;29647:126;;;:::o;29779:77::-;29816:7;29845:5;29834:16;;29779:77;;;:::o;29862:86::-;29897:7;29937:4;29930:5;29926:16;29915:27;;29862:86;;;:::o;29954:154::-;30038:6;30033:3;30028;30015:30;30100:1;30091:6;30086:3;30082:16;30075:27;29954:154;;;:::o;30114:307::-;30182:1;30192:113;30206:6;30203:1;30200:13;30192:113;;;30291:1;30286:3;30282:11;30276:18;30272:1;30267:3;30263:11;30256:39;30228:2;30225:1;30221:10;30216:15;;30192:113;;;30323:6;30320:1;30317:13;30314:101;;;30403:1;30394:6;30389:3;30385:16;30378:27;30314:101;30163:258;30114:307;;;:::o;30427:320::-;30471:6;30508:1;30502:4;30498:12;30488:22;;30555:1;30549:4;30545:12;30576:18;30566:81;;30632:4;30624:6;30620:17;30610:27;;30566:81;30694:2;30686:6;30683:14;30663:18;30660:38;30657:84;;;30713:18;;:::i;:::-;30657:84;30478:269;30427:320;;;:::o;30753:281::-;30836:27;30858:4;30836:27;:::i;:::-;30828:6;30824:40;30966:6;30954:10;30951:22;30930:18;30918:10;30915:34;30912:62;30909:88;;;30977:18;;:::i;:::-;30909:88;31017:10;31013:2;31006:22;30796:238;30753:281;;:::o;31040:233::-;31079:3;31102:24;31120:5;31102:24;:::i;:::-;31093:33;;31148:66;31141:5;31138:77;31135:103;;;31218:18;;:::i;:::-;31135:103;31265:1;31258:5;31254:13;31247:20;;31040:233;;;:::o;31279:100::-;31318:7;31347:26;31367:5;31347:26;:::i;:::-;31336:37;;31279:100;;;:::o;31385:79::-;31424:7;31453:5;31442:16;;31385:79;;;:::o;31470:94::-;31509:7;31538:20;31552:5;31538:20;:::i;:::-;31527:31;;31470:94;;;:::o;31570:79::-;31609:7;31638:5;31627:16;;31570:79;;;:::o;31655:176::-;31687:1;31704:20;31722:1;31704:20;:::i;:::-;31699:25;;31738:20;31756:1;31738:20;:::i;:::-;31733:25;;31777:1;31767:35;;31782:18;;:::i;:::-;31767:35;31823:1;31820;31816:9;31811:14;;31655:176;;;;:::o;31837:180::-;31885:77;31882:1;31875:88;31982:4;31979:1;31972:15;32006:4;32003:1;31996:15;32023:180;32071:77;32068:1;32061:88;32168:4;32165:1;32158:15;32192:4;32189:1;32182:15;32209:180;32257:77;32254:1;32247:88;32354:4;32351:1;32344:15;32378:4;32375:1;32368:15;32395:180;32443:77;32440:1;32433:88;32540:4;32537:1;32530:15;32564:4;32561:1;32554:15;32581:180;32629:77;32626:1;32619:88;32726:4;32723:1;32716:15;32750:4;32747:1;32740:15;32767:180;32815:77;32812:1;32805:88;32912:4;32909:1;32902:15;32936:4;32933:1;32926:15;32953:117;33062:1;33059;33052:12;33076:117;33185:1;33182;33175:12;33199:117;33308:1;33305;33298:12;33322:117;33431:1;33428;33421:12;33445:117;33554:1;33551;33544:12;33568:117;33677:1;33674;33667:12;33691:102;33732:6;33783:2;33779:7;33774:2;33767:5;33763:14;33759:28;33749:38;;33691:102;;;:::o;33799:94::-;33832:8;33880:5;33876:2;33872:14;33851:35;;33799:94;;;:::o;33899:174::-;34039:26;34035:1;34027:6;34023:14;34016:50;33899:174;:::o;34079:181::-;34219:33;34215:1;34207:6;34203:14;34196:57;34079:181;:::o;34266:214::-;34406:66;34402:1;34394:6;34390:14;34383:90;34266:214;:::o;34486:164::-;34626:16;34622:1;34614:6;34610:14;34603:40;34486:164;:::o;34656:225::-;34796:34;34792:1;34784:6;34780:14;34773:58;34865:8;34860:2;34852:6;34848:15;34841:33;34656:225;:::o;34887:221::-;35027:34;35023:1;35015:6;35011:14;35004:58;35096:4;35091:2;35083:6;35079:15;35072:29;34887:221;:::o;35114:165::-;35254:17;35250:1;35242:6;35238:14;35231:41;35114:165;:::o;35285:221::-;35425:34;35421:1;35413:6;35409:14;35402:58;35494:4;35489:2;35481:6;35477:15;35470:29;35285:221;:::o;35512:174::-;35652:26;35648:1;35640:6;35636:14;35629:50;35512:174;:::o;35692:155::-;35832:7;35828:1;35820:6;35816:14;35809:31;35692:155;:::o;35853:182::-;35993:34;35989:1;35981:6;35977:14;35970:58;35853:182;:::o;36041:234::-;36181:34;36177:1;36169:6;36165:14;36158:58;36250:17;36245:2;36237:6;36233:15;36226:42;36041:234;:::o;36281:114::-;;:::o;36401:170::-;36541:22;36537:1;36529:6;36525:14;36518:46;36401:170;:::o;36577:122::-;36650:24;36668:5;36650:24;:::i;:::-;36643:5;36640:35;36630:63;;36689:1;36686;36679:12;36630:63;36577:122;:::o;36705:116::-;36775:21;36790:5;36775:21;:::i;:::-;36768:5;36765:32;36755:60;;36811:1;36808;36801:12;36755:60;36705:116;:::o;36827:122::-;36900:24;36918:5;36900:24;:::i;:::-;36893:5;36890:35;36880:63;;36939:1;36936;36929:12;36880:63;36827:122;:::o;36955:120::-;37027:23;37044:5;37027:23;:::i;:::-;37020:5;37017:34;37007:62;;37065:1;37062;37055:12;37007:62;36955:120;:::o;37081:122::-;37154:24;37172:5;37154:24;:::i;:::-;37147:5;37144:35;37134:63;;37193:1;37190;37183:12;37134:63;37081:122;:::o;37209:118::-;37280:22;37296:5;37280:22;:::i;:::-;37273:5;37270:33;37260:61;;37317:1;37314;37307:12;37260:61;37209:118;:::o
Swarm Source
ipfs://6ecc17912b375ebbb9ea569e7a12537171f387d18b262861a4e18e6264b21841
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.