ERC-721
Overview
Max Total Supply
845 MASKCLUB
Holders
550
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MASKCLUBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MaskClub
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: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract MaskClub is Ownable, ERC721A, ReentrancyGuard { uint256 internal immutable collectionSize = 6000; uint256 internal immutable viplistMaxSize = 500; uint256 internal immutable allowlistMaxSize = 4500; uint256 public immutable maxPerAddressDuringMint = 2; struct SaleConfig { uint64 viplistPrice; uint32 viplistSaleStartTime; uint32 viplistSaleEndTime; uint64 allowlistPrice; uint32 allowlistSaleStartTime; uint32 allowlistSaleEndTime; uint64 publicPrice; uint32 publicSaleStartTime; } SaleConfig public saleConfig; mapping(address => uint256) public viplist; mapping(address => uint256) public allowlist; mapping(address => uint256) private _pubilcMintData; constructor() ERC721A("MaskClub", "MASKCLUB") { saleConfig.viplistPrice = 0.04 ether; saleConfig.viplistSaleStartTime = 1662188400; saleConfig.viplistSaleEndTime = 1662195600; saleConfig.allowlistPrice = 0.08 ether; saleConfig.allowlistSaleStartTime = 1662210000; saleConfig.allowlistSaleEndTime = 1662220800; saleConfig.publicPrice = 0.12 ether; saleConfig.publicSaleStartTime = 1662296400; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function vipMint() external payable callerIsUser { uint256 price = uint256(saleConfig.viplistPrice); uint256 viplistSaleStartTime = uint256(saleConfig.viplistSaleStartTime); uint256 viplistSaleEndTime = uint256(saleConfig.viplistSaleEndTime); require(price != 0, "vip sale has not begun yet"); require( block.timestamp >= viplistSaleStartTime, "viplist sale has not begun yet" ); require( block.timestamp <= viplistSaleEndTime, "viplist sale has ended" ); require(viplist[msg.sender] > 0, "not eligible for vip mint"); require( totalSupply() + 1 <= viplistMaxSize, "reached max viplist supply" ); viplist[msg.sender]--; _safeMint(msg.sender, 1); refundIfOver(price); } function allowlistMint(uint256 quantity) external payable callerIsUser { uint256 price = uint256(saleConfig.allowlistPrice); uint256 allowlistSaleStartTime = uint256( saleConfig.allowlistSaleStartTime ); uint256 allowlistSaleEndTime = uint256(saleConfig.allowlistSaleEndTime); require(price != 0, "allowlist sale has not begun yet"); require( block.timestamp >= allowlistSaleStartTime, "allowlist sale has not begun yet" ); require( block.timestamp <= allowlistSaleEndTime, "allowlist sale has ended" ); require(allowlist[msg.sender] > 0, "not eligible for allowlist mint"); require( allowlist[msg.sender] >= quantity, "not eligible for allowlist mint" ); require( totalSupply() + quantity <= allowlistMaxSize, "reached max allowlist supply" ); allowlist[msg.sender] = allowlist[msg.sender] - quantity; _safeMint(msg.sender, quantity); refundIfOver(price * quantity); } function publicSaleMint(uint256 quantity) external payable callerIsUser { SaleConfig memory config = saleConfig; uint256 publicPrice = uint256(config.publicPrice); uint256 publicSaleStartTime = uint256(config.publicSaleStartTime); require( isPublicSaleOn(publicPrice, publicSaleStartTime), "public sale has not begun yet" ); require( totalSupply() + quantity <= collectionSize, "reached max supply" ); require( publicMinted(msg.sender) + quantity <= maxPerAddressDuringMint, "can not mint this many" ); _safeMint(msg.sender, quantity); uint256 publicMintedNum = _pubilcMintData[msg.sender]; _pubilcMintData[msg.sender] = publicMintedNum + quantity; refundIfOver(publicPrice * quantity); } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function seedViplist(address[] memory addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { viplist[addresses[i]] = 1; } } function seedAllowlist( address[] memory addresses, uint256[] memory numSlots ) external onlyOwner { require( addresses.length == numSlots.length, "addresses does not match numSlots length" ); for (uint256 i = 0; i < addresses.length; i++) { allowlist[addresses[i]] = numSlots[i]; } } function isPublicSaleOn(uint256 publicPriceWei, uint256 publicSaleStartTime) public view returns (bool) { return publicPriceWei != 0 && block.timestamp >= publicSaleStartTime; } function setupViplistSaleInfo( uint64 viplistPriceWei, uint32 viplistSaleStartTime, uint32 viplistSaleEndTime ) external onlyOwner { saleConfig.viplistPrice = viplistPriceWei; saleConfig.viplistSaleStartTime = viplistSaleStartTime; saleConfig.viplistSaleEndTime = viplistSaleEndTime; } function setupAllowlistSaleInfo( uint64 allowlistPriceWei, uint32 allowlistSaleStartTime, uint32 allowlistSaleEndTime ) external onlyOwner { saleConfig.allowlistPrice = allowlistPriceWei; saleConfig.allowlistSaleStartTime = allowlistSaleStartTime; saleConfig.allowlistSaleEndTime = allowlistSaleEndTime; } function setupPublicSaleInfo( uint64 publicPriceWei, uint32 publicSaleStartTime ) external onlyOwner { saleConfig.publicPrice = publicPriceWei; saleConfig.publicSaleStartTime = publicSaleStartTime; } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = payable(0x8B8f502D1C74Df89b1C274669926707EA9E8daB5) .call{value: address(this).balance}(""); require(success, "Transfer failed."); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function publicMinted(address owner) public view returns (uint256) { require( owner != address(0), "number minted query for the zero address" ); return uint256(_pubilcMintData[owner]); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @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 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` 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 auxillary 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 auxillary 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; assembly { // Cast aux without masking. 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; } /** * 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 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); 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-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @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 { _transfer(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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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 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) } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); 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; } /** * @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); }
// SPDX-License-Identifier: MIT // 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; } }
{ "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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":"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":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"viplistPrice","type":"uint64"},{"internalType":"uint32","name":"viplistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"viplistSaleEndTime","type":"uint32"},{"internalType":"uint64","name":"allowlistPrice","type":"uint64"},{"internalType":"uint32","name":"allowlistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"allowlistSaleEndTime","type":"uint32"},{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"seedViplist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"allowlistPriceWei","type":"uint64"},{"internalType":"uint32","name":"allowlistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"allowlistSaleEndTime","type":"uint32"}],"name":"setupAllowlistSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupPublicSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"viplistPriceWei","type":"uint64"},{"internalType":"uint32","name":"viplistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"viplistSaleEndTime","type":"uint32"}],"name":"setupViplistSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vipMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"viplist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040526117706080908152506101f460a09081525061119460c090815250600260e0908152503480156200003557600080fd5b506040518060400160405280600881526020017f4d61736b436c75620000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4d41534b434c5542000000000000000000000000000000000000000000000000815250620000c2620000b66200027d60201b60201c565b6200028560201b60201c565b8160039080519060200190620000da92919062000352565b508060049080519060200190620000f392919062000352565b50620001046200034960201b60201c565b60018190555050506001600981905550668e1bc9bf040000600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550636312fb70600a60000160086101000a81548163ffffffff021916908363ffffffff1602179055506363131790600a600001600c6101000a81548163ffffffff021916908363ffffffff16021790555067011c37937e080000600a60000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506363134fd0600a60000160186101000a81548163ffffffff021916908363ffffffff1602179055506363137a00600a600001601c6101000a81548163ffffffff021916908363ffffffff1602179055506701aa535d3d0c0000600a60010160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550636314a150600a60010160086101000a81548163ffffffff021916908363ffffffff16021790555062000467565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620003609062000402565b90600052602060002090601f016020900481019282620003845760008555620003d0565b82601f106200039f57805160ff1916838001178555620003d0565b82800160010185558215620003d0579182015b82811115620003cf578251825591602001919060010190620003b2565b5b509050620003df9190620003e3565b5090565b5b80821115620003fe576000816000905550600101620003e4565b5090565b600060028204905060018216806200041b57607f821691505b6020821081141562000432576200043162000438565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160c05160e051614992620004a86000396000818161102201526119e001526000611e25015260006124ba0152600061196b01526149926000f3fe6080604052600436106101f95760003560e01c806395d89b411161010d578063b88d4fde116100a0578063dbcad76f1161006f578063dbcad76f14610718578063dc33e68114610755578063e985e9c514610792578063f2fde38b146107cf578063fc5e37ae146107f8576101f9565b8063b88d4fde1461066d578063c180526a14610696578063c87b56dd146106b2578063c921d291146106ef576101f9565b8063ac446002116100dc578063ac446002146105e8578063ade9b400146105ff578063b05863d514610628578063b3ab66b014610651576101f9565b806395d89b411461051a578063a22cb46514610545578063a7cd52cb1461056e578063a9da1aea146105ab576101f9565b806355f804b31161019057806370a082311161015f57806370a082311461043e578063715018a61461047b5780638bc35c2f146104925780638da5cb5b146104bd57806390aa0b0f146104e8576101f9565b806355f804b3146103865780635db3c0a3146103af5780636352211e146103d857806366a49caf14610415576101f9565b80631015805b116101cc5780631015805b146102cc57806318160ddd1461030957806323b872dd1461033457806342842e0e1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613744565b610802565b6040516102329190613d58565b60405180910390f35b34801561024757600080fd5b50610250610894565b60405161025d9190613d73565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906137eb565b610926565b60405161029a9190613cf1565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613643565b6109a2565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906134c0565b610b49565b6040516103009190614015565b60405180910390f35b34801561031557600080fd5b5061031e610c01565b60405161032b9190614015565b60405180910390f35b34801561034057600080fd5b5061035b6004803603810190610356919061352d565b610c18565b005b34801561036957600080fd5b50610384600480360381019061037f919061352d565b610c28565b005b34801561039257600080fd5b506103ad60048036038101906103a8919061379e565b610c48565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613683565b610cda565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906137eb565b610dd8565b60405161040c9190613cf1565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613898565b610dea565b005b34801561044a57600080fd5b50610465600480360381019061046091906134c0565b610edf565b6040516104729190614015565b60405180910390f35b34801561048757600080fd5b50610490610f98565b005b34801561049e57600080fd5b506104a7611020565b6040516104b49190614015565b60405180910390f35b3480156104c957600080fd5b506104d2611044565b6040516104df9190613cf1565b60405180910390f35b3480156104f457600080fd5b506104fd61106d565b604051610511989796959493929190614030565b60405180910390f35b34801561052657600080fd5b5061052f61112f565b60405161053c9190613d73565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613603565b6111c1565b005b34801561057a57600080fd5b50610595600480360381019061059091906134c0565b611339565b6040516105a29190614015565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906134c0565b611351565b6040516105df9190614015565b60405180910390f35b3480156105f457600080fd5b506105fd611369565b005b34801561060b57600080fd5b5061062660048036038101906106219190613858565b6114fe565b005b34801561063457600080fd5b5061064f600480360381019061064a91906136cc565b6115ce565b005b61066b600480360381019061066691906137eb565b61172a565b005b34801561067957600080fd5b50610694600480360381019061068f9190613580565b611b0c565b005b6106b060048036038101906106ab91906137eb565b611b7f565b005b3480156106be57600080fd5b506106d960048036038101906106d491906137eb565b611f4a565b6040516106e69190613d73565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190613898565b611fe9565b005b34801561072457600080fd5b5061073f600480360381019061073a9190613818565b6120de565b60405161074c9190613d58565b60405180910390f35b34801561076157600080fd5b5061077c600480360381019061077791906134c0565b6120f8565b6040516107899190614015565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b491906134ed565b61210a565b6040516107c69190613d58565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f191906134c0565b61219e565b005b610800612296565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108a390614392565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90614392565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b60006109318261259c565b610967576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ad826125fb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a15576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a346126c9565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b6126c9565b61210a565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613dd5565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c0b6126d1565b6002546001540303905090565b610c238383836126da565b505050565b610c4383838360405180602001604052806000815250611b0c565b505050565b610c50612a84565b73ffffffffffffffffffffffffffffffffffffffff16610c6e611044565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613ed5565b60405180910390fd5b8181600f9190610cd5929190613188565b505050565b610ce2612a84565b73ffffffffffffffffffffffffffffffffffffffff16610d00611044565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613ed5565b60405180910390fd5b60005b8151811015610dd4576001600c6000848481518110610d7b57610d7a61449c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610dcc906143f5565b915050610d59565b5050565b6000610de3826125fb565b9050919050565b610df2612a84565b73ffffffffffffffffffffffffffffffffffffffff16610e10611044565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613ed5565b60405180910390fd5b82600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600a60000160086101000a81548163ffffffff021916908363ffffffff16021790555080600a600001600c6101000a81548163ffffffff021916908363ffffffff160217905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa0612a84565b73ffffffffffffffffffffffffffffffffffffffff16610fbe611044565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613ed5565b60405180910390fd5b61101e6000612a8c565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900463ffffffff169080600001600c9054906101000a900463ffffffff16908060000160109054906101000a900467ffffffffffffffff16908060000160189054906101000a900463ffffffff169080600001601c9054906101000a900463ffffffff16908060010160009054906101000a900467ffffffffffffffff16908060010160089054906101000a900463ffffffff16905088565b60606004805461113e90614392565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90614392565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b5050505050905090565b6111c96126c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061123b6126c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e86126c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132d9190613d58565b60405180910390a35050565b600d6020528060005260406000206000915090505481565b600c6020528060005260406000206000915090505481565b611371612a84565b73ffffffffffffffffffffffffffffffffffffffff1661138f611044565b73ffffffffffffffffffffffffffffffffffffffff16146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613ed5565b60405180910390fd5b6002600954141561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613fd5565b60405180910390fd5b60026009819055506000738b8f502d1c74df89b1c274669926707ea9e8dab573ffffffffffffffffffffffffffffffffffffffff164760405161146d90613cdc565b60006040518083038185875af1925050503d80600081146114aa576040519150601f19603f3d011682016040523d82523d6000602084013e6114af565b606091505b50509050806114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90613f55565b60405180910390fd5b506001600981905550565b611506612a84565b73ffffffffffffffffffffffffffffffffffffffff16611524611044565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613ed5565b60405180910390fd5b81600a60010160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600a60010160086101000a81548163ffffffff021916908363ffffffff1602179055505050565b6115d6612a84565b73ffffffffffffffffffffffffffffffffffffffff166115f4611044565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613ed5565b60405180910390fd5b805182511461168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613ff5565b60405180910390fd5b60005b8251811015611725578181815181106116ad576116ac61449c565b5b6020026020010151600d60008584815181106116cc576116cb61449c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061171d906143f5565b915050611691565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613e15565b60405180910390fd5b6000600a604051806101000160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201600c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160189054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201601c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900463ffffffff1663ffffffff1663ffffffff1681525050905060008160c0015167ffffffffffffffff16905060008260e0015163ffffffff16905061192a82826120de565b611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613f35565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084611993610c01565b61199d91906141aa565b11156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613e55565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084611a0933610b49565b611a1391906141aa565b1115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613fb5565b60405180910390fd5b611a5e3385612b50565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481611aae91906141aa565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b058584611b009190614200565b612b6e565b5050505050565b611b178484846126da565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b7957611b4284848484612c0f565b611b78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613e15565b60405180910390fd5b6000600a60000160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000600a60000160189054906101000a900463ffffffff1663ffffffff1690506000600a600001601c9054906101000a900463ffffffff1663ffffffff1690506000831415611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613ef5565b60405180910390fd5b81421015611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390613ef5565b60405180910390fd5b80421115611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613e75565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613e95565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90613e95565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084611e4d610c01565b611e5791906141aa565b1115611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613d95565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ee3919061425a565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f303385612b50565b611f448484611f3f9190614200565b612b6e565b50505050565b6060611f558261259c565b611f8b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f95612d6f565b9050600081511415611fb65760405180602001604052806000815250611fe1565b80611fc084612e01565b604051602001611fd1929190613cb8565b6040516020818303038152906040525b915050919050565b611ff1612a84565b73ffffffffffffffffffffffffffffffffffffffff1661200f611044565b73ffffffffffffffffffffffffffffffffffffffff1614612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90613ed5565b60405180910390fd5b82600a60000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600a60000160186101000a81548163ffffffff021916908363ffffffff16021790555080600a600001601c6101000a81548163ffffffff021916908363ffffffff160217905550505050565b60008083141580156120f05750814210155b905092915050565b600061210382612e5b565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121a6612a84565b73ffffffffffffffffffffffffffffffffffffffff166121c4611044565b73ffffffffffffffffffffffffffffffffffffffff161461221a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221190613ed5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228190613db5565b60405180910390fd5b61229381612a8c565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90613e15565b60405180910390fd5b6000600a60000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000600a60000160089054906101000a900463ffffffff1663ffffffff1690506000600a600001600c9054906101000a900463ffffffff1663ffffffff16905060008314156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790613df5565b60405180910390fd5b814210156123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90613f15565b60405180910390fd5b80421115612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90613e35565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af90613eb5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000060016124e3610c01565b6124ed91906141aa565b111561252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590613f75565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061257e90614368565b919050555061258e336001612b50565b61259783612b6e565b505050565b6000816125a76126d1565b111580156125b6575060015482105b80156125f4575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000808290508061260a6126d1565b11612692576001548110156126915760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561268f575b600081141561268557600560008360019003935083815260200190815260200160002054905061265a565b80925050506126c4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006126e5826125fb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461274c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661276d6126c9565b73ffffffffffffffffffffffffffffffffffffffff16148061279c575061279b856127966126c9565b61210a565b5b806127e157506127aa6126c9565b73ffffffffffffffffffffffffffffffffffffffff166127c984610926565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061281a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612881576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288e8585856001612eb2565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61298b86612eb8565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612a15576000600184019050600060056000838152602001908152602001600020541415612a13576001548114612a12578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7d8585856001612ec2565b5050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b6a828260405180602001604052806000815250612ec8565b5050565b80341015612bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba890613f95565b60405180910390fd5b80341115612c0c573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612bdf919061425a565b9081150290604051600060405180830381858888f19350505050158015612c0a573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c356126c9565b8786866040518563ffffffff1660e01b8152600401612c579493929190613d0c565b602060405180830381600087803b158015612c7157600080fd5b505af1925050508015612ca257506040513d601f19601f82011682018060405250810190612c9f9190613771565b60015b612d1c573d8060008114612cd2576040519150601f19603f3d011682016040523d82523d6000602084013e612cd7565b606091505b50600081511415612d14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612d7e90614392565b80601f0160208091040260200160405190810160405280929190818152602001828054612daa90614392565b8015612df75780601f10612dcc57610100808354040283529160200191612df7565b820191906000526020600020905b815481529060010190602001808311612dda57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612e4757600183039250600a81066030018353600a81049050612e27565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f36576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612f71576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f7e6000858386612eb2565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612fe36001851461317e565b901b60a042901b612ff386612eb8565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146130f7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130a76000878480600101955087612c0f565b6130dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130385782600154146130f257600080fd5b613162565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130f8575b8160018190555050506131786000858386612ec2565b50505050565b6000819050919050565b82805461319490614392565b90600052602060002090601f0160209004810192826131b657600085556131fd565b82601f106131cf57803560ff19168380011785556131fd565b828001600101855582156131fd579182015b828111156131fc5782358255916020019190600101906131e1565b5b50905061320a919061320e565b5090565b5b8082111561322757600081600090555060010161320f565b5090565b600061323e613239846140d3565b6140ae565b9050808382526020820190508285602086028201111561326157613260614504565b5b60005b858110156132915781613277888261334d565b845260208401935060208301925050600181019050613264565b5050509392505050565b60006132ae6132a9846140ff565b6140ae565b905080838252602082019050828560208602820111156132d1576132d0614504565b5b60005b8581101561330157816132e78882613481565b8452602084019350602083019250506001810190506132d4565b5050509392505050565b600061331e6133198461412b565b6140ae565b90508281526020810184848401111561333a57613339614509565b5b613345848285614326565b509392505050565b60008135905061335c816148d2565b92915050565b600082601f830112613377576133766144ff565b5b813561338784826020860161322b565b91505092915050565b600082601f8301126133a5576133a46144ff565b5b81356133b584826020860161329b565b91505092915050565b6000813590506133cd816148e9565b92915050565b6000813590506133e281614900565b92915050565b6000815190506133f781614900565b92915050565b600082601f830112613412576134116144ff565b5b813561342284826020860161330b565b91505092915050565b60008083601f840112613441576134406144ff565b5b8235905067ffffffffffffffff81111561345e5761345d6144fa565b5b60208301915083600182028301111561347a57613479614504565b5b9250929050565b60008135905061349081614917565b92915050565b6000813590506134a58161492e565b92915050565b6000813590506134ba81614945565b92915050565b6000602082840312156134d6576134d5614513565b5b60006134e48482850161334d565b91505092915050565b6000806040838503121561350457613503614513565b5b60006135128582860161334d565b92505060206135238582860161334d565b9150509250929050565b60008060006060848603121561354657613545614513565b5b60006135548682870161334d565b93505060206135658682870161334d565b925050604061357686828701613481565b9150509250925092565b6000806000806080858703121561359a57613599614513565b5b60006135a88782880161334d565b94505060206135b98782880161334d565b93505060406135ca87828801613481565b925050606085013567ffffffffffffffff8111156135eb576135ea61450e565b5b6135f7878288016133fd565b91505092959194509250565b6000806040838503121561361a57613619614513565b5b60006136288582860161334d565b9250506020613639858286016133be565b9150509250929050565b6000806040838503121561365a57613659614513565b5b60006136688582860161334d565b925050602061367985828601613481565b9150509250929050565b60006020828403121561369957613698614513565b5b600082013567ffffffffffffffff8111156136b7576136b661450e565b5b6136c384828501613362565b91505092915050565b600080604083850312156136e3576136e2614513565b5b600083013567ffffffffffffffff8111156137015761370061450e565b5b61370d85828601613362565b925050602083013567ffffffffffffffff81111561372e5761372d61450e565b5b61373a85828601613390565b9150509250929050565b60006020828403121561375a57613759614513565b5b6000613768848285016133d3565b91505092915050565b60006020828403121561378757613786614513565b5b6000613795848285016133e8565b91505092915050565b600080602083850312156137b5576137b4614513565b5b600083013567ffffffffffffffff8111156137d3576137d261450e565b5b6137df8582860161342b565b92509250509250929050565b60006020828403121561380157613800614513565b5b600061380f84828501613481565b91505092915050565b6000806040838503121561382f5761382e614513565b5b600061383d85828601613481565b925050602061384e85828601613481565b9150509250929050565b6000806040838503121561386f5761386e614513565b5b600061387d858286016134ab565b925050602061388e85828601613496565b9150509250929050565b6000806000606084860312156138b1576138b0614513565b5b60006138bf868287016134ab565b93505060206138d086828701613496565b92505060406138e186828701613496565b9150509250925092565b6138f48161428e565b82525050565b613903816142a0565b82525050565b60006139148261415c565b61391e8185614172565b935061392e818560208601614335565b61393781614518565b840191505092915050565b600061394d82614167565b613957818561418e565b9350613967818560208601614335565b61397081614518565b840191505092915050565b600061398682614167565b613990818561419f565b93506139a0818560208601614335565b80840191505092915050565b60006139b9601c8361418e565b91506139c482614529565b602082019050919050565b60006139dc60268361418e565b91506139e782614552565b604082019050919050565b60006139ff60288361418e565b9150613a0a826145a1565b604082019050919050565b6000613a22601a8361418e565b9150613a2d826145f0565b602082019050919050565b6000613a45601e8361418e565b9150613a5082614619565b602082019050919050565b6000613a6860168361418e565b9150613a7382614642565b602082019050919050565b6000613a8b60128361418e565b9150613a968261466b565b602082019050919050565b6000613aae60188361418e565b9150613ab982614694565b602082019050919050565b6000613ad1601f8361418e565b9150613adc826146bd565b602082019050919050565b6000613af460198361418e565b9150613aff826146e6565b602082019050919050565b6000613b1760208361418e565b9150613b228261470f565b602082019050919050565b6000613b3a60208361418e565b9150613b4582614738565b602082019050919050565b6000613b5d601e8361418e565b9150613b6882614761565b602082019050919050565b6000613b80601d8361418e565b9150613b8b8261478a565b602082019050919050565b6000613ba3600083614183565b9150613bae826147b3565b600082019050919050565b6000613bc660108361418e565b9150613bd1826147b6565b602082019050919050565b6000613be9601a8361418e565b9150613bf4826147df565b602082019050919050565b6000613c0c60168361418e565b9150613c1782614808565b602082019050919050565b6000613c2f60168361418e565b9150613c3a82614831565b602082019050919050565b6000613c52601f8361418e565b9150613c5d8261485a565b602082019050919050565b6000613c7560288361418e565b9150613c8082614883565b604082019050919050565b613c94816142f8565b82525050565b613ca381614302565b82525050565b613cb281614312565b82525050565b6000613cc4828561397b565b9150613cd0828461397b565b91508190509392505050565b6000613ce782613b96565b9150819050919050565b6000602082019050613d0660008301846138eb565b92915050565b6000608082019050613d2160008301876138eb565b613d2e60208301866138eb565b613d3b6040830185613c8b565b8181036060830152613d4d8184613909565b905095945050505050565b6000602082019050613d6d60008301846138fa565b92915050565b60006020820190508181036000830152613d8d8184613942565b905092915050565b60006020820190508181036000830152613dae816139ac565b9050919050565b60006020820190508181036000830152613dce816139cf565b9050919050565b60006020820190508181036000830152613dee816139f2565b9050919050565b60006020820190508181036000830152613e0e81613a15565b9050919050565b60006020820190508181036000830152613e2e81613a38565b9050919050565b60006020820190508181036000830152613e4e81613a5b565b9050919050565b60006020820190508181036000830152613e6e81613a7e565b9050919050565b60006020820190508181036000830152613e8e81613aa1565b9050919050565b60006020820190508181036000830152613eae81613ac4565b9050919050565b60006020820190508181036000830152613ece81613ae7565b9050919050565b60006020820190508181036000830152613eee81613b0a565b9050919050565b60006020820190508181036000830152613f0e81613b2d565b9050919050565b60006020820190508181036000830152613f2e81613b50565b9050919050565b60006020820190508181036000830152613f4e81613b73565b9050919050565b60006020820190508181036000830152613f6e81613bb9565b9050919050565b60006020820190508181036000830152613f8e81613bdc565b9050919050565b60006020820190508181036000830152613fae81613bff565b9050919050565b60006020820190508181036000830152613fce81613c22565b9050919050565b60006020820190508181036000830152613fee81613c45565b9050919050565b6000602082019050818103600083015261400e81613c68565b9050919050565b600060208201905061402a6000830184613c8b565b92915050565b600061010082019050614046600083018b613ca9565b614053602083018a613c9a565b6140606040830189613c9a565b61406d6060830188613ca9565b61407a6080830187613c9a565b61408760a0830186613c9a565b61409460c0830185613ca9565b6140a160e0830184613c9a565b9998505050505050505050565b60006140b86140c9565b90506140c482826143c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ee576140ed6144cb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561411a576141196144cb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614146576141456144cb565b5b61414f82614518565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141b5826142f8565b91506141c0836142f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141f5576141f461443e565b5b828201905092915050565b600061420b826142f8565b9150614216836142f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561424f5761424e61443e565b5b828202905092915050565b6000614265826142f8565b9150614270836142f8565b9250828210156142835761428261443e565b5b828203905092915050565b6000614299826142d8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614353578082015181840152602081019050614338565b83811115614362576000848401525b50505050565b6000614373826142f8565b915060008214156143875761438661443e565b5b600182039050919050565b600060028204905060018216806143aa57607f821691505b602082108114156143be576143bd61446d565b5b50919050565b6143cd82614518565b810181811067ffffffffffffffff821117156143ec576143eb6144cb565b5b80604052505050565b6000614400826142f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144335761443261443e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f72656163686564206d617820616c6c6f776c69737420737570706c7900000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6e756d626572206d696e74656420717565727920666f7220746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f7669702073616c6520686173206e6f7420626567756e20796574000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f7669706c6973742073616c652068617320656e64656400000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f616c6c6f776c6973742073616c652068617320656e6465640000000000000000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f6e6f7420656c696769626c6520666f7220766970206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616c6c6f776c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b7f7669706c6973742073616c6520686173206e6f7420626567756e207965740000600082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f72656163686564206d6178207669706c69737420737570706c79000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6148db8161428e565b81146148e657600080fd5b50565b6148f2816142a0565b81146148fd57600080fd5b50565b614909816142ac565b811461491457600080fd5b50565b614920816142f8565b811461492b57600080fd5b50565b61493781614302565b811461494257600080fd5b50565b61494e81614312565b811461495957600080fd5b5056fea264697066735822122043e9b79e2e14baefea15fb5c93e73e57db803e0b0849d00c056346f3a67fc3da64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806395d89b411161010d578063b88d4fde116100a0578063dbcad76f1161006f578063dbcad76f14610718578063dc33e68114610755578063e985e9c514610792578063f2fde38b146107cf578063fc5e37ae146107f8576101f9565b8063b88d4fde1461066d578063c180526a14610696578063c87b56dd146106b2578063c921d291146106ef576101f9565b8063ac446002116100dc578063ac446002146105e8578063ade9b400146105ff578063b05863d514610628578063b3ab66b014610651576101f9565b806395d89b411461051a578063a22cb46514610545578063a7cd52cb1461056e578063a9da1aea146105ab576101f9565b806355f804b31161019057806370a082311161015f57806370a082311461043e578063715018a61461047b5780638bc35c2f146104925780638da5cb5b146104bd57806390aa0b0f146104e8576101f9565b806355f804b3146103865780635db3c0a3146103af5780636352211e146103d857806366a49caf14610415576101f9565b80631015805b116101cc5780631015805b146102cc57806318160ddd1461030957806323b872dd1461033457806342842e0e1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613744565b610802565b6040516102329190613d58565b60405180910390f35b34801561024757600080fd5b50610250610894565b60405161025d9190613d73565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906137eb565b610926565b60405161029a9190613cf1565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613643565b6109a2565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906134c0565b610b49565b6040516103009190614015565b60405180910390f35b34801561031557600080fd5b5061031e610c01565b60405161032b9190614015565b60405180910390f35b34801561034057600080fd5b5061035b6004803603810190610356919061352d565b610c18565b005b34801561036957600080fd5b50610384600480360381019061037f919061352d565b610c28565b005b34801561039257600080fd5b506103ad60048036038101906103a8919061379e565b610c48565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613683565b610cda565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906137eb565b610dd8565b60405161040c9190613cf1565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613898565b610dea565b005b34801561044a57600080fd5b50610465600480360381019061046091906134c0565b610edf565b6040516104729190614015565b60405180910390f35b34801561048757600080fd5b50610490610f98565b005b34801561049e57600080fd5b506104a7611020565b6040516104b49190614015565b60405180910390f35b3480156104c957600080fd5b506104d2611044565b6040516104df9190613cf1565b60405180910390f35b3480156104f457600080fd5b506104fd61106d565b604051610511989796959493929190614030565b60405180910390f35b34801561052657600080fd5b5061052f61112f565b60405161053c9190613d73565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613603565b6111c1565b005b34801561057a57600080fd5b50610595600480360381019061059091906134c0565b611339565b6040516105a29190614015565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906134c0565b611351565b6040516105df9190614015565b60405180910390f35b3480156105f457600080fd5b506105fd611369565b005b34801561060b57600080fd5b5061062660048036038101906106219190613858565b6114fe565b005b34801561063457600080fd5b5061064f600480360381019061064a91906136cc565b6115ce565b005b61066b600480360381019061066691906137eb565b61172a565b005b34801561067957600080fd5b50610694600480360381019061068f9190613580565b611b0c565b005b6106b060048036038101906106ab91906137eb565b611b7f565b005b3480156106be57600080fd5b506106d960048036038101906106d491906137eb565b611f4a565b6040516106e69190613d73565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190613898565b611fe9565b005b34801561072457600080fd5b5061073f600480360381019061073a9190613818565b6120de565b60405161074c9190613d58565b60405180910390f35b34801561076157600080fd5b5061077c600480360381019061077791906134c0565b6120f8565b6040516107899190614015565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b491906134ed565b61210a565b6040516107c69190613d58565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f191906134c0565b61219e565b005b610800612296565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108a390614392565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90614392565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b60006109318261259c565b610967576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ad826125fb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a15576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a346126c9565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b6126c9565b61210a565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613dd5565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c0b6126d1565b6002546001540303905090565b610c238383836126da565b505050565b610c4383838360405180602001604052806000815250611b0c565b505050565b610c50612a84565b73ffffffffffffffffffffffffffffffffffffffff16610c6e611044565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613ed5565b60405180910390fd5b8181600f9190610cd5929190613188565b505050565b610ce2612a84565b73ffffffffffffffffffffffffffffffffffffffff16610d00611044565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613ed5565b60405180910390fd5b60005b8151811015610dd4576001600c6000848481518110610d7b57610d7a61449c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610dcc906143f5565b915050610d59565b5050565b6000610de3826125fb565b9050919050565b610df2612a84565b73ffffffffffffffffffffffffffffffffffffffff16610e10611044565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613ed5565b60405180910390fd5b82600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600a60000160086101000a81548163ffffffff021916908363ffffffff16021790555080600a600001600c6101000a81548163ffffffff021916908363ffffffff160217905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa0612a84565b73ffffffffffffffffffffffffffffffffffffffff16610fbe611044565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613ed5565b60405180910390fd5b61101e6000612a8c565b565b7f000000000000000000000000000000000000000000000000000000000000000281565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900463ffffffff169080600001600c9054906101000a900463ffffffff16908060000160109054906101000a900467ffffffffffffffff16908060000160189054906101000a900463ffffffff169080600001601c9054906101000a900463ffffffff16908060010160009054906101000a900467ffffffffffffffff16908060010160089054906101000a900463ffffffff16905088565b60606004805461113e90614392565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90614392565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b5050505050905090565b6111c96126c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061123b6126c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e86126c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132d9190613d58565b60405180910390a35050565b600d6020528060005260406000206000915090505481565b600c6020528060005260406000206000915090505481565b611371612a84565b73ffffffffffffffffffffffffffffffffffffffff1661138f611044565b73ffffffffffffffffffffffffffffffffffffffff16146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613ed5565b60405180910390fd5b6002600954141561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613fd5565b60405180910390fd5b60026009819055506000738b8f502d1c74df89b1c274669926707ea9e8dab573ffffffffffffffffffffffffffffffffffffffff164760405161146d90613cdc565b60006040518083038185875af1925050503d80600081146114aa576040519150601f19603f3d011682016040523d82523d6000602084013e6114af565b606091505b50509050806114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90613f55565b60405180910390fd5b506001600981905550565b611506612a84565b73ffffffffffffffffffffffffffffffffffffffff16611524611044565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613ed5565b60405180910390fd5b81600a60010160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600a60010160086101000a81548163ffffffff021916908363ffffffff1602179055505050565b6115d6612a84565b73ffffffffffffffffffffffffffffffffffffffff166115f4611044565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613ed5565b60405180910390fd5b805182511461168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613ff5565b60405180910390fd5b60005b8251811015611725578181815181106116ad576116ac61449c565b5b6020026020010151600d60008584815181106116cc576116cb61449c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061171d906143f5565b915050611691565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613e15565b60405180910390fd5b6000600a604051806101000160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201600c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160189054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201601c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900463ffffffff1663ffffffff1663ffffffff1681525050905060008160c0015167ffffffffffffffff16905060008260e0015163ffffffff16905061192a82826120de565b611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613f35565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000177084611993610c01565b61199d91906141aa565b11156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613e55565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000284611a0933610b49565b611a1391906141aa565b1115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613fb5565b60405180910390fd5b611a5e3385612b50565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481611aae91906141aa565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b058584611b009190614200565b612b6e565b5050505050565b611b178484846126da565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b7957611b4284848484612c0f565b611b78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613e15565b60405180910390fd5b6000600a60000160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000600a60000160189054906101000a900463ffffffff1663ffffffff1690506000600a600001601c9054906101000a900463ffffffff1663ffffffff1690506000831415611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613ef5565b60405180910390fd5b81421015611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390613ef5565b60405180910390fd5b80421115611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613e75565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613e95565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90613e95565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000119484611e4d610c01565b611e5791906141aa565b1115611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613d95565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ee3919061425a565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f303385612b50565b611f448484611f3f9190614200565b612b6e565b50505050565b6060611f558261259c565b611f8b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f95612d6f565b9050600081511415611fb65760405180602001604052806000815250611fe1565b80611fc084612e01565b604051602001611fd1929190613cb8565b6040516020818303038152906040525b915050919050565b611ff1612a84565b73ffffffffffffffffffffffffffffffffffffffff1661200f611044565b73ffffffffffffffffffffffffffffffffffffffff1614612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90613ed5565b60405180910390fd5b82600a60000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600a60000160186101000a81548163ffffffff021916908363ffffffff16021790555080600a600001601c6101000a81548163ffffffff021916908363ffffffff160217905550505050565b60008083141580156120f05750814210155b905092915050565b600061210382612e5b565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121a6612a84565b73ffffffffffffffffffffffffffffffffffffffff166121c4611044565b73ffffffffffffffffffffffffffffffffffffffff161461221a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221190613ed5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228190613db5565b60405180910390fd5b61229381612a8c565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90613e15565b60405180910390fd5b6000600a60000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000600a60000160089054906101000a900463ffffffff1663ffffffff1690506000600a600001600c9054906101000a900463ffffffff1663ffffffff16905060008314156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790613df5565b60405180910390fd5b814210156123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90613f15565b60405180910390fd5b80421115612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90613e35565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af90613eb5565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000001f460016124e3610c01565b6124ed91906141aa565b111561252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590613f75565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061257e90614368565b919050555061258e336001612b50565b61259783612b6e565b505050565b6000816125a76126d1565b111580156125b6575060015482105b80156125f4575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000808290508061260a6126d1565b11612692576001548110156126915760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561268f575b600081141561268557600560008360019003935083815260200190815260200160002054905061265a565b80925050506126c4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006126e5826125fb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461274c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661276d6126c9565b73ffffffffffffffffffffffffffffffffffffffff16148061279c575061279b856127966126c9565b61210a565b5b806127e157506127aa6126c9565b73ffffffffffffffffffffffffffffffffffffffff166127c984610926565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061281a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612881576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288e8585856001612eb2565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61298b86612eb8565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612a15576000600184019050600060056000838152602001908152602001600020541415612a13576001548114612a12578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7d8585856001612ec2565b5050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b6a828260405180602001604052806000815250612ec8565b5050565b80341015612bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba890613f95565b60405180910390fd5b80341115612c0c573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612bdf919061425a565b9081150290604051600060405180830381858888f19350505050158015612c0a573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c356126c9565b8786866040518563ffffffff1660e01b8152600401612c579493929190613d0c565b602060405180830381600087803b158015612c7157600080fd5b505af1925050508015612ca257506040513d601f19601f82011682018060405250810190612c9f9190613771565b60015b612d1c573d8060008114612cd2576040519150601f19603f3d011682016040523d82523d6000602084013e612cd7565b606091505b50600081511415612d14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612d7e90614392565b80601f0160208091040260200160405190810160405280929190818152602001828054612daa90614392565b8015612df75780601f10612dcc57610100808354040283529160200191612df7565b820191906000526020600020905b815481529060010190602001808311612dda57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612e4757600183039250600a81066030018353600a81049050612e27565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f36576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612f71576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f7e6000858386612eb2565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612fe36001851461317e565b901b60a042901b612ff386612eb8565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146130f7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130a76000878480600101955087612c0f565b6130dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130385782600154146130f257600080fd5b613162565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130f8575b8160018190555050506131786000858386612ec2565b50505050565b6000819050919050565b82805461319490614392565b90600052602060002090601f0160209004810192826131b657600085556131fd565b82601f106131cf57803560ff19168380011785556131fd565b828001600101855582156131fd579182015b828111156131fc5782358255916020019190600101906131e1565b5b50905061320a919061320e565b5090565b5b8082111561322757600081600090555060010161320f565b5090565b600061323e613239846140d3565b6140ae565b9050808382526020820190508285602086028201111561326157613260614504565b5b60005b858110156132915781613277888261334d565b845260208401935060208301925050600181019050613264565b5050509392505050565b60006132ae6132a9846140ff565b6140ae565b905080838252602082019050828560208602820111156132d1576132d0614504565b5b60005b8581101561330157816132e78882613481565b8452602084019350602083019250506001810190506132d4565b5050509392505050565b600061331e6133198461412b565b6140ae565b90508281526020810184848401111561333a57613339614509565b5b613345848285614326565b509392505050565b60008135905061335c816148d2565b92915050565b600082601f830112613377576133766144ff565b5b813561338784826020860161322b565b91505092915050565b600082601f8301126133a5576133a46144ff565b5b81356133b584826020860161329b565b91505092915050565b6000813590506133cd816148e9565b92915050565b6000813590506133e281614900565b92915050565b6000815190506133f781614900565b92915050565b600082601f830112613412576134116144ff565b5b813561342284826020860161330b565b91505092915050565b60008083601f840112613441576134406144ff565b5b8235905067ffffffffffffffff81111561345e5761345d6144fa565b5b60208301915083600182028301111561347a57613479614504565b5b9250929050565b60008135905061349081614917565b92915050565b6000813590506134a58161492e565b92915050565b6000813590506134ba81614945565b92915050565b6000602082840312156134d6576134d5614513565b5b60006134e48482850161334d565b91505092915050565b6000806040838503121561350457613503614513565b5b60006135128582860161334d565b92505060206135238582860161334d565b9150509250929050565b60008060006060848603121561354657613545614513565b5b60006135548682870161334d565b93505060206135658682870161334d565b925050604061357686828701613481565b9150509250925092565b6000806000806080858703121561359a57613599614513565b5b60006135a88782880161334d565b94505060206135b98782880161334d565b93505060406135ca87828801613481565b925050606085013567ffffffffffffffff8111156135eb576135ea61450e565b5b6135f7878288016133fd565b91505092959194509250565b6000806040838503121561361a57613619614513565b5b60006136288582860161334d565b9250506020613639858286016133be565b9150509250929050565b6000806040838503121561365a57613659614513565b5b60006136688582860161334d565b925050602061367985828601613481565b9150509250929050565b60006020828403121561369957613698614513565b5b600082013567ffffffffffffffff8111156136b7576136b661450e565b5b6136c384828501613362565b91505092915050565b600080604083850312156136e3576136e2614513565b5b600083013567ffffffffffffffff8111156137015761370061450e565b5b61370d85828601613362565b925050602083013567ffffffffffffffff81111561372e5761372d61450e565b5b61373a85828601613390565b9150509250929050565b60006020828403121561375a57613759614513565b5b6000613768848285016133d3565b91505092915050565b60006020828403121561378757613786614513565b5b6000613795848285016133e8565b91505092915050565b600080602083850312156137b5576137b4614513565b5b600083013567ffffffffffffffff8111156137d3576137d261450e565b5b6137df8582860161342b565b92509250509250929050565b60006020828403121561380157613800614513565b5b600061380f84828501613481565b91505092915050565b6000806040838503121561382f5761382e614513565b5b600061383d85828601613481565b925050602061384e85828601613481565b9150509250929050565b6000806040838503121561386f5761386e614513565b5b600061387d858286016134ab565b925050602061388e85828601613496565b9150509250929050565b6000806000606084860312156138b1576138b0614513565b5b60006138bf868287016134ab565b93505060206138d086828701613496565b92505060406138e186828701613496565b9150509250925092565b6138f48161428e565b82525050565b613903816142a0565b82525050565b60006139148261415c565b61391e8185614172565b935061392e818560208601614335565b61393781614518565b840191505092915050565b600061394d82614167565b613957818561418e565b9350613967818560208601614335565b61397081614518565b840191505092915050565b600061398682614167565b613990818561419f565b93506139a0818560208601614335565b80840191505092915050565b60006139b9601c8361418e565b91506139c482614529565b602082019050919050565b60006139dc60268361418e565b91506139e782614552565b604082019050919050565b60006139ff60288361418e565b9150613a0a826145a1565b604082019050919050565b6000613a22601a8361418e565b9150613a2d826145f0565b602082019050919050565b6000613a45601e8361418e565b9150613a5082614619565b602082019050919050565b6000613a6860168361418e565b9150613a7382614642565b602082019050919050565b6000613a8b60128361418e565b9150613a968261466b565b602082019050919050565b6000613aae60188361418e565b9150613ab982614694565b602082019050919050565b6000613ad1601f8361418e565b9150613adc826146bd565b602082019050919050565b6000613af460198361418e565b9150613aff826146e6565b602082019050919050565b6000613b1760208361418e565b9150613b228261470f565b602082019050919050565b6000613b3a60208361418e565b9150613b4582614738565b602082019050919050565b6000613b5d601e8361418e565b9150613b6882614761565b602082019050919050565b6000613b80601d8361418e565b9150613b8b8261478a565b602082019050919050565b6000613ba3600083614183565b9150613bae826147b3565b600082019050919050565b6000613bc660108361418e565b9150613bd1826147b6565b602082019050919050565b6000613be9601a8361418e565b9150613bf4826147df565b602082019050919050565b6000613c0c60168361418e565b9150613c1782614808565b602082019050919050565b6000613c2f60168361418e565b9150613c3a82614831565b602082019050919050565b6000613c52601f8361418e565b9150613c5d8261485a565b602082019050919050565b6000613c7560288361418e565b9150613c8082614883565b604082019050919050565b613c94816142f8565b82525050565b613ca381614302565b82525050565b613cb281614312565b82525050565b6000613cc4828561397b565b9150613cd0828461397b565b91508190509392505050565b6000613ce782613b96565b9150819050919050565b6000602082019050613d0660008301846138eb565b92915050565b6000608082019050613d2160008301876138eb565b613d2e60208301866138eb565b613d3b6040830185613c8b565b8181036060830152613d4d8184613909565b905095945050505050565b6000602082019050613d6d60008301846138fa565b92915050565b60006020820190508181036000830152613d8d8184613942565b905092915050565b60006020820190508181036000830152613dae816139ac565b9050919050565b60006020820190508181036000830152613dce816139cf565b9050919050565b60006020820190508181036000830152613dee816139f2565b9050919050565b60006020820190508181036000830152613e0e81613a15565b9050919050565b60006020820190508181036000830152613e2e81613a38565b9050919050565b60006020820190508181036000830152613e4e81613a5b565b9050919050565b60006020820190508181036000830152613e6e81613a7e565b9050919050565b60006020820190508181036000830152613e8e81613aa1565b9050919050565b60006020820190508181036000830152613eae81613ac4565b9050919050565b60006020820190508181036000830152613ece81613ae7565b9050919050565b60006020820190508181036000830152613eee81613b0a565b9050919050565b60006020820190508181036000830152613f0e81613b2d565b9050919050565b60006020820190508181036000830152613f2e81613b50565b9050919050565b60006020820190508181036000830152613f4e81613b73565b9050919050565b60006020820190508181036000830152613f6e81613bb9565b9050919050565b60006020820190508181036000830152613f8e81613bdc565b9050919050565b60006020820190508181036000830152613fae81613bff565b9050919050565b60006020820190508181036000830152613fce81613c22565b9050919050565b60006020820190508181036000830152613fee81613c45565b9050919050565b6000602082019050818103600083015261400e81613c68565b9050919050565b600060208201905061402a6000830184613c8b565b92915050565b600061010082019050614046600083018b613ca9565b614053602083018a613c9a565b6140606040830189613c9a565b61406d6060830188613ca9565b61407a6080830187613c9a565b61408760a0830186613c9a565b61409460c0830185613ca9565b6140a160e0830184613c9a565b9998505050505050505050565b60006140b86140c9565b90506140c482826143c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ee576140ed6144cb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561411a576141196144cb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614146576141456144cb565b5b61414f82614518565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141b5826142f8565b91506141c0836142f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141f5576141f461443e565b5b828201905092915050565b600061420b826142f8565b9150614216836142f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561424f5761424e61443e565b5b828202905092915050565b6000614265826142f8565b9150614270836142f8565b9250828210156142835761428261443e565b5b828203905092915050565b6000614299826142d8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614353578082015181840152602081019050614338565b83811115614362576000848401525b50505050565b6000614373826142f8565b915060008214156143875761438661443e565b5b600182039050919050565b600060028204905060018216806143aa57607f821691505b602082108114156143be576143bd61446d565b5b50919050565b6143cd82614518565b810181811067ffffffffffffffff821117156143ec576143eb6144cb565b5b80604052505050565b6000614400826142f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144335761443261443e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f72656163686564206d617820616c6c6f776c69737420737570706c7900000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6e756d626572206d696e74656420717565727920666f7220746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f7669702073616c6520686173206e6f7420626567756e20796574000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f7669706c6973742073616c652068617320656e64656400000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f616c6c6f776c6973742073616c652068617320656e6465640000000000000000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f6e6f7420656c696769626c6520666f7220766970206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616c6c6f776c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b7f7669706c6973742073616c6520686173206e6f7420626567756e207965740000600082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f72656163686564206d6178207669706c69737420737570706c79000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6148db8161428e565b81146148e657600080fd5b50565b6148f2816142a0565b81146148fd57600080fd5b50565b614909816142ac565b811461491457600080fd5b50565b614920816142f8565b811461492b57600080fd5b50565b61493781614302565b811461494257600080fd5b50565b61494e81614312565b811461495957600080fd5b5056fea264697066735822122043e9b79e2e14baefea15fb5c93e73e57db803e0b0849d00c056346f3a67fc3da64736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.