NFT
Overview
TokenID
1279
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Moondust
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 /* __ __ _ _ | \/ | ___ ___ _ __ __| |_ _ ___| |_ | |\/| |/ _ \ / _ \| '_ \ / _` | | | / __| __| | | | | (_) | (_) | | | | (_| | |_| \__ \ |_ |_| |_|\___/ \___/|_| |_|\__,_|\__,_|___/\__| */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/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.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721ABurnable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721ABurnable compliant contract. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 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. 48 is the ASCII index of '0'. 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: erc721a/contracts/extensions/ERC721ABurnable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Burnable Token * @dev ERC721A Token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } //BURN NFT REWARDS interface example_NFT { function mint(address _to, uint256 _mintAmount) external payable; } // File: contracts/Moondust.sol pragma solidity >=0.8.0 <0.9.0; contract Moondust is ERC721AQueryable, ERC721ABurnable, Ownable, ReentrancyGuard { using Strings for uint256; string public uriPrefix; string public notRevealedURI; string public uriSuffix = ".json"; uint256 public cost = 0.0066 ether; uint256 public maxSupply = 6666; uint256 public whitelistSupply = 1332; uint256 public WMmaxPerWallet = 2; uint256 public PMmaxPerWallet = 6; uint256 public maxMintAmountPerTx = 6; bool public paused = false; bool public revealed = false; bool public moonListMint = true; bool public burnEnabled = false; mapping(address => uint) public burntByOwner; mapping(address => uint) public mintedByOwner; mapping(address => bool) public freeClaimed; address[] public whitelistedAddresses; address public parentAddress = 0xe1847fd600ecd31B060522D0acFbA3EA07002E98; example_NFT exampleContract = example_NFT(parentAddress); constructor() ERC721A ( "Moondust", "MDT" ) { setNotRevealedURI( "ipfs://QmUq2hzGj6uVrDW8n9BrYX2gN7APdDpyweWPfbqbFRnDLx/hidden.json" ); } // ~~~~~~~~~~~~~~~~~~~~ Burn Dust Function ~~~~~~~~~~~~~~~~~~~~ // Burn tokens. function BurnDust(uint _qty) public { require(burnEnabled == true, "Burn is not active."); IERC721AQueryable token = IERC721AQueryable(address(this)); uint[] memory ownedTokens = token.tokensOfOwner(msg.sender); require(_qty == 3, "You must burn 3 Dust to get a WIZARD"); for (uint256 i = 0; i < _qty; i++) { burn(ownedTokens[i]); burntByOwner[msg.sender]++; } exampleContract.mint(msg.sender, 1); } // ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~ modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); if (moonListMint == true) { require(isWhitelisted(msg.sender), "MoonList MINT: user is not whitelisted."); require(_mintAmount + mintedByOwner[msg.sender] <= WMmaxPerWallet, "Max per wallet exceeded!"); } else { require(_mintAmount + mintedByOwner[msg.sender] <= PMmaxPerWallet, "Max per wallet exceeded!"); } require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } modifier mintPriceCompliance(uint256 _mintAmount) { if (msg.sender != owner()) { require(!paused, "The contract is paused!"); if (moonListMint == true) { require(isWhitelisted(msg.sender), "MoonList MINT: user is not whitelisted."); } require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } _; } // ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~ //MOONLIST MINT function MintMoonlist(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { if (msg.sender != owner()) { require(!paused, "The contract is paused!"); require(moonListMint, "Moonlist mint is not active."); } require(whitelistSupply > 0, "Whitelist Supply SOLD OUT!"); require(whitelistSupply - _mintAmount >= 0, "Invalid mint amount!"); whitelistSupply -= _mintAmount; mintedByOwner[msg.sender] += _mintAmount; _safeMint(_msgSender(), _mintAmount); } //PAID MINT function MintPublic(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { if (msg.sender != owner()) { require(!moonListMint, "Public mint is not active yet."); } mintedByOwner[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } //FREE MINT function MintPublicFree() public payable { if (msg.sender != owner()) { require(!paused, "The contract is paused!"); require(!moonListMint, "Public mint is not active yet."); require(freeClaimed[msg.sender] == false, "Free mint already claimed."); require(mintedByOwner[msg.sender] < PMmaxPerWallet, "Max free mint amount per wallet exceeded."); } require(totalSupply() + 1 <= maxSupply, "Mint amount exceeds max supply!"); freeClaimed[msg.sender] = true; mintedByOwner[msg.sender] += 1; _safeMint(msg.sender, 1); } //MINT FOR ADDRESS function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); _safeMint(_receiver, _mintAmount); } // ~~~~~~~~~~~~~~~~~~~~ Various Checks ~~~~~~~~~~~~~~~~~~~~ // Check if address is whitelisted function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return notRevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } // ~~~~~~~~~~~~~~~~~~~~ onlyOwner Functions ~~~~~~~~~~~~~~~~~~~~ function setBurntByAddress(uint _burnAmount, address _address) public onlyOwner { burntByOwner[_address] = _burnAmount; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setWL_MaxPerWallet(uint256 _maxPerWallet) public onlyOwner { WMmaxPerWallet = _maxPerWallet; } function setPM_MaxPerWallet(uint256 _maxPerWallet) public onlyOwner { PMmaxPerWallet = _maxPerWallet; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function reveal(bool _state) public onlyOwner { revealed = _state; } function setBurnEnabled(bool _state) public onlyOwner { burnEnabled = _state; } function setPaused(bool _state) public onlyOwner { paused = _state; } // Whitelist addresses function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } // Internal function to change contract presale state ON and OFF function setOnlyMoonlist() public onlyOwner { if (moonListMint == true) { moonListMint = false; } else { moonListMint = true; } } // ~~~~~~~~~~~~~~~~~~~~ Withdraw Functions ~~~~~~~~~~~~~~~~~~~~ function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"InvalidQueryRange","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":"uint256","name":"_qty","type":"uint256"}],"name":"BurnDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintMoonlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintPublicFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PMmaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WMmaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burntByOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedByOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moonListMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parentAddress","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","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":"bool","name":"_state","type":"bool"}],"name":"setBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnAmount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"setBurntByAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyMoonlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setPM_MaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setWL_MaxPerWallet","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000476565b50661772aa3f848000600d55611a0a600e55610534600f556002601055600660115560066012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff0219169083151502179055506000601360036101000a81548160ff02191690831515021790555073e1847fd600ecd31b060522d0acfba3ea07002e98601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001a957600080fd5b506040518060400160405280600881526020017f4d6f6f6e647573740000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d4454000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200022e92919062000476565b5080600390805190602001906200024792919062000476565b5062000258620002b860201b60201c565b60008190555050506200028062000274620002c160201b60201c565b620002c960201b60201c565b6001600981905550620002b26040518060800160405280604181526020016200622d604191396200038f60201b60201c565b6200060e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200039f620003bb60201b60201c565b80600b9080519060200190620003b792919062000476565b5050565b620003cb620002c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f16200044c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200044a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000441906200054d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004849062000580565b90600052602060002090601f016020900481019282620004a85760008555620004f4565b82601f10620004c357805160ff1916838001178555620004f4565b82800160010185558215620004f4579182015b82811115620004f3578251825591602001919060010190620004d6565b5b50905062000503919062000507565b5090565b5b808211156200052257600081600090555060010162000508565b5090565b6000620005356020836200056f565b91506200054282620005e5565b602082019050919050565b60006020820190508181036000830152620005688162000526565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200059957607f821691505b60208210811415620005b057620005af620005b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615c0f806200061e6000396000f3fe60806040526004361061038b5760003560e01c806370a08231116101dc578063a32cdd0e11610102578063c23dc68f116100a0578063edec5f271161006f578063edec5f2714610d40578063efbd73f414610d69578063f2c4ce1e14610d92578063f2fde38b14610dbb5761038b565b8063c23dc68f14610c5e578063c87b56dd14610c9b578063d5abeb0114610cd8578063e985e9c514610d035761038b565b8063adff367c116100dc578063adff367c14610ba6578063b071401b14610bcf578063b88d4fde14610bf8578063ba4e5c4914610c215761038b565b8063a32cdd0e14610b36578063a984cd7514610b52578063a9acda5b14610b7d5761038b565b80638462151c1161017a57806394354fd01161014957806394354fd014610a7a57806395d89b4114610aa557806399a2557a14610ad0578063a22cb46514610b0d5761038b565b80638462151c146109df5780638da5cb5b14610a1c578063932f426a14610a47578063940cd05b14610a515761038b565b80637b2c835f116101b65780637b2c835f146109395780637ec4a659146109625780638263ec8d1461098b57806382fc8563146109b65761038b565b806370a08231146108ba578063715018a6146108f7578063722503801461090e5761038b565b80633ccfd60b116102c15780635503a0e81161025f57806361c0b6a01161022e57806361c0b6a0146107f957806362b99ad4146108365780636352211e14610861578063643439df1461089e5761038b565b80635503a0e81461073b5780635bbb2177146107665780635c975abb146107a35780635dc96d16146107ce5761038b565b806344a0d68a1161029b57806344a0d68a14610693578063476da1fa146106bc57806351830227146106e55780635248cb39146107105761038b565b80633ccfd60b1461062a57806342842e0e1461064157806342966c681461066a5761038b565b806313faede61161032e5780631a71b1d5116103085780631a71b1d51461055c57806323b872dd1461059957806333e61413146105c25780633af32abf146105ed5761038b565b806313faede6146104dd57806316c38b3c1461050857806318160ddd146105315761038b565b8063081812fc1161036a578063081812fc14610423578063095ea7b3146104605780630f5ffe2a1461048957806312d6c5a4146104c65761038b565b8062821de31461039057806301ffc9a7146103bb57806306fdde03146103f8575b600080fd5b34801561039c57600080fd5b506103a5610de4565b6040516103b29190614ed4565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd91906147a6565b610e0a565b6040516103ef9190614fa8565b60405180910390f35b34801561040457600080fd5b5061040d610e9c565b60405161041a9190614fc3565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190614849565b610f2e565b6040516104579190614ed4565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190614607565b610faa565b005b34801561049557600080fd5b506104b060048036038101906104ab9190614484565b6110eb565b6040516104bd9190615240565b60405180910390f35b3480156104d257600080fd5b506104db611103565b005b3480156104e957600080fd5b506104f2611165565b6040516104ff9190615240565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190614779565b61116b565b005b34801561053d57600080fd5b50610546611190565b6040516105539190615240565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190614484565b6111a7565b6040516105909190615240565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906144f1565b6111bf565b005b3480156105ce57600080fd5b506105d76114e4565b6040516105e49190615240565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190614484565b6114ea565b6040516106219190614fa8565b60405180910390f35b34801561063657600080fd5b5061063f611599565b005b34801561064d57600080fd5b50610668600480360381019061066391906144f1565b611677565b005b34801561067657600080fd5b50610691600480360381019061068c9190614849565b611697565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190614849565b6116a5565b005b3480156106c857600080fd5b506106e360048036038101906106de9190614849565b6116b7565b005b3480156106f157600080fd5b506106fa6116c9565b6040516107079190614fa8565b60405180910390f35b34801561071c57600080fd5b506107256116dc565b6040516107329190615240565b60405180910390f35b34801561074757600080fd5b506107506116e2565b60405161075d9190614fc3565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906146e7565b611770565b60405161079a9190614f64565b60405180910390f35b3480156107af57600080fd5b506107b8611831565b6040516107c59190614fa8565b60405180910390f35b3480156107da57600080fd5b506107e3611844565b6040516107f09190614fa8565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190614484565b611857565b60405161082d9190614fa8565b60405180910390f35b34801561084257600080fd5b5061084b611877565b6040516108589190614fc3565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614849565b611905565b6040516108959190614ed4565b60405180910390f35b6108b860048036038101906108b39190614849565b611917565b005b3480156108c657600080fd5b506108e160048036038101906108dc9190614484565b611d79565b6040516108ee9190615240565b60405180910390f35b34801561090357600080fd5b5061090c611e32565b005b34801561091a57600080fd5b50610923611e46565b6040516109309190614fc3565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190614779565b611ed4565b005b34801561096e57600080fd5b5061098960048036038101906109849190614800565b611ef9565b005b34801561099757600080fd5b506109a0611f1b565b6040516109ad9190615240565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190614876565b611f21565b005b3480156109eb57600080fd5b50610a066004803603810190610a019190614484565b611f71565b604051610a139190614f86565b60405180910390f35b348015610a2857600080fd5b50610a316120bb565b604051610a3e9190614ed4565b60405180910390f35b610a4f6120e5565b005b348015610a5d57600080fd5b50610a786004803603810190610a739190614779565b6123ea565b005b348015610a8657600080fd5b50610a8f61240f565b604051610a9c9190615240565b60405180910390f35b348015610ab157600080fd5b50610aba612415565b604051610ac79190614fc3565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190614647565b6124a7565b604051610b049190614f86565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f91906145c7565b6126bb565b005b610b506004803603810190610b4b9190614849565b612833565b005b348015610b5e57600080fd5b50610b67612c58565b604051610b749190614fa8565b60405180910390f35b348015610b8957600080fd5b50610ba46004803603810190610b9f9190614849565b612c6b565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc89190614849565b612c7d565b005b348015610bdb57600080fd5b50610bf66004803603810190610bf19190614849565b612ed9565b005b348015610c0457600080fd5b50610c1f6004803603810190610c1a9190614544565b612eeb565b005b348015610c2d57600080fd5b50610c486004803603810190610c439190614849565b612f5e565b604051610c559190614ed4565b60405180910390f35b348015610c6a57600080fd5b50610c856004803603810190610c809190614849565b612f9d565b604051610c929190615225565b60405180910390f35b348015610ca757600080fd5b50610cc26004803603810190610cbd9190614849565b613007565b604051610ccf9190614fc3565b60405180910390f35b348015610ce457600080fd5b50610ced613160565b604051610cfa9190615240565b60405180910390f35b348015610d0f57600080fd5b50610d2a6004803603810190610d2591906144b1565b613166565b604051610d379190614fa8565b60405180910390f35b348015610d4c57600080fd5b50610d676004803603810190610d62919061469a565b6131fa565b005b348015610d7557600080fd5b50610d906004803603810190610d8b9190614876565b613226565b005b348015610d9e57600080fd5b50610db96004803603810190610db49190614800565b613293565b005b348015610dc757600080fd5b50610de26004803603810190610ddd9190614484565b6132b5565b005b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e6557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610eab906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed7906155e3565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b5050505050905090565b6000610f3982613339565b610f6f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fb582611905565b90508073ffffffffffffffffffffffffffffffffffffffff16610fd6613398565b73ffffffffffffffffffffffffffffffffffffffff16146110395761100281610ffd613398565b613166565b611038576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60146020528060005260406000206000915090505481565b61110b6133a0565b60011515601360029054906101000a900460ff1615151415611147576000601360026101000a81548160ff021916908315150217905550611163565b6001601360026101000a81548160ff0219169083151502179055505b565b600d5481565b6111736133a0565b80601360006101000a81548160ff02191690831515021790555050565b600061119a61341e565b6001546000540303905090565b60156020528060005260406000206000915090505481565b60006111ca82613427565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611231576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061123d846134f5565b91509150611253818761124e613398565b613517565b61129f5761126886611263613398565b613166565b61129e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611306576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611313868686600161355b565b801561131e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506113ec856113c8888887613561565b7c020000000000000000000000000000000000000000000000000000000017613589565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611474576000600185019050600060046000838152602001908152602001600020541415611472576000548114611471578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114dc86868660016135b4565b505050505050565b600f5481565b600080600090505b60178054905081101561158e578273ffffffffffffffffffffffffffffffffffffffff166017828154811061152a5761152961574d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561157b576001915050611594565b808061158690615646565b9150506114f2565b50600090505b919050565b6115a16133a0565b600260095414156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de906151e5565b60405180910390fd5b600260098190555060006115f96120bb565b73ffffffffffffffffffffffffffffffffffffffff164760405161161c90614ebf565b60006040518083038185875af1925050503d8060008114611659576040519150601f19603f3d011682016040523d82523d6000602084013e61165e565b606091505b505090508061166c57600080fd5b506001600981905550565b61169283838360405180602001604052806000815250612eeb565b505050565b6116a28160016135ba565b50565b6116ad6133a0565b80600d8190555050565b6116bf6133a0565b8060118190555050565b601360019054906101000a900460ff1681565b60105481565b600c80546116ef906155e3565b80601f016020809104026020016040519081016040528092919081815260200182805461171b906155e3565b80156117685780601f1061173d57610100808354040283529160200191611768565b820191906000526020600020905b81548152906001019060200180831161174b57829003601f168201915b505050505081565b606060008251905060008167ffffffffffffffff8111156117945761179361577c565b5b6040519080825280602002602001820160405280156117cd57816020015b6117ba613fe1565b8152602001906001900390816117b25790505b50905060005b828114611826576117fd8582815181106117f0576117ef61574d565b5b6020026020010151612f9d565b8282815181106118105761180f61574d565b5b60200260200101819052508060010190506117d3565b508092505050919050565b601360009054906101000a900460ff1681565b601360039054906101000a900460ff1681565b60166020528060005260406000206000915054906101000a900460ff1681565b600a8054611884906155e3565b80601f01602080910402602001604051908101604052809291908181526020018280546118b0906155e3565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b505050505081565b600061191082613427565b9050919050565b8060008111801561192a57506012548111155b611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090615005565b60405180910390fd5b60011515601360029054906101000a900460ff1615151415611a615761198e336114ea565b6119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906151c5565b60405180910390fd5b601054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611a1b91906153e3565b1115611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a53906151a5565b60405180910390fd5b611af1565b601154601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611aaf91906153e3565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae7906151a5565b60405180910390fd5b5b600e5481611afd611190565b611b0791906153e3565b1115611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90615145565b60405180910390fd5b81611b516120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c8957601360009054906101000a900460ff1615611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90615105565b60405180910390fd5b60011515601360029054906101000a900460ff1615151415611c3857611bf8336114ea565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906151c5565b60405180910390fd5b5b80600d54611c46919061546a565b341015611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90615205565b60405180910390fd5b5b611c916120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d1457601360029054906101000a900460ff1615611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90615085565b60405180910390fd5b5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6391906153e3565b92505081905550611d74338461380e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611de1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611e3a6133a0565b611e44600061382c565b565b600b8054611e53906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7f906155e3565b8015611ecc5780601f10611ea157610100808354040283529160200191611ecc565b820191906000526020600020905b815481529060010190602001808311611eaf57829003601f168201915b505050505081565b611edc6133a0565b80601360036101000a81548160ff02191690831515021790555050565b611f016133a0565b80600a9080519060200190611f17929190614030565b5050565b60115481565b611f296133a0565b81601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60606000806000611f8185611d79565b905060008167ffffffffffffffff811115611f9f57611f9e61577c565b5b604051908082528060200260200182016040528015611fcd5781602001602082028036833780820191505090505b509050611fd8613fe1565b6000611fe261341e565b90505b8386146120ad57611ff5816138f2565b9150816040015115612006576120a2565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461204657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156120a157808387806001019850815181106120945761209361574d565b5b6020026020010181815250505b5b806001019050611fe5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120ed6120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122d657601360009054906101000a900460ff161561216f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216690615105565b60405180910390fd5b601360029054906101000a900460ff16156121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690615085565b60405180910390fd5b60001515601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990615065565b60405180910390fd5b601154601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90615025565b60405180910390fd5b5b600e5460016122e3611190565b6122ed91906153e3565b111561232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906150a5565b60405180910390fd5b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d691906153e3565b925050819055506123e833600161380e565b565b6123f26133a0565b80601360016101000a81548160ff02191690831515021790555050565b60125481565b606060038054612424906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612450906155e3565b801561249d5780601f106124725761010080835404028352916020019161249d565b820191906000526020600020905b81548152906001019060200180831161248057829003601f168201915b5050505050905090565b60608183106124e2576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124ed61391d565b90506124f761341e565b8510156125095761250661341e565b94505b80841115612515578093505b600061252087611d79565b90508486101561254357600086860390508181101561253d578091505b50612548565b600090505b60008167ffffffffffffffff8111156125645761256361577c565b5b6040519080825280602002602001820160405280156125925781602001602082028036833780820191505090505b50905060008214156125aa57809450505050506126b4565b60006125b588612f9d565b9050600081604001516125ca57816000015190505b60008990505b8881141580156125e05750848714155b156126a6576125ee816138f2565b92508260400151156125ff5761269b565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461263f57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269a578084888060010199508151811061268d5761268c61574d565b5b6020026020010181815250505b5b8060010190506125d0565b508583528296505050505050505b9392505050565b6126c3613398565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612728576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612735613398565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127e2613398565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128279190614fa8565b60405180910390a35050565b8060008111801561284657506012548111155b612885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287c90615005565b60405180910390fd5b60011515601360029054906101000a900460ff161515141561297d576128aa336114ea565b6128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e0906151c5565b60405180910390fd5b601054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261293791906153e3565b1115612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296f906151a5565b60405180910390fd5b612a0d565b601154601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826129cb91906153e3565b1115612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906151a5565b60405180910390fd5b5b600e5481612a19611190565b612a2391906153e3565b1115612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90615145565b60405180910390fd5b612a6c6120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b3e57601360009054906101000a900460ff1615612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae590615105565b60405180910390fd5b601360029054906101000a900460ff16612b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b34906150c5565b60405180910390fd5b5b6000600f5411612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90615045565b60405180910390fd5b600082600f54612b9391906154c4565b1015612bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcb90615005565b60405180910390fd5b81600f6000828254612be691906154c4565b9250508190555081601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3c91906153e3565b92505081905550612c54612c4e613926565b8361380e565b5050565b601360029054906101000a900460ff1681565b612c736133a0565b8060108190555050565b60011515601360039054906101000a900460ff16151514612cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cca90615185565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff16638462151c336040518263ffffffff1660e01b8152600401612d139190614ed4565b60006040518083038186803b158015612d2b57600080fd5b505afa158015612d3f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612d689190614730565b905060038314612dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da490615165565b60405180910390fd5b60005b83811015612e4357612ddb828281518110612dce57612dcd61574d565b5b6020026020010151611697565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612e2b90615646565b91905055508080612e3b90615646565b915050612db0565b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193360016040518363ffffffff1660e01b8152600401612ea2929190614f3b565b600060405180830381600087803b158015612ebc57600080fd5b505af1158015612ed0573d6000803e3d6000fd5b50505050505050565b612ee16133a0565b8060128190555050565b612ef68484846111bf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f5857612f218484848461392e565b612f57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60178181548110612f6e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612fa5613fe1565b612fad613fe1565b612fb561341e565b831080612fc95750612fc561391d565b8310155b15612fd75780915050613002565b612fe0836138f2565b9050806040015115612ff55780915050613002565b612ffe83613a8e565b9150505b919050565b606061301282613339565b613051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304890615125565b60405180910390fd5b60001515601360019054906101000a900460ff16151514156130ff57600b805461307a906155e3565b80601f01602080910402602001604051908101604052809291908181526020018280546130a6906155e3565b80156130f35780601f106130c8576101008083540402835291602001916130f3565b820191906000526020600020905b8154815290600101906020018083116130d657829003601f168201915b5050505050905061315b565b6000613109613aae565b905060008151116131295760405180602001604052806000815250613157565b8061313384613b40565b600c60405160200161314793929190614e8e565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6132026133a0565b6017600061321091906140b6565b8181601791906132219291906140d7565b505050565b61322e6133a0565b600e548261323a611190565b61324491906153e3565b1115613285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327c90615145565b60405180910390fd5b61328f818361380e565b5050565b61329b6133a0565b80600b90805190602001906132b1929190614030565b5050565b6132bd6133a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561332d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332490614fe5565b60405180910390fd5b6133368161382c565b50565b60008161334461341e565b11158015613353575060005482105b8015613391575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6133a8613926565b73ffffffffffffffffffffffffffffffffffffffff166133c66120bb565b73ffffffffffffffffffffffffffffffffffffffff161461341c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613413906150e5565b60405180910390fd5b565b60006001905090565b6000808290508061343661341e565b116134be576000548110156134bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156134bb575b60008114156134b1576004600083600190039350838152602001908152602001600020549050613486565b80925050506134f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613578868684613ca1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006135c583613427565b905060008190506000806135d8866134f5565b915091508415613641576135f481846135ef613398565b613517565b6136405761360983613604613398565b613166565b61363f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61364f83600088600161355b565b801561365a57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613702836136bf85600088613561565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717613589565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561378a576000600187019050600060046000838152602001908152602001600020541415613788576000548114613787578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137f48360008860016135b4565b600160008154809291906001019190505550505050505050565b613828828260405180602001604052806000815250613caa565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6138fa613fe1565b6139166004600084815260200190815260200160002054613d47565b9050919050565b60008054905090565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613954613398565b8786866040518563ffffffff1660e01b81526004016139769493929190614eef565b602060405180830381600087803b15801561399057600080fd5b505af19250505080156139c157506040513d601f19601f820116820180604052508101906139be91906147d3565b60015b613a3b573d80600081146139f1576040519150601f19603f3d011682016040523d82523d6000602084013e6139f6565b606091505b50600081511415613a33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b613a96613fe1565b613aa7613aa283613427565b613d47565b9050919050565b6060600a8054613abd906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054613ae9906155e3565b8015613b365780601f10613b0b57610100808354040283529160200191613b36565b820191906000526020600020905b815481529060010190602001808311613b1957829003601f168201915b5050505050905090565b60606000821415613b88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c9c565b600082905060005b60008214613bba578080613ba390615646565b915050600a82613bb39190615439565b9150613b90565b60008167ffffffffffffffff811115613bd657613bd561577c565b5b6040519080825280601f01601f191660200182016040528015613c085781602001600182028036833780820191505090505b5090505b60008514613c9557600182613c2191906154c4565b9150600a85613c30919061568f565b6030613c3c91906153e3565b60f81b818381518110613c5257613c5161574d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c8e9190615439565b9450613c0c565b8093505050505b919050565b60009392505050565b613cb48383613dfd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613d4257600080549050600083820390505b613cf4600086838060010194508661392e565b613d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110613ce1578160005414613d3f57600080fd5b50505b505050565b613d4f613fe1565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613e6a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415613ea5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613eb2600084838561355b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613f2983613f1a6000866000613561565b613f2385613fd1565b17613589565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613f4d57806000819055505050613fcc60008483856135b4565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b82805461403c906155e3565b90600052602060002090601f01602090048101928261405e57600085556140a5565b82601f1061407757805160ff19168380011785556140a5565b828001600101855582156140a5579182015b828111156140a4578251825591602001919060010190614089565b5b5090506140b29190614177565b5090565b50805460008255906000526020600020908101906140d49190614177565b50565b828054828255906000526020600020908101928215614166579160200282015b8281111561416557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906140f7565b5b5090506141739190614177565b5090565b5b80821115614190576000816000905550600101614178565b5090565b60006141a76141a284615280565b61525b565b905080838252602082019050828560208602820111156141ca576141c96157b5565b5b60005b858110156141fa57816141e0888261445a565b8452602084019350602083019250506001810190506141cd565b5050509392505050565b600061421761421284615280565b61525b565b9050808382526020820190508285602086028201111561423a576142396157b5565b5b60005b8581101561426a5781614250888261446f565b84526020840193506020830192505060018101905061423d565b5050509392505050565b6000614287614282846152ac565b61525b565b9050828152602081018484840111156142a3576142a26157ba565b5b6142ae8482856155a1565b509392505050565b60006142c96142c4846152dd565b61525b565b9050828152602081018484840111156142e5576142e46157ba565b5b6142f08482856155a1565b509392505050565b60008135905061430781615b7d565b92915050565b60008083601f840112614323576143226157b0565b5b8235905067ffffffffffffffff8111156143405761433f6157ab565b5b60208301915083602082028301111561435c5761435b6157b5565b5b9250929050565b600082601f830112614378576143776157b0565b5b8135614388848260208601614194565b91505092915050565b600082601f8301126143a6576143a56157b0565b5b81516143b6848260208601614204565b91505092915050565b6000813590506143ce81615b94565b92915050565b6000813590506143e381615bab565b92915050565b6000815190506143f881615bab565b92915050565b600082601f830112614413576144126157b0565b5b8135614423848260208601614274565b91505092915050565b600082601f830112614441576144406157b0565b5b81356144518482602086016142b6565b91505092915050565b60008135905061446981615bc2565b92915050565b60008151905061447e81615bc2565b92915050565b60006020828403121561449a576144996157c4565b5b60006144a8848285016142f8565b91505092915050565b600080604083850312156144c8576144c76157c4565b5b60006144d6858286016142f8565b92505060206144e7858286016142f8565b9150509250929050565b60008060006060848603121561450a576145096157c4565b5b6000614518868287016142f8565b9350506020614529868287016142f8565b925050604061453a8682870161445a565b9150509250925092565b6000806000806080858703121561455e5761455d6157c4565b5b600061456c878288016142f8565b945050602061457d878288016142f8565b935050604061458e8782880161445a565b925050606085013567ffffffffffffffff8111156145af576145ae6157bf565b5b6145bb878288016143fe565b91505092959194509250565b600080604083850312156145de576145dd6157c4565b5b60006145ec858286016142f8565b92505060206145fd858286016143bf565b9150509250929050565b6000806040838503121561461e5761461d6157c4565b5b600061462c858286016142f8565b925050602061463d8582860161445a565b9150509250929050565b6000806000606084860312156146605761465f6157c4565b5b600061466e868287016142f8565b935050602061467f8682870161445a565b92505060406146908682870161445a565b9150509250925092565b600080602083850312156146b1576146b06157c4565b5b600083013567ffffffffffffffff8111156146cf576146ce6157bf565b5b6146db8582860161430d565b92509250509250929050565b6000602082840312156146fd576146fc6157c4565b5b600082013567ffffffffffffffff81111561471b5761471a6157bf565b5b61472784828501614363565b91505092915050565b600060208284031215614746576147456157c4565b5b600082015167ffffffffffffffff811115614764576147636157bf565b5b61477084828501614391565b91505092915050565b60006020828403121561478f5761478e6157c4565b5b600061479d848285016143bf565b91505092915050565b6000602082840312156147bc576147bb6157c4565b5b60006147ca848285016143d4565b91505092915050565b6000602082840312156147e9576147e86157c4565b5b60006147f7848285016143e9565b91505092915050565b600060208284031215614816576148156157c4565b5b600082013567ffffffffffffffff811115614834576148336157bf565b5b6148408482850161442c565b91505092915050565b60006020828403121561485f5761485e6157c4565b5b600061486d8482850161445a565b91505092915050565b6000806040838503121561488d5761488c6157c4565b5b600061489b8582860161445a565b92505060206148ac858286016142f8565b9150509250929050565b60006148c28383614da8565b60808301905092915050565b60006148da8383614e61565b60208301905092915050565b6148ef816154f8565b82525050565b6148fe816154f8565b82525050565b600061490f82615343565b6149198185615389565b93506149248361530e565b8060005b8381101561495557815161493c88826148b6565b97506149478361536f565b925050600181019050614928565b5085935050505092915050565b600061496d8261534e565b614977818561539a565b93506149828361531e565b8060005b838110156149b357815161499a88826148ce565b97506149a58361537c565b925050600181019050614986565b5085935050505092915050565b6149c98161550a565b82525050565b6149d88161550a565b82525050565b60006149e982615359565b6149f381856153ab565b9350614a038185602086016155b0565b614a0c816157c9565b840191505092915050565b614a208161558f565b82525050565b6000614a3182615364565b614a3b81856153c7565b9350614a4b8185602086016155b0565b614a54816157c9565b840191505092915050565b6000614a6a82615364565b614a7481856153d8565b9350614a848185602086016155b0565b80840191505092915050565b60008154614a9d816155e3565b614aa781866153d8565b94506001821660008114614ac25760018114614ad357614b06565b60ff19831686528186019350614b06565b614adc8561532e565b60005b83811015614afe57815481890152600182019150602081019050614adf565b838801955050505b50505092915050565b6000614b1c6026836153c7565b9150614b27826157da565b604082019050919050565b6000614b3f6014836153c7565b9150614b4a82615829565b602082019050919050565b6000614b626029836153c7565b9150614b6d82615852565b604082019050919050565b6000614b85601a836153c7565b9150614b90826158a1565b602082019050919050565b6000614ba8601a836153c7565b9150614bb3826158ca565b602082019050919050565b6000614bcb601e836153c7565b9150614bd6826158f3565b602082019050919050565b6000614bee601f836153c7565b9150614bf98261591c565b602082019050919050565b6000614c11601c836153c7565b9150614c1c82615945565b602082019050919050565b6000614c346020836153c7565b9150614c3f8261596e565b602082019050919050565b6000614c576017836153c7565b9150614c6282615997565b602082019050919050565b6000614c7a602f836153c7565b9150614c85826159c0565b604082019050919050565b6000614c9d6000836153bc565b9150614ca882615a0f565b600082019050919050565b6000614cc06014836153c7565b9150614ccb82615a12565b602082019050919050565b6000614ce36024836153c7565b9150614cee82615a3b565b604082019050919050565b6000614d066013836153c7565b9150614d1182615a8a565b602082019050919050565b6000614d296018836153c7565b9150614d3482615ab3565b602082019050919050565b6000614d4c6027836153c7565b9150614d5782615adc565b604082019050919050565b6000614d6f601f836153c7565b9150614d7a82615b2b565b602082019050919050565b6000614d926013836153c7565b9150614d9d82615b54565b602082019050919050565b608082016000820151614dbe60008501826148e6565b506020820151614dd16020850182614e7f565b506040820151614de460408501826149c0565b506060820151614df76060850182614e52565b50505050565b608082016000820151614e1360008501826148e6565b506020820151614e266020850182614e7f565b506040820151614e3960408501826149c0565b506060820151614e4c6060850182614e52565b50505050565b614e5b81615562565b82525050565b614e6a81615571565b82525050565b614e7981615571565b82525050565b614e888161557b565b82525050565b6000614e9a8286614a5f565b9150614ea68285614a5f565b9150614eb28284614a90565b9150819050949350505050565b6000614eca82614c90565b9150819050919050565b6000602082019050614ee960008301846148f5565b92915050565b6000608082019050614f0460008301876148f5565b614f1160208301866148f5565b614f1e6040830185614e70565b8181036060830152614f3081846149de565b905095945050505050565b6000604082019050614f5060008301856148f5565b614f5d6020830184614a17565b9392505050565b60006020820190508181036000830152614f7e8184614904565b905092915050565b60006020820190508181036000830152614fa08184614962565b905092915050565b6000602082019050614fbd60008301846149cf565b92915050565b60006020820190508181036000830152614fdd8184614a26565b905092915050565b60006020820190508181036000830152614ffe81614b0f565b9050919050565b6000602082019050818103600083015261501e81614b32565b9050919050565b6000602082019050818103600083015261503e81614b55565b9050919050565b6000602082019050818103600083015261505e81614b78565b9050919050565b6000602082019050818103600083015261507e81614b9b565b9050919050565b6000602082019050818103600083015261509e81614bbe565b9050919050565b600060208201905081810360008301526150be81614be1565b9050919050565b600060208201905081810360008301526150de81614c04565b9050919050565b600060208201905081810360008301526150fe81614c27565b9050919050565b6000602082019050818103600083015261511e81614c4a565b9050919050565b6000602082019050818103600083015261513e81614c6d565b9050919050565b6000602082019050818103600083015261515e81614cb3565b9050919050565b6000602082019050818103600083015261517e81614cd6565b9050919050565b6000602082019050818103600083015261519e81614cf9565b9050919050565b600060208201905081810360008301526151be81614d1c565b9050919050565b600060208201905081810360008301526151de81614d3f565b9050919050565b600060208201905081810360008301526151fe81614d62565b9050919050565b6000602082019050818103600083015261521e81614d85565b9050919050565b600060808201905061523a6000830184614dfd565b92915050565b60006020820190506152556000830184614e70565b92915050565b6000615265615276565b90506152718282615615565b919050565b6000604051905090565b600067ffffffffffffffff82111561529b5761529a61577c565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156152c7576152c661577c565b5b6152d0826157c9565b9050602081019050919050565b600067ffffffffffffffff8211156152f8576152f761577c565b5b615301826157c9565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153ee82615571565b91506153f983615571565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561542e5761542d6156c0565b5b828201905092915050565b600061544482615571565b915061544f83615571565b92508261545f5761545e6156ef565b5b828204905092915050565b600061547582615571565b915061548083615571565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154b9576154b86156c0565b5b828202905092915050565b60006154cf82615571565b91506154da83615571565b9250828210156154ed576154ec6156c0565b5b828203905092915050565b600061550382615542565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061559a82615571565b9050919050565b82818337600083830152505050565b60005b838110156155ce5780820151818401526020810190506155b3565b838111156155dd576000848401525b50505050565b600060028204905060018216806155fb57607f821691505b6020821081141561560f5761560e61571e565b5b50919050565b61561e826157c9565b810181811067ffffffffffffffff8211171561563d5761563c61577c565b5b80604052505050565b600061565182615571565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615684576156836156c0565b5b600182019050919050565b600061569a82615571565b91506156a583615571565b9250826156b5576156b46156ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d61782066726565206d696e7420616d6f756e74207065722077616c6c65742060008201527f65786365656465642e0000000000000000000000000000000000000000000000602082015250565b7f57686974656c69737420537570706c7920534f4c44204f555421000000000000600082015250565b7f46726565206d696e7420616c726561647920636c61696d65642e000000000000600082015250565b7f5075626c6963206d696e74206973206e6f7420616374697665207965742e0000600082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f4d6f6f6e6c697374206d696e74206973206e6f74206163746976652e00000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f596f75206d757374206275726e2033204475737420746f20676574206120574960008201527f5a41524400000000000000000000000000000000000000000000000000000000602082015250565b7f4275726e206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4d6178207065722077616c6c6574206578636565646564210000000000000000600082015250565b7f4d6f6f6e4c697374204d494e543a2075736572206973206e6f7420776869746560008201527f6c69737465642e00000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b615b86816154f8565b8114615b9157600080fd5b50565b615b9d8161550a565b8114615ba857600080fd5b50565b615bb481615516565b8114615bbf57600080fd5b50565b615bcb81615571565b8114615bd657600080fd5b5056fea264697066735822122053e0bca16cf097e71cfa8d58cb6c5e19a9a058cc639567788cf8b4e6a2d6534464736f6c63430008070033697066733a2f2f516d557132687a476a367556724457386e394272595832674e37415064447079776557506662716246526e444c782f68696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061038b5760003560e01c806370a08231116101dc578063a32cdd0e11610102578063c23dc68f116100a0578063edec5f271161006f578063edec5f2714610d40578063efbd73f414610d69578063f2c4ce1e14610d92578063f2fde38b14610dbb5761038b565b8063c23dc68f14610c5e578063c87b56dd14610c9b578063d5abeb0114610cd8578063e985e9c514610d035761038b565b8063adff367c116100dc578063adff367c14610ba6578063b071401b14610bcf578063b88d4fde14610bf8578063ba4e5c4914610c215761038b565b8063a32cdd0e14610b36578063a984cd7514610b52578063a9acda5b14610b7d5761038b565b80638462151c1161017a57806394354fd01161014957806394354fd014610a7a57806395d89b4114610aa557806399a2557a14610ad0578063a22cb46514610b0d5761038b565b80638462151c146109df5780638da5cb5b14610a1c578063932f426a14610a47578063940cd05b14610a515761038b565b80637b2c835f116101b65780637b2c835f146109395780637ec4a659146109625780638263ec8d1461098b57806382fc8563146109b65761038b565b806370a08231146108ba578063715018a6146108f7578063722503801461090e5761038b565b80633ccfd60b116102c15780635503a0e81161025f57806361c0b6a01161022e57806361c0b6a0146107f957806362b99ad4146108365780636352211e14610861578063643439df1461089e5761038b565b80635503a0e81461073b5780635bbb2177146107665780635c975abb146107a35780635dc96d16146107ce5761038b565b806344a0d68a1161029b57806344a0d68a14610693578063476da1fa146106bc57806351830227146106e55780635248cb39146107105761038b565b80633ccfd60b1461062a57806342842e0e1461064157806342966c681461066a5761038b565b806313faede61161032e5780631a71b1d5116103085780631a71b1d51461055c57806323b872dd1461059957806333e61413146105c25780633af32abf146105ed5761038b565b806313faede6146104dd57806316c38b3c1461050857806318160ddd146105315761038b565b8063081812fc1161036a578063081812fc14610423578063095ea7b3146104605780630f5ffe2a1461048957806312d6c5a4146104c65761038b565b8062821de31461039057806301ffc9a7146103bb57806306fdde03146103f8575b600080fd5b34801561039c57600080fd5b506103a5610de4565b6040516103b29190614ed4565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd91906147a6565b610e0a565b6040516103ef9190614fa8565b60405180910390f35b34801561040457600080fd5b5061040d610e9c565b60405161041a9190614fc3565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190614849565b610f2e565b6040516104579190614ed4565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190614607565b610faa565b005b34801561049557600080fd5b506104b060048036038101906104ab9190614484565b6110eb565b6040516104bd9190615240565b60405180910390f35b3480156104d257600080fd5b506104db611103565b005b3480156104e957600080fd5b506104f2611165565b6040516104ff9190615240565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190614779565b61116b565b005b34801561053d57600080fd5b50610546611190565b6040516105539190615240565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190614484565b6111a7565b6040516105909190615240565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906144f1565b6111bf565b005b3480156105ce57600080fd5b506105d76114e4565b6040516105e49190615240565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190614484565b6114ea565b6040516106219190614fa8565b60405180910390f35b34801561063657600080fd5b5061063f611599565b005b34801561064d57600080fd5b50610668600480360381019061066391906144f1565b611677565b005b34801561067657600080fd5b50610691600480360381019061068c9190614849565b611697565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190614849565b6116a5565b005b3480156106c857600080fd5b506106e360048036038101906106de9190614849565b6116b7565b005b3480156106f157600080fd5b506106fa6116c9565b6040516107079190614fa8565b60405180910390f35b34801561071c57600080fd5b506107256116dc565b6040516107329190615240565b60405180910390f35b34801561074757600080fd5b506107506116e2565b60405161075d9190614fc3565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906146e7565b611770565b60405161079a9190614f64565b60405180910390f35b3480156107af57600080fd5b506107b8611831565b6040516107c59190614fa8565b60405180910390f35b3480156107da57600080fd5b506107e3611844565b6040516107f09190614fa8565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190614484565b611857565b60405161082d9190614fa8565b60405180910390f35b34801561084257600080fd5b5061084b611877565b6040516108589190614fc3565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614849565b611905565b6040516108959190614ed4565b60405180910390f35b6108b860048036038101906108b39190614849565b611917565b005b3480156108c657600080fd5b506108e160048036038101906108dc9190614484565b611d79565b6040516108ee9190615240565b60405180910390f35b34801561090357600080fd5b5061090c611e32565b005b34801561091a57600080fd5b50610923611e46565b6040516109309190614fc3565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190614779565b611ed4565b005b34801561096e57600080fd5b5061098960048036038101906109849190614800565b611ef9565b005b34801561099757600080fd5b506109a0611f1b565b6040516109ad9190615240565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190614876565b611f21565b005b3480156109eb57600080fd5b50610a066004803603810190610a019190614484565b611f71565b604051610a139190614f86565b60405180910390f35b348015610a2857600080fd5b50610a316120bb565b604051610a3e9190614ed4565b60405180910390f35b610a4f6120e5565b005b348015610a5d57600080fd5b50610a786004803603810190610a739190614779565b6123ea565b005b348015610a8657600080fd5b50610a8f61240f565b604051610a9c9190615240565b60405180910390f35b348015610ab157600080fd5b50610aba612415565b604051610ac79190614fc3565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190614647565b6124a7565b604051610b049190614f86565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f91906145c7565b6126bb565b005b610b506004803603810190610b4b9190614849565b612833565b005b348015610b5e57600080fd5b50610b67612c58565b604051610b749190614fa8565b60405180910390f35b348015610b8957600080fd5b50610ba46004803603810190610b9f9190614849565b612c6b565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc89190614849565b612c7d565b005b348015610bdb57600080fd5b50610bf66004803603810190610bf19190614849565b612ed9565b005b348015610c0457600080fd5b50610c1f6004803603810190610c1a9190614544565b612eeb565b005b348015610c2d57600080fd5b50610c486004803603810190610c439190614849565b612f5e565b604051610c559190614ed4565b60405180910390f35b348015610c6a57600080fd5b50610c856004803603810190610c809190614849565b612f9d565b604051610c929190615225565b60405180910390f35b348015610ca757600080fd5b50610cc26004803603810190610cbd9190614849565b613007565b604051610ccf9190614fc3565b60405180910390f35b348015610ce457600080fd5b50610ced613160565b604051610cfa9190615240565b60405180910390f35b348015610d0f57600080fd5b50610d2a6004803603810190610d2591906144b1565b613166565b604051610d379190614fa8565b60405180910390f35b348015610d4c57600080fd5b50610d676004803603810190610d62919061469a565b6131fa565b005b348015610d7557600080fd5b50610d906004803603810190610d8b9190614876565b613226565b005b348015610d9e57600080fd5b50610db96004803603810190610db49190614800565b613293565b005b348015610dc757600080fd5b50610de26004803603810190610ddd9190614484565b6132b5565b005b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e6557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610eab906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed7906155e3565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b5050505050905090565b6000610f3982613339565b610f6f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fb582611905565b90508073ffffffffffffffffffffffffffffffffffffffff16610fd6613398565b73ffffffffffffffffffffffffffffffffffffffff16146110395761100281610ffd613398565b613166565b611038576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60146020528060005260406000206000915090505481565b61110b6133a0565b60011515601360029054906101000a900460ff1615151415611147576000601360026101000a81548160ff021916908315150217905550611163565b6001601360026101000a81548160ff0219169083151502179055505b565b600d5481565b6111736133a0565b80601360006101000a81548160ff02191690831515021790555050565b600061119a61341e565b6001546000540303905090565b60156020528060005260406000206000915090505481565b60006111ca82613427565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611231576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061123d846134f5565b91509150611253818761124e613398565b613517565b61129f5761126886611263613398565b613166565b61129e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611306576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611313868686600161355b565b801561131e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506113ec856113c8888887613561565b7c020000000000000000000000000000000000000000000000000000000017613589565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611474576000600185019050600060046000838152602001908152602001600020541415611472576000548114611471578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114dc86868660016135b4565b505050505050565b600f5481565b600080600090505b60178054905081101561158e578273ffffffffffffffffffffffffffffffffffffffff166017828154811061152a5761152961574d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561157b576001915050611594565b808061158690615646565b9150506114f2565b50600090505b919050565b6115a16133a0565b600260095414156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de906151e5565b60405180910390fd5b600260098190555060006115f96120bb565b73ffffffffffffffffffffffffffffffffffffffff164760405161161c90614ebf565b60006040518083038185875af1925050503d8060008114611659576040519150601f19603f3d011682016040523d82523d6000602084013e61165e565b606091505b505090508061166c57600080fd5b506001600981905550565b61169283838360405180602001604052806000815250612eeb565b505050565b6116a28160016135ba565b50565b6116ad6133a0565b80600d8190555050565b6116bf6133a0565b8060118190555050565b601360019054906101000a900460ff1681565b60105481565b600c80546116ef906155e3565b80601f016020809104026020016040519081016040528092919081815260200182805461171b906155e3565b80156117685780601f1061173d57610100808354040283529160200191611768565b820191906000526020600020905b81548152906001019060200180831161174b57829003601f168201915b505050505081565b606060008251905060008167ffffffffffffffff8111156117945761179361577c565b5b6040519080825280602002602001820160405280156117cd57816020015b6117ba613fe1565b8152602001906001900390816117b25790505b50905060005b828114611826576117fd8582815181106117f0576117ef61574d565b5b6020026020010151612f9d565b8282815181106118105761180f61574d565b5b60200260200101819052508060010190506117d3565b508092505050919050565b601360009054906101000a900460ff1681565b601360039054906101000a900460ff1681565b60166020528060005260406000206000915054906101000a900460ff1681565b600a8054611884906155e3565b80601f01602080910402602001604051908101604052809291908181526020018280546118b0906155e3565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b505050505081565b600061191082613427565b9050919050565b8060008111801561192a57506012548111155b611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090615005565b60405180910390fd5b60011515601360029054906101000a900460ff1615151415611a615761198e336114ea565b6119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906151c5565b60405180910390fd5b601054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611a1b91906153e3565b1115611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a53906151a5565b60405180910390fd5b611af1565b601154601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611aaf91906153e3565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae7906151a5565b60405180910390fd5b5b600e5481611afd611190565b611b0791906153e3565b1115611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90615145565b60405180910390fd5b81611b516120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c8957601360009054906101000a900460ff1615611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90615105565b60405180910390fd5b60011515601360029054906101000a900460ff1615151415611c3857611bf8336114ea565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906151c5565b60405180910390fd5b5b80600d54611c46919061546a565b341015611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90615205565b60405180910390fd5b5b611c916120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d1457601360029054906101000a900460ff1615611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90615085565b60405180910390fd5b5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6391906153e3565b92505081905550611d74338461380e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611de1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611e3a6133a0565b611e44600061382c565b565b600b8054611e53906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7f906155e3565b8015611ecc5780601f10611ea157610100808354040283529160200191611ecc565b820191906000526020600020905b815481529060010190602001808311611eaf57829003601f168201915b505050505081565b611edc6133a0565b80601360036101000a81548160ff02191690831515021790555050565b611f016133a0565b80600a9080519060200190611f17929190614030565b5050565b60115481565b611f296133a0565b81601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60606000806000611f8185611d79565b905060008167ffffffffffffffff811115611f9f57611f9e61577c565b5b604051908082528060200260200182016040528015611fcd5781602001602082028036833780820191505090505b509050611fd8613fe1565b6000611fe261341e565b90505b8386146120ad57611ff5816138f2565b9150816040015115612006576120a2565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461204657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156120a157808387806001019850815181106120945761209361574d565b5b6020026020010181815250505b5b806001019050611fe5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120ed6120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122d657601360009054906101000a900460ff161561216f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216690615105565b60405180910390fd5b601360029054906101000a900460ff16156121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690615085565b60405180910390fd5b60001515601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990615065565b60405180910390fd5b601154601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90615025565b60405180910390fd5b5b600e5460016122e3611190565b6122ed91906153e3565b111561232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906150a5565b60405180910390fd5b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d691906153e3565b925050819055506123e833600161380e565b565b6123f26133a0565b80601360016101000a81548160ff02191690831515021790555050565b60125481565b606060038054612424906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612450906155e3565b801561249d5780601f106124725761010080835404028352916020019161249d565b820191906000526020600020905b81548152906001019060200180831161248057829003601f168201915b5050505050905090565b60608183106124e2576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124ed61391d565b90506124f761341e565b8510156125095761250661341e565b94505b80841115612515578093505b600061252087611d79565b90508486101561254357600086860390508181101561253d578091505b50612548565b600090505b60008167ffffffffffffffff8111156125645761256361577c565b5b6040519080825280602002602001820160405280156125925781602001602082028036833780820191505090505b50905060008214156125aa57809450505050506126b4565b60006125b588612f9d565b9050600081604001516125ca57816000015190505b60008990505b8881141580156125e05750848714155b156126a6576125ee816138f2565b92508260400151156125ff5761269b565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461263f57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269a578084888060010199508151811061268d5761268c61574d565b5b6020026020010181815250505b5b8060010190506125d0565b508583528296505050505050505b9392505050565b6126c3613398565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612728576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612735613398565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127e2613398565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128279190614fa8565b60405180910390a35050565b8060008111801561284657506012548111155b612885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287c90615005565b60405180910390fd5b60011515601360029054906101000a900460ff161515141561297d576128aa336114ea565b6128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e0906151c5565b60405180910390fd5b601054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261293791906153e3565b1115612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296f906151a5565b60405180910390fd5b612a0d565b601154601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826129cb91906153e3565b1115612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906151a5565b60405180910390fd5b5b600e5481612a19611190565b612a2391906153e3565b1115612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90615145565b60405180910390fd5b612a6c6120bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b3e57601360009054906101000a900460ff1615612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae590615105565b60405180910390fd5b601360029054906101000a900460ff16612b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b34906150c5565b60405180910390fd5b5b6000600f5411612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90615045565b60405180910390fd5b600082600f54612b9391906154c4565b1015612bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcb90615005565b60405180910390fd5b81600f6000828254612be691906154c4565b9250508190555081601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3c91906153e3565b92505081905550612c54612c4e613926565b8361380e565b5050565b601360029054906101000a900460ff1681565b612c736133a0565b8060108190555050565b60011515601360039054906101000a900460ff16151514612cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cca90615185565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff16638462151c336040518263ffffffff1660e01b8152600401612d139190614ed4565b60006040518083038186803b158015612d2b57600080fd5b505afa158015612d3f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612d689190614730565b905060038314612dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da490615165565b60405180910390fd5b60005b83811015612e4357612ddb828281518110612dce57612dcd61574d565b5b6020026020010151611697565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612e2b90615646565b91905055508080612e3b90615646565b915050612db0565b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193360016040518363ffffffff1660e01b8152600401612ea2929190614f3b565b600060405180830381600087803b158015612ebc57600080fd5b505af1158015612ed0573d6000803e3d6000fd5b50505050505050565b612ee16133a0565b8060128190555050565b612ef68484846111bf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f5857612f218484848461392e565b612f57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60178181548110612f6e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612fa5613fe1565b612fad613fe1565b612fb561341e565b831080612fc95750612fc561391d565b8310155b15612fd75780915050613002565b612fe0836138f2565b9050806040015115612ff55780915050613002565b612ffe83613a8e565b9150505b919050565b606061301282613339565b613051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304890615125565b60405180910390fd5b60001515601360019054906101000a900460ff16151514156130ff57600b805461307a906155e3565b80601f01602080910402602001604051908101604052809291908181526020018280546130a6906155e3565b80156130f35780601f106130c8576101008083540402835291602001916130f3565b820191906000526020600020905b8154815290600101906020018083116130d657829003601f168201915b5050505050905061315b565b6000613109613aae565b905060008151116131295760405180602001604052806000815250613157565b8061313384613b40565b600c60405160200161314793929190614e8e565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6132026133a0565b6017600061321091906140b6565b8181601791906132219291906140d7565b505050565b61322e6133a0565b600e548261323a611190565b61324491906153e3565b1115613285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327c90615145565b60405180910390fd5b61328f818361380e565b5050565b61329b6133a0565b80600b90805190602001906132b1929190614030565b5050565b6132bd6133a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561332d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332490614fe5565b60405180910390fd5b6133368161382c565b50565b60008161334461341e565b11158015613353575060005482105b8015613391575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6133a8613926565b73ffffffffffffffffffffffffffffffffffffffff166133c66120bb565b73ffffffffffffffffffffffffffffffffffffffff161461341c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613413906150e5565b60405180910390fd5b565b60006001905090565b6000808290508061343661341e565b116134be576000548110156134bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156134bb575b60008114156134b1576004600083600190039350838152602001908152602001600020549050613486565b80925050506134f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613578868684613ca1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006135c583613427565b905060008190506000806135d8866134f5565b915091508415613641576135f481846135ef613398565b613517565b6136405761360983613604613398565b613166565b61363f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61364f83600088600161355b565b801561365a57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613702836136bf85600088613561565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717613589565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561378a576000600187019050600060046000838152602001908152602001600020541415613788576000548114613787578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137f48360008860016135b4565b600160008154809291906001019190505550505050505050565b613828828260405180602001604052806000815250613caa565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6138fa613fe1565b6139166004600084815260200190815260200160002054613d47565b9050919050565b60008054905090565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613954613398565b8786866040518563ffffffff1660e01b81526004016139769493929190614eef565b602060405180830381600087803b15801561399057600080fd5b505af19250505080156139c157506040513d601f19601f820116820180604052508101906139be91906147d3565b60015b613a3b573d80600081146139f1576040519150601f19603f3d011682016040523d82523d6000602084013e6139f6565b606091505b50600081511415613a33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b613a96613fe1565b613aa7613aa283613427565b613d47565b9050919050565b6060600a8054613abd906155e3565b80601f0160208091040260200160405190810160405280929190818152602001828054613ae9906155e3565b8015613b365780601f10613b0b57610100808354040283529160200191613b36565b820191906000526020600020905b815481529060010190602001808311613b1957829003601f168201915b5050505050905090565b60606000821415613b88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c9c565b600082905060005b60008214613bba578080613ba390615646565b915050600a82613bb39190615439565b9150613b90565b60008167ffffffffffffffff811115613bd657613bd561577c565b5b6040519080825280601f01601f191660200182016040528015613c085781602001600182028036833780820191505090505b5090505b60008514613c9557600182613c2191906154c4565b9150600a85613c30919061568f565b6030613c3c91906153e3565b60f81b818381518110613c5257613c5161574d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c8e9190615439565b9450613c0c565b8093505050505b919050565b60009392505050565b613cb48383613dfd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613d4257600080549050600083820390505b613cf4600086838060010194508661392e565b613d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110613ce1578160005414613d3f57600080fd5b50505b505050565b613d4f613fe1565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613e6a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415613ea5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613eb2600084838561355b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613f2983613f1a6000866000613561565b613f2385613fd1565b17613589565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613f4d57806000819055505050613fcc60008483856135b4565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b82805461403c906155e3565b90600052602060002090601f01602090048101928261405e57600085556140a5565b82601f1061407757805160ff19168380011785556140a5565b828001600101855582156140a5579182015b828111156140a4578251825591602001919060010190614089565b5b5090506140b29190614177565b5090565b50805460008255906000526020600020908101906140d49190614177565b50565b828054828255906000526020600020908101928215614166579160200282015b8281111561416557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906140f7565b5b5090506141739190614177565b5090565b5b80821115614190576000816000905550600101614178565b5090565b60006141a76141a284615280565b61525b565b905080838252602082019050828560208602820111156141ca576141c96157b5565b5b60005b858110156141fa57816141e0888261445a565b8452602084019350602083019250506001810190506141cd565b5050509392505050565b600061421761421284615280565b61525b565b9050808382526020820190508285602086028201111561423a576142396157b5565b5b60005b8581101561426a5781614250888261446f565b84526020840193506020830192505060018101905061423d565b5050509392505050565b6000614287614282846152ac565b61525b565b9050828152602081018484840111156142a3576142a26157ba565b5b6142ae8482856155a1565b509392505050565b60006142c96142c4846152dd565b61525b565b9050828152602081018484840111156142e5576142e46157ba565b5b6142f08482856155a1565b509392505050565b60008135905061430781615b7d565b92915050565b60008083601f840112614323576143226157b0565b5b8235905067ffffffffffffffff8111156143405761433f6157ab565b5b60208301915083602082028301111561435c5761435b6157b5565b5b9250929050565b600082601f830112614378576143776157b0565b5b8135614388848260208601614194565b91505092915050565b600082601f8301126143a6576143a56157b0565b5b81516143b6848260208601614204565b91505092915050565b6000813590506143ce81615b94565b92915050565b6000813590506143e381615bab565b92915050565b6000815190506143f881615bab565b92915050565b600082601f830112614413576144126157b0565b5b8135614423848260208601614274565b91505092915050565b600082601f830112614441576144406157b0565b5b81356144518482602086016142b6565b91505092915050565b60008135905061446981615bc2565b92915050565b60008151905061447e81615bc2565b92915050565b60006020828403121561449a576144996157c4565b5b60006144a8848285016142f8565b91505092915050565b600080604083850312156144c8576144c76157c4565b5b60006144d6858286016142f8565b92505060206144e7858286016142f8565b9150509250929050565b60008060006060848603121561450a576145096157c4565b5b6000614518868287016142f8565b9350506020614529868287016142f8565b925050604061453a8682870161445a565b9150509250925092565b6000806000806080858703121561455e5761455d6157c4565b5b600061456c878288016142f8565b945050602061457d878288016142f8565b935050604061458e8782880161445a565b925050606085013567ffffffffffffffff8111156145af576145ae6157bf565b5b6145bb878288016143fe565b91505092959194509250565b600080604083850312156145de576145dd6157c4565b5b60006145ec858286016142f8565b92505060206145fd858286016143bf565b9150509250929050565b6000806040838503121561461e5761461d6157c4565b5b600061462c858286016142f8565b925050602061463d8582860161445a565b9150509250929050565b6000806000606084860312156146605761465f6157c4565b5b600061466e868287016142f8565b935050602061467f8682870161445a565b92505060406146908682870161445a565b9150509250925092565b600080602083850312156146b1576146b06157c4565b5b600083013567ffffffffffffffff8111156146cf576146ce6157bf565b5b6146db8582860161430d565b92509250509250929050565b6000602082840312156146fd576146fc6157c4565b5b600082013567ffffffffffffffff81111561471b5761471a6157bf565b5b61472784828501614363565b91505092915050565b600060208284031215614746576147456157c4565b5b600082015167ffffffffffffffff811115614764576147636157bf565b5b61477084828501614391565b91505092915050565b60006020828403121561478f5761478e6157c4565b5b600061479d848285016143bf565b91505092915050565b6000602082840312156147bc576147bb6157c4565b5b60006147ca848285016143d4565b91505092915050565b6000602082840312156147e9576147e86157c4565b5b60006147f7848285016143e9565b91505092915050565b600060208284031215614816576148156157c4565b5b600082013567ffffffffffffffff811115614834576148336157bf565b5b6148408482850161442c565b91505092915050565b60006020828403121561485f5761485e6157c4565b5b600061486d8482850161445a565b91505092915050565b6000806040838503121561488d5761488c6157c4565b5b600061489b8582860161445a565b92505060206148ac858286016142f8565b9150509250929050565b60006148c28383614da8565b60808301905092915050565b60006148da8383614e61565b60208301905092915050565b6148ef816154f8565b82525050565b6148fe816154f8565b82525050565b600061490f82615343565b6149198185615389565b93506149248361530e565b8060005b8381101561495557815161493c88826148b6565b97506149478361536f565b925050600181019050614928565b5085935050505092915050565b600061496d8261534e565b614977818561539a565b93506149828361531e565b8060005b838110156149b357815161499a88826148ce565b97506149a58361537c565b925050600181019050614986565b5085935050505092915050565b6149c98161550a565b82525050565b6149d88161550a565b82525050565b60006149e982615359565b6149f381856153ab565b9350614a038185602086016155b0565b614a0c816157c9565b840191505092915050565b614a208161558f565b82525050565b6000614a3182615364565b614a3b81856153c7565b9350614a4b8185602086016155b0565b614a54816157c9565b840191505092915050565b6000614a6a82615364565b614a7481856153d8565b9350614a848185602086016155b0565b80840191505092915050565b60008154614a9d816155e3565b614aa781866153d8565b94506001821660008114614ac25760018114614ad357614b06565b60ff19831686528186019350614b06565b614adc8561532e565b60005b83811015614afe57815481890152600182019150602081019050614adf565b838801955050505b50505092915050565b6000614b1c6026836153c7565b9150614b27826157da565b604082019050919050565b6000614b3f6014836153c7565b9150614b4a82615829565b602082019050919050565b6000614b626029836153c7565b9150614b6d82615852565b604082019050919050565b6000614b85601a836153c7565b9150614b90826158a1565b602082019050919050565b6000614ba8601a836153c7565b9150614bb3826158ca565b602082019050919050565b6000614bcb601e836153c7565b9150614bd6826158f3565b602082019050919050565b6000614bee601f836153c7565b9150614bf98261591c565b602082019050919050565b6000614c11601c836153c7565b9150614c1c82615945565b602082019050919050565b6000614c346020836153c7565b9150614c3f8261596e565b602082019050919050565b6000614c576017836153c7565b9150614c6282615997565b602082019050919050565b6000614c7a602f836153c7565b9150614c85826159c0565b604082019050919050565b6000614c9d6000836153bc565b9150614ca882615a0f565b600082019050919050565b6000614cc06014836153c7565b9150614ccb82615a12565b602082019050919050565b6000614ce36024836153c7565b9150614cee82615a3b565b604082019050919050565b6000614d066013836153c7565b9150614d1182615a8a565b602082019050919050565b6000614d296018836153c7565b9150614d3482615ab3565b602082019050919050565b6000614d4c6027836153c7565b9150614d5782615adc565b604082019050919050565b6000614d6f601f836153c7565b9150614d7a82615b2b565b602082019050919050565b6000614d926013836153c7565b9150614d9d82615b54565b602082019050919050565b608082016000820151614dbe60008501826148e6565b506020820151614dd16020850182614e7f565b506040820151614de460408501826149c0565b506060820151614df76060850182614e52565b50505050565b608082016000820151614e1360008501826148e6565b506020820151614e266020850182614e7f565b506040820151614e3960408501826149c0565b506060820151614e4c6060850182614e52565b50505050565b614e5b81615562565b82525050565b614e6a81615571565b82525050565b614e7981615571565b82525050565b614e888161557b565b82525050565b6000614e9a8286614a5f565b9150614ea68285614a5f565b9150614eb28284614a90565b9150819050949350505050565b6000614eca82614c90565b9150819050919050565b6000602082019050614ee960008301846148f5565b92915050565b6000608082019050614f0460008301876148f5565b614f1160208301866148f5565b614f1e6040830185614e70565b8181036060830152614f3081846149de565b905095945050505050565b6000604082019050614f5060008301856148f5565b614f5d6020830184614a17565b9392505050565b60006020820190508181036000830152614f7e8184614904565b905092915050565b60006020820190508181036000830152614fa08184614962565b905092915050565b6000602082019050614fbd60008301846149cf565b92915050565b60006020820190508181036000830152614fdd8184614a26565b905092915050565b60006020820190508181036000830152614ffe81614b0f565b9050919050565b6000602082019050818103600083015261501e81614b32565b9050919050565b6000602082019050818103600083015261503e81614b55565b9050919050565b6000602082019050818103600083015261505e81614b78565b9050919050565b6000602082019050818103600083015261507e81614b9b565b9050919050565b6000602082019050818103600083015261509e81614bbe565b9050919050565b600060208201905081810360008301526150be81614be1565b9050919050565b600060208201905081810360008301526150de81614c04565b9050919050565b600060208201905081810360008301526150fe81614c27565b9050919050565b6000602082019050818103600083015261511e81614c4a565b9050919050565b6000602082019050818103600083015261513e81614c6d565b9050919050565b6000602082019050818103600083015261515e81614cb3565b9050919050565b6000602082019050818103600083015261517e81614cd6565b9050919050565b6000602082019050818103600083015261519e81614cf9565b9050919050565b600060208201905081810360008301526151be81614d1c565b9050919050565b600060208201905081810360008301526151de81614d3f565b9050919050565b600060208201905081810360008301526151fe81614d62565b9050919050565b6000602082019050818103600083015261521e81614d85565b9050919050565b600060808201905061523a6000830184614dfd565b92915050565b60006020820190506152556000830184614e70565b92915050565b6000615265615276565b90506152718282615615565b919050565b6000604051905090565b600067ffffffffffffffff82111561529b5761529a61577c565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156152c7576152c661577c565b5b6152d0826157c9565b9050602081019050919050565b600067ffffffffffffffff8211156152f8576152f761577c565b5b615301826157c9565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153ee82615571565b91506153f983615571565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561542e5761542d6156c0565b5b828201905092915050565b600061544482615571565b915061544f83615571565b92508261545f5761545e6156ef565b5b828204905092915050565b600061547582615571565b915061548083615571565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154b9576154b86156c0565b5b828202905092915050565b60006154cf82615571565b91506154da83615571565b9250828210156154ed576154ec6156c0565b5b828203905092915050565b600061550382615542565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061559a82615571565b9050919050565b82818337600083830152505050565b60005b838110156155ce5780820151818401526020810190506155b3565b838111156155dd576000848401525b50505050565b600060028204905060018216806155fb57607f821691505b6020821081141561560f5761560e61571e565b5b50919050565b61561e826157c9565b810181811067ffffffffffffffff8211171561563d5761563c61577c565b5b80604052505050565b600061565182615571565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615684576156836156c0565b5b600182019050919050565b600061569a82615571565b91506156a583615571565b9250826156b5576156b46156ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d61782066726565206d696e7420616d6f756e74207065722077616c6c65742060008201527f65786365656465642e0000000000000000000000000000000000000000000000602082015250565b7f57686974656c69737420537570706c7920534f4c44204f555421000000000000600082015250565b7f46726565206d696e7420616c726561647920636c61696d65642e000000000000600082015250565b7f5075626c6963206d696e74206973206e6f7420616374697665207965742e0000600082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f4d6f6f6e6c697374206d696e74206973206e6f74206163746976652e00000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f596f75206d757374206275726e2033204475737420746f20676574206120574960008201527f5a41524400000000000000000000000000000000000000000000000000000000602082015250565b7f4275726e206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4d6178207065722077616c6c6574206578636565646564210000000000000000600082015250565b7f4d6f6f6e4c697374204d494e543a2075736572206973206e6f7420776869746560008201527f6c69737465642e00000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b615b86816154f8565b8114615b9157600080fd5b50565b615b9d8161550a565b8114615ba857600080fd5b50565b615bb481615516565b8114615bbf57600080fd5b50565b615bcb81615571565b8114615bd657600080fd5b5056fea264697066735822122053e0bca16cf097e71cfa8d58cb6c5e19a9a058cc639567788cf8b4e6a2d6534464736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ 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.