Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
6,969 CRBS
Holders
673
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 CRBSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoCrabs
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "erc721a/contracts/ERC721A.sol"; contract CryptoCrabs is ERC721A, ERC2981, Ownable { struct Slot0 { address cheebiez; address ghouls; address v1ghouls; address v1crabs; uint32 startTime; uint32 endTime; uint16 maxMint; string revealedURI; } Slot0 public slot0; mapping(address => bool) private hasCrabMinted; mapping(address => bool) private hasCheeborGhoulMinted; mapping(address => bool) private hasPublicMinted; uint16 public constant MAXSUPPLY = 6969; constructor() ERC721A("CryptoCrabs", "CRBS") { slot0.cheebiez = 0x731fa995D38cAdE13175FDb62452232f4deC7b27; slot0.ghouls = 0xeF1a89cbfAbE59397FfdA11Fc5DF293E9bC5Db90; slot0.v1ghouls = 0x938e5ed128458139A9c3306aCE87C60BCBA9c067; slot0.startTime = 1655060400; slot0.endTime = 1655146800; slot0.maxMint = 20; slot0.revealedURI = "https://crabs.s3.amazonaws.com/data/"; _mint(0x31AE2c2cAEC2Bc9211cC6E55D73Dc3e874BaBdbb, 5); _setDefaultRoyalty(0x31AE2c2cAEC2Bc9211cC6E55D73Dc3e874BaBdbb, 690); transferOwnership(0x31AE2c2cAEC2Bc9211cC6E55D73Dc3e874BaBdbb); } modifier onlyActive() { require(block.timestamp >= slot0.startTime, "Not Active"); require(block.timestamp <= slot0.endTime, "Not Active"); _; } modifier onlyHolder() { bool holdsCheebs = IERC721(slot0.cheebiez).balanceOf(msg.sender) > 0; bool holdsGhouls = IERC721(slot0.ghouls).balanceOf(msg.sender) > 0; require((holdsCheebs || holdsGhouls), "Not Holder"); _; } function setTime(uint32 startTime) external onlyOwner { slot0.startTime = startTime; slot0.endTime = startTime + 86400; } function setURI(string memory newURI) external onlyOwner { slot0.revealedURI = newURI; } function setMaxMint(uint16 maxMint) external onlyOwner { slot0.maxMint = maxMint; } function crabMint(uint16 amount) external { require(block.timestamp >= slot0.startTime - 86400, "Not Crab Time"); require(block.timestamp <= slot0.endTime); require(IERC721(slot0.v1crabs).balanceOf(msg.sender) > 0, "No Crab"); require(!hasCrabMinted[msg.sender], "Already Minted"); require(amount <= slot0.maxMint + 10, "Too Many"); require(totalSupply() + amount <= MAXSUPPLY, "Too Many"); hasCrabMinted[msg.sender] = true; _mint(msg.sender, amount); } function cheebOrGhoulMint(uint16 amount) external onlyActive onlyHolder { require(amount <= slot0.maxMint, "Too Many"); require(totalSupply() + amount <= MAXSUPPLY, "Too Many"); require(!hasCheeborGhoulMinted[msg.sender], "Already Minted"); hasCheeborGhoulMinted[msg.sender] = true; _mint(msg.sender, amount); } function publicMint(uint16 amount) external { require(block.timestamp >= slot0.endTime, "Not Time"); require(amount <= slot0.maxMint - 10, "Too Many"); require(totalSupply() + amount <= MAXSUPPLY, "Too Many"); require(!hasPublicMinted[msg.sender], "Already Minted"); hasPublicMinted[msg.sender] = true; _mint(msg.sender, amount); } function _baseURI() internal view virtual override returns (string memory) { return slot0.revealedURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : ''; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC721A) returns (bool) { return interfaceId == type(IERC2981).interfaceId || interfaceId == type(IERC721A).interfaceId || interfaceId == type(IERC721).interfaceId || super.supportsInterface(interfaceId); } }
// 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 // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// 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 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":[],"name":"MAXSUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"cheebOrGhoulMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"crabMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxMint","type":"uint16"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime","type":"uint32"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slot0","outputs":[{"internalType":"address","name":"cheebiez","type":"address"},{"internalType":"address","name":"ghouls","type":"address"},{"internalType":"address","name":"v1ghouls","type":"address"},{"internalType":"address","name":"v1crabs","type":"address"},{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"string","name":"revealedURI","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f43727970746f43726162730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4352425300000000000000000000000000000000000000000000000000000000815250816002908051906020019062000096929190620008e8565b508060039080519060200190620000af929190620008e8565b50620000c06200031060201b60201c565b6000819055505050620000e8620000dc6200031560201b60201c565b6200031d60201b60201c565b73731fa995d38cade13175fdb62452232f4dec7b27600b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ef1a89cbfabe59397ffda11fc5df293e9bc5db90600b60010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073938e5ed128458139a9c3306ace87c60bcba9c067600b60020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506362a637b0600b60030160146101000a81548163ffffffff021916908363ffffffff1602179055506362a78930600b60030160186101000a81548163ffffffff021916908363ffffffff1602179055506014600b600301601c6101000a81548161ffff021916908361ffff160217905550604051806060016040528060248152602001620046c560249139600b600401908051906020019062000295929190620008e8565b50620002bd7331ae2c2caec2bc9211cc6e55d73dc3e874babdbb6005620003e360201b60201c565b620002e57331ae2c2caec2bc9211cc6e55d73dc3e874babdbb6102b2620005da60201b60201c565b6200030a7331ae2c2caec2bc9211cc6e55d73dc3e874babdbb6200077e60201b60201c565b62000c22565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000451576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156200048d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004a260008483856200089460201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16200050f600184146200089a60201b60201c565b901b60a042901b6200052785620008a460201b60201c565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200054d57816000819055505050620005d56000848385620008ae60201b60201c565b505050565b620005ea620008b460201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200064b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006429062000a78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b59062000a9a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6200078e6200031560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b4620008be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008049062000a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008779062000a34565b60405180910390fd5b62000891816200031d60201b60201c565b50565b50505050565b6000819050919050565b6000819050919050565b50505050565b6000612710905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620008f69062000acd565b90600052602060002090601f0160209004810192826200091a576000855562000966565b82601f106200093557805160ff191683800117855562000966565b8280016001018555821562000966579182015b828111156200096557825182559160200191906001019062000948565b5b50905062000975919062000979565b5090565b5b80821115620009945760008160009055506001016200097a565b5090565b6000620009a760268362000abc565b9150620009b48262000b32565b604082019050919050565b6000620009ce60208362000abc565b9150620009db8262000b81565b602082019050919050565b6000620009f5602a8362000abc565b915062000a028262000baa565b604082019050919050565b600062000a1c60198362000abc565b915062000a298262000bf9565b602082019050919050565b6000602082019050818103600083015262000a4f8162000998565b9050919050565b6000602082019050818103600083015262000a7181620009bf565b9050919050565b6000602082019050818103600083015262000a9381620009e6565b9050919050565b6000602082019050818103600083015262000ab58162000a0d565b9050919050565b600082825260208201905092915050565b6000600282049050600182168062000ae657607f821691505b6020821081141562000afd5762000afc62000b03565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b613a938062000c326000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610461578063e985e9c514610491578063f2fde38b146104c1578063f607cc4c146104dd5761018e565b8063a22cb4651461040d578063b88d4fde14610429578063c2962bc7146104455761018e565b806370a082311461035d578063715018a61461038d578063758b4e86146103975780638da5cb5b146103b55780638e98cf44146103d357806395d89b41146103ef5761018e565b80631f074bb31161014b5780633850c7bd116101255780633850c7bd146102d057806342842e0e146102f557806343582e27146103115780636352211e1461032d5761018e565b80631f074bb31461026757806323b872dd146102835780632a55205a1461029f5761018e565b806301ffc9a71461019357806302fe5305146101c357806306fdde03146101df578063081812fc146101fd578063095ea7b31461022d57806318160ddd14610249575b600080fd5b6101ad60048036038101906101a89190612cf4565b6104f9565b6040516101ba91906131f7565b60405180910390f35b6101dd60048036038101906101d89190612d46565b610643565b005b6101e76106dc565b6040516101f49190613212565b60405180910390f35b61021760048036038101906102129190612db0565b61076e565b60405161022491906130e2565b60405180910390f35b61024760048036038101906102429190612cb8565b6107ea565b005b610251610991565b60405161025e919061336f565b60405180910390f35b610281600480360381019061027c9190612d87565b6109a8565b005b61029d60048036038101906102989190612bb2565b610ceb565b005b6102b960048036038101906102b49190612e02565b610cfb565b6040516102c79291906131ce565b60405180910390f35b6102d8610ee6565b6040516102ec9897969594939291906130fd565b60405180910390f35b61030f600480360381019061030a9190612bb2565b611052565b005b61032b60048036038101906103269190612d87565b611072565b005b61034760048036038101906103429190612db0565b611493565b60405161035491906130e2565b60405180910390f35b61037760048036038101906103729190612b4d565b6114a5565b604051610384919061336f565b60405180910390f35b61039561155e565b005b61039f6115e6565b6040516103ac9190613354565b60405180910390f35b6103bd6115ec565b6040516103ca91906130e2565b60405180910390f35b6103ed60048036038101906103e89190612e3e565b611616565b005b6103f76116eb565b6040516104049190613212565b60405180910390f35b61042760048036038101906104229190612c7c565b61177d565b005b610443600480360381019061043e9190612c01565b6118f5565b005b61045f600480360381019061045a9190612d87565b611968565b005b61047b60048036038101906104769190612db0565b611a07565b6040516104889190613212565b60405180910390f35b6104ab60048036038101906104a69190612b76565b611aa6565b6040516104b891906131f7565b60405180910390f35b6104db60048036038101906104d69190612b4d565b611b3a565b005b6104f760048036038101906104f29190612d87565b611c32565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457507fc21b8f28000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062c57507f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063c575061063b82611e4f565b5b9050919050565b61064b611ec9565b73ffffffffffffffffffffffffffffffffffffffff166106696115ec565b73ffffffffffffffffffffffffffffffffffffffff16146106bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b690613314565b60405180910390fd5b80600b60040190805190602001906106d8929190612932565b5050565b6060600280546106eb906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610717906136e3565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b600061077982611ed1565b6107af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f582611f30565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087c611ffe565b73ffffffffffffffffffffffffffffffffffffffff16146108df576108a8816108a3611ffe565b611aa6565b6108de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061099b612006565b6001546000540303905090565b62015180600b60030160149054906101000a900463ffffffff166109cc91906135db565b63ffffffff16421015610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90613234565b60405180910390fd5b600b60030160189054906101000a900463ffffffff1663ffffffff16421115610a3c57600080fd5b6000600b60030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a9c91906130e2565b60206040518083038186803b158015610ab457600080fd5b505afa158015610ac8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aec9190612dd9565b11610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613254565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb0906132d4565b60405180910390fd5b600a600b600301601c9054906101000a900461ffff16610bd99190613454565b61ffff168161ffff161115610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a906132f4565b60405180910390fd5b611b3961ffff168161ffff16610c37610991565b610c41919061348c565b1115610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906132f4565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ce8338261ffff1661200b565b50565b610cf68383836121df565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e915760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e9b612589565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec7919061354d565b610ed1919061351c565b90508160000151819350935050509250929050565b600b8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030160149054906101000a900463ffffffff16908060030160189054906101000a900463ffffffff169080600301601c9054906101000a900461ffff1690806004018054610fcf906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb906136e3565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b5050505050905088565b61106d838383604051806020016040528060008152506118f5565b505050565b600b60030160149054906101000a900463ffffffff1663ffffffff164210156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c7906132b4565b60405180910390fd5b600b60030160189054906101000a900463ffffffff1663ffffffff1642111561112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611125906132b4565b60405180910390fd5b600080600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161118f91906130e2565b60206040518083038186803b1580156111a757600080fd5b505afa1580156111bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111df9190612dd9565b119050600080600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161124391906130e2565b60206040518083038186803b15801561125b57600080fd5b505afa15801561126f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112939190612dd9565b119050818061129f5750805b6112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613334565b60405180910390fd5b600b600301601c9054906101000a900461ffff1661ffff168361ffff16111561133c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611333906132f4565b60405180910390fd5b611b3961ffff168361ffff16611350610991565b61135a919061348c565b111561139b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611392906132f4565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906132d4565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061148e338461ffff1661200b565b505050565b600061149e82611f30565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611566611ec9565b73ffffffffffffffffffffffffffffffffffffffff166115846115ec565b73ffffffffffffffffffffffffffffffffffffffff16146115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613314565b60405180910390fd5b6115e46000612593565b565b611b3981565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161e611ec9565b73ffffffffffffffffffffffffffffffffffffffff1661163c6115ec565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613314565b60405180910390fd5b80600b60030160146101000a81548163ffffffff021916908363ffffffff16021790555062015180816116c591906134e2565b600b60030160186101000a81548163ffffffff021916908363ffffffff16021790555050565b6060600380546116fa906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611726906136e3565b80156117735780601f1061174857610100808354040283529160200191611773565b820191906000526020600020905b81548152906001019060200180831161175657829003601f168201915b5050505050905090565b611785611ffe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f7611ffe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a4611ffe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e991906131f7565b60405180910390a35050565b6119008484846121df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119625761192b84848484612659565b611961576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611970611ec9565b73ffffffffffffffffffffffffffffffffffffffff1661198e6115ec565b73ffffffffffffffffffffffffffffffffffffffff16146119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90613314565b60405180910390fd5b80600b600301601c6101000a81548161ffff021916908361ffff16021790555050565b6060611a1282611ed1565b611a48576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a526127b9565b9050600081511415611a735760405180602001604052806000815250611a9e565b80611a7d8461284e565b604051602001611a8e9291906130b3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b42611ec9565b73ffffffffffffffffffffffffffffffffffffffff16611b606115ec565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613314565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90613274565b60405180910390fd5b611c2f81612593565b50565b600b60030160189054906101000a900463ffffffff1663ffffffff16421015611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613294565b60405180910390fd5b600a600b600301601c9054906101000a900461ffff16611cb091906135a7565b61ffff168161ffff161115611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906132f4565b60405180910390fd5b611b3961ffff168161ffff16611d0e610991565b611d18919061348c565b1115611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d50906132f4565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd906132d4565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e4c338261ffff1661200b565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ec25750611ec1826128a8565b5b9050919050565b600033905090565b600081611edc612006565b11158015611eeb575060005482105b8015611f29575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611f3f612006565b11611fc757600054811015611fc65760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fc4575b6000811415611fba576004600083600190039350838152602001908152602001600020549050611f8f565b8092505050611ff9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612078576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156120b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c06000848385612912565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161212560018414612918565b901b60a042901b61213585612922565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061215b578160008190555050506121da600084838561292c565b505050565b60006121ea82611f30565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612251576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612272611ffe565b73ffffffffffffffffffffffffffffffffffffffff1614806122a157506122a08561229b611ffe565b611aa6565b5b806122e657506122af611ffe565b73ffffffffffffffffffffffffffffffffffffffff166122ce8461076e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061231f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612386576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123938585856001612912565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61249086612922565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561251a576000600184019050600060046000838152602001908152602001600020541415612518576000548114612517578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612582858585600161292c565b5050505050565b6000612710905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261267f611ffe565b8786866040518563ffffffff1660e01b81526004016126a19493929190613182565b602060405180830381600087803b1580156126bb57600080fd5b505af19250505080156126ec57506040513d601f19601f820116820180604052508101906126e99190612d1d565b60015b612766573d806000811461271c576040519150601f19603f3d011682016040523d82523d6000602084013e612721565b606091505b5060008151141561275e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b60040180546127cb906136e3565b80601f01602080910402602001604051908101604052809291908181526020018280546127f7906136e3565b80156128445780601f1061281957610100808354040283529160200191612844565b820191906000526020600020905b81548152906001019060200180831161282757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561289457600183039250600a81066030018353600a81049050612874565b508181036020830392508083525050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6000819050919050565b6000819050919050565b50505050565b82805461293e906136e3565b90600052602060002090601f01602090048101928261296057600085556129a7565b82601f1061297957805160ff19168380011785556129a7565b828001600101855582156129a7579182015b828111156129a657825182559160200191906001019061298b565b5b5090506129b491906129b8565b5090565b5b808211156129d15760008160009055506001016129b9565b5090565b60006129e86129e3846133af565b61338a565b905082815260208101848484011115612a0057600080fd5b612a0b8482856136a1565b509392505050565b6000612a26612a21846133e0565b61338a565b905082815260208101848484011115612a3e57600080fd5b612a498482856136a1565b509392505050565b600081359050612a60816139d3565b92915050565b600081359050612a75816139ea565b92915050565b600081359050612a8a81613a01565b92915050565b600081519050612a9f81613a01565b92915050565b600082601f830112612ab657600080fd5b8135612ac68482602086016129d5565b91505092915050565b600082601f830112612ae057600080fd5b8135612af0848260208601612a13565b91505092915050565b600081359050612b0881613a18565b92915050565b600081359050612b1d81613a2f565b92915050565b600081519050612b3281613a2f565b92915050565b600081359050612b4781613a46565b92915050565b600060208284031215612b5f57600080fd5b6000612b6d84828501612a51565b91505092915050565b60008060408385031215612b8957600080fd5b6000612b9785828601612a51565b9250506020612ba885828601612a51565b9150509250929050565b600080600060608486031215612bc757600080fd5b6000612bd586828701612a51565b9350506020612be686828701612a51565b9250506040612bf786828701612b0e565b9150509250925092565b60008060008060808587031215612c1757600080fd5b6000612c2587828801612a51565b9450506020612c3687828801612a51565b9350506040612c4787828801612b0e565b925050606085013567ffffffffffffffff811115612c6457600080fd5b612c7087828801612aa5565b91505092959194509250565b60008060408385031215612c8f57600080fd5b6000612c9d85828601612a51565b9250506020612cae85828601612a66565b9150509250929050565b60008060408385031215612ccb57600080fd5b6000612cd985828601612a51565b9250506020612cea85828601612b0e565b9150509250929050565b600060208284031215612d0657600080fd5b6000612d1484828501612a7b565b91505092915050565b600060208284031215612d2f57600080fd5b6000612d3d84828501612a90565b91505092915050565b600060208284031215612d5857600080fd5b600082013567ffffffffffffffff811115612d7257600080fd5b612d7e84828501612acf565b91505092915050565b600060208284031215612d9957600080fd5b6000612da784828501612af9565b91505092915050565b600060208284031215612dc257600080fd5b6000612dd084828501612b0e565b91505092915050565b600060208284031215612deb57600080fd5b6000612df984828501612b23565b91505092915050565b60008060408385031215612e1557600080fd5b6000612e2385828601612b0e565b9250506020612e3485828601612b0e565b9150509250929050565b600060208284031215612e5057600080fd5b6000612e5e84828501612b38565b91505092915050565b612e708161360f565b82525050565b612e7f81613621565b82525050565b6000612e9082613411565b612e9a8185613427565b9350612eaa8185602086016136b0565b612eb381613802565b840191505092915050565b6000612ec98261341c565b612ed38185613438565b9350612ee38185602086016136b0565b612eec81613802565b840191505092915050565b6000612f028261341c565b612f0c8185613449565b9350612f1c8185602086016136b0565b80840191505092915050565b6000612f35600d83613438565b9150612f4082613813565b602082019050919050565b6000612f58600783613438565b9150612f638261383c565b602082019050919050565b6000612f7b602683613438565b9150612f8682613865565b604082019050919050565b6000612f9e600883613438565b9150612fa9826138b4565b602082019050919050565b6000612fc1600a83613438565b9150612fcc826138dd565b602082019050919050565b6000612fe4600e83613438565b9150612fef82613906565b602082019050919050565b6000613007600883613438565b91506130128261392f565b602082019050919050565b600061302a600583613449565b915061303582613958565b600582019050919050565b600061304d602083613438565b915061305882613981565b602082019050919050565b6000613070600a83613438565b915061307b826139aa565b602082019050919050565b61308f81613659565b82525050565b61309e81613687565b82525050565b6130ad81613691565b82525050565b60006130bf8285612ef7565b91506130cb8284612ef7565b91506130d68261301d565b91508190509392505050565b60006020820190506130f76000830184612e67565b92915050565b600061010082019050613113600083018b612e67565b613120602083018a612e67565b61312d6040830189612e67565b61313a6060830188612e67565b61314760808301876130a4565b61315460a08301866130a4565b61316160c0830185613086565b81810360e08301526131738184612ebe565b90509998505050505050505050565b60006080820190506131976000830187612e67565b6131a46020830186612e67565b6131b16040830185613095565b81810360608301526131c38184612e85565b905095945050505050565b60006040820190506131e36000830185612e67565b6131f06020830184613095565b9392505050565b600060208201905061320c6000830184612e76565b92915050565b6000602082019050818103600083015261322c8184612ebe565b905092915050565b6000602082019050818103600083015261324d81612f28565b9050919050565b6000602082019050818103600083015261326d81612f4b565b9050919050565b6000602082019050818103600083015261328d81612f6e565b9050919050565b600060208201905081810360008301526132ad81612f91565b9050919050565b600060208201905081810360008301526132cd81612fb4565b9050919050565b600060208201905081810360008301526132ed81612fd7565b9050919050565b6000602082019050818103600083015261330d81612ffa565b9050919050565b6000602082019050818103600083015261332d81613040565b9050919050565b6000602082019050818103600083015261334d81613063565b9050919050565b60006020820190506133696000830184613086565b92915050565b60006020820190506133846000830184613095565b92915050565b60006133946133a5565b90506133a08282613715565b919050565b6000604051905090565b600067ffffffffffffffff8211156133ca576133c96137d3565b5b6133d382613802565b9050602081019050919050565b600067ffffffffffffffff8211156133fb576133fa6137d3565b5b61340482613802565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061345f82613659565b915061346a83613659565b92508261ffff0382111561348157613480613746565b5b828201905092915050565b600061349782613687565b91506134a283613687565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134d7576134d6613746565b5b828201905092915050565b60006134ed82613691565b91506134f883613691565b92508263ffffffff0382111561351157613510613746565b5b828201905092915050565b600061352782613687565b915061353283613687565b92508261354257613541613775565b5b828204905092915050565b600061355882613687565b915061356383613687565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359c5761359b613746565b5b828202905092915050565b60006135b282613659565b91506135bd83613659565b9250828210156135d0576135cf613746565b5b828203905092915050565b60006135e682613691565b91506135f183613691565b92508282101561360457613603613746565b5b828203905092915050565b600061361a82613667565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156136ce5780820151818401526020810190506136b3565b838111156136dd576000848401525b50505050565b600060028204905060018216806136fb57607f821691505b6020821081141561370f5761370e6137a4565b5b50919050565b61371e82613802565b810181811067ffffffffffffffff8211171561373d5761373c6137d3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420437261622054696d6500000000000000000000000000000000000000600082015250565b7f4e6f204372616200000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742054696d65000000000000000000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f416c7265616479204d696e746564000000000000000000000000000000000000600082015250565b7f546f6f204d616e79000000000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420486f6c64657200000000000000000000000000000000000000000000600082015250565b6139dc8161360f565b81146139e757600080fd5b50565b6139f381613621565b81146139fe57600080fd5b50565b613a0a8161362d565b8114613a1557600080fd5b50565b613a2181613659565b8114613a2c57600080fd5b50565b613a3881613687565b8114613a4357600080fd5b50565b613a4f81613691565b8114613a5a57600080fd5b5056fea2646970667358221220efef14ac1c3a20cf5bc61e047d735e128d206205158be5964d86cee502735d4d64736f6c6343000804003368747470733a2f2f63726162732e73332e616d617a6f6e6177732e636f6d2f646174612f
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610461578063e985e9c514610491578063f2fde38b146104c1578063f607cc4c146104dd5761018e565b8063a22cb4651461040d578063b88d4fde14610429578063c2962bc7146104455761018e565b806370a082311461035d578063715018a61461038d578063758b4e86146103975780638da5cb5b146103b55780638e98cf44146103d357806395d89b41146103ef5761018e565b80631f074bb31161014b5780633850c7bd116101255780633850c7bd146102d057806342842e0e146102f557806343582e27146103115780636352211e1461032d5761018e565b80631f074bb31461026757806323b872dd146102835780632a55205a1461029f5761018e565b806301ffc9a71461019357806302fe5305146101c357806306fdde03146101df578063081812fc146101fd578063095ea7b31461022d57806318160ddd14610249575b600080fd5b6101ad60048036038101906101a89190612cf4565b6104f9565b6040516101ba91906131f7565b60405180910390f35b6101dd60048036038101906101d89190612d46565b610643565b005b6101e76106dc565b6040516101f49190613212565b60405180910390f35b61021760048036038101906102129190612db0565b61076e565b60405161022491906130e2565b60405180910390f35b61024760048036038101906102429190612cb8565b6107ea565b005b610251610991565b60405161025e919061336f565b60405180910390f35b610281600480360381019061027c9190612d87565b6109a8565b005b61029d60048036038101906102989190612bb2565b610ceb565b005b6102b960048036038101906102b49190612e02565b610cfb565b6040516102c79291906131ce565b60405180910390f35b6102d8610ee6565b6040516102ec9897969594939291906130fd565b60405180910390f35b61030f600480360381019061030a9190612bb2565b611052565b005b61032b60048036038101906103269190612d87565b611072565b005b61034760048036038101906103429190612db0565b611493565b60405161035491906130e2565b60405180910390f35b61037760048036038101906103729190612b4d565b6114a5565b604051610384919061336f565b60405180910390f35b61039561155e565b005b61039f6115e6565b6040516103ac9190613354565b60405180910390f35b6103bd6115ec565b6040516103ca91906130e2565b60405180910390f35b6103ed60048036038101906103e89190612e3e565b611616565b005b6103f76116eb565b6040516104049190613212565b60405180910390f35b61042760048036038101906104229190612c7c565b61177d565b005b610443600480360381019061043e9190612c01565b6118f5565b005b61045f600480360381019061045a9190612d87565b611968565b005b61047b60048036038101906104769190612db0565b611a07565b6040516104889190613212565b60405180910390f35b6104ab60048036038101906104a69190612b76565b611aa6565b6040516104b891906131f7565b60405180910390f35b6104db60048036038101906104d69190612b4d565b611b3a565b005b6104f760048036038101906104f29190612d87565b611c32565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457507fc21b8f28000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062c57507f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063c575061063b82611e4f565b5b9050919050565b61064b611ec9565b73ffffffffffffffffffffffffffffffffffffffff166106696115ec565b73ffffffffffffffffffffffffffffffffffffffff16146106bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b690613314565b60405180910390fd5b80600b60040190805190602001906106d8929190612932565b5050565b6060600280546106eb906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610717906136e3565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b600061077982611ed1565b6107af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f582611f30565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087c611ffe565b73ffffffffffffffffffffffffffffffffffffffff16146108df576108a8816108a3611ffe565b611aa6565b6108de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061099b612006565b6001546000540303905090565b62015180600b60030160149054906101000a900463ffffffff166109cc91906135db565b63ffffffff16421015610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90613234565b60405180910390fd5b600b60030160189054906101000a900463ffffffff1663ffffffff16421115610a3c57600080fd5b6000600b60030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a9c91906130e2565b60206040518083038186803b158015610ab457600080fd5b505afa158015610ac8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aec9190612dd9565b11610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613254565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb0906132d4565b60405180910390fd5b600a600b600301601c9054906101000a900461ffff16610bd99190613454565b61ffff168161ffff161115610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a906132f4565b60405180910390fd5b611b3961ffff168161ffff16610c37610991565b610c41919061348c565b1115610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906132f4565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ce8338261ffff1661200b565b50565b610cf68383836121df565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e915760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e9b612589565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec7919061354d565b610ed1919061351c565b90508160000151819350935050509250929050565b600b8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030160149054906101000a900463ffffffff16908060030160189054906101000a900463ffffffff169080600301601c9054906101000a900461ffff1690806004018054610fcf906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb906136e3565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b5050505050905088565b61106d838383604051806020016040528060008152506118f5565b505050565b600b60030160149054906101000a900463ffffffff1663ffffffff164210156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c7906132b4565b60405180910390fd5b600b60030160189054906101000a900463ffffffff1663ffffffff1642111561112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611125906132b4565b60405180910390fd5b600080600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161118f91906130e2565b60206040518083038186803b1580156111a757600080fd5b505afa1580156111bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111df9190612dd9565b119050600080600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161124391906130e2565b60206040518083038186803b15801561125b57600080fd5b505afa15801561126f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112939190612dd9565b119050818061129f5750805b6112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613334565b60405180910390fd5b600b600301601c9054906101000a900461ffff1661ffff168361ffff16111561133c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611333906132f4565b60405180910390fd5b611b3961ffff168361ffff16611350610991565b61135a919061348c565b111561139b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611392906132f4565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906132d4565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061148e338461ffff1661200b565b505050565b600061149e82611f30565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611566611ec9565b73ffffffffffffffffffffffffffffffffffffffff166115846115ec565b73ffffffffffffffffffffffffffffffffffffffff16146115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613314565b60405180910390fd5b6115e46000612593565b565b611b3981565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161e611ec9565b73ffffffffffffffffffffffffffffffffffffffff1661163c6115ec565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613314565b60405180910390fd5b80600b60030160146101000a81548163ffffffff021916908363ffffffff16021790555062015180816116c591906134e2565b600b60030160186101000a81548163ffffffff021916908363ffffffff16021790555050565b6060600380546116fa906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611726906136e3565b80156117735780601f1061174857610100808354040283529160200191611773565b820191906000526020600020905b81548152906001019060200180831161175657829003601f168201915b5050505050905090565b611785611ffe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f7611ffe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a4611ffe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e991906131f7565b60405180910390a35050565b6119008484846121df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119625761192b84848484612659565b611961576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611970611ec9565b73ffffffffffffffffffffffffffffffffffffffff1661198e6115ec565b73ffffffffffffffffffffffffffffffffffffffff16146119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90613314565b60405180910390fd5b80600b600301601c6101000a81548161ffff021916908361ffff16021790555050565b6060611a1282611ed1565b611a48576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a526127b9565b9050600081511415611a735760405180602001604052806000815250611a9e565b80611a7d8461284e565b604051602001611a8e9291906130b3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b42611ec9565b73ffffffffffffffffffffffffffffffffffffffff16611b606115ec565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613314565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90613274565b60405180910390fd5b611c2f81612593565b50565b600b60030160189054906101000a900463ffffffff1663ffffffff16421015611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613294565b60405180910390fd5b600a600b600301601c9054906101000a900461ffff16611cb091906135a7565b61ffff168161ffff161115611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906132f4565b60405180910390fd5b611b3961ffff168161ffff16611d0e610991565b611d18919061348c565b1115611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d50906132f4565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd906132d4565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e4c338261ffff1661200b565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ec25750611ec1826128a8565b5b9050919050565b600033905090565b600081611edc612006565b11158015611eeb575060005482105b8015611f29575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611f3f612006565b11611fc757600054811015611fc65760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fc4575b6000811415611fba576004600083600190039350838152602001908152602001600020549050611f8f565b8092505050611ff9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612078576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156120b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c06000848385612912565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161212560018414612918565b901b60a042901b61213585612922565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061215b578160008190555050506121da600084838561292c565b505050565b60006121ea82611f30565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612251576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612272611ffe565b73ffffffffffffffffffffffffffffffffffffffff1614806122a157506122a08561229b611ffe565b611aa6565b5b806122e657506122af611ffe565b73ffffffffffffffffffffffffffffffffffffffff166122ce8461076e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061231f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612386576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123938585856001612912565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61249086612922565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561251a576000600184019050600060046000838152602001908152602001600020541415612518576000548114612517578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612582858585600161292c565b5050505050565b6000612710905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261267f611ffe565b8786866040518563ffffffff1660e01b81526004016126a19493929190613182565b602060405180830381600087803b1580156126bb57600080fd5b505af19250505080156126ec57506040513d601f19601f820116820180604052508101906126e99190612d1d565b60015b612766573d806000811461271c576040519150601f19603f3d011682016040523d82523d6000602084013e612721565b606091505b5060008151141561275e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b60040180546127cb906136e3565b80601f01602080910402602001604051908101604052809291908181526020018280546127f7906136e3565b80156128445780601f1061281957610100808354040283529160200191612844565b820191906000526020600020905b81548152906001019060200180831161282757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561289457600183039250600a81066030018353600a81049050612874565b508181036020830392508083525050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6000819050919050565b6000819050919050565b50505050565b82805461293e906136e3565b90600052602060002090601f01602090048101928261296057600085556129a7565b82601f1061297957805160ff19168380011785556129a7565b828001600101855582156129a7579182015b828111156129a657825182559160200191906001019061298b565b5b5090506129b491906129b8565b5090565b5b808211156129d15760008160009055506001016129b9565b5090565b60006129e86129e3846133af565b61338a565b905082815260208101848484011115612a0057600080fd5b612a0b8482856136a1565b509392505050565b6000612a26612a21846133e0565b61338a565b905082815260208101848484011115612a3e57600080fd5b612a498482856136a1565b509392505050565b600081359050612a60816139d3565b92915050565b600081359050612a75816139ea565b92915050565b600081359050612a8a81613a01565b92915050565b600081519050612a9f81613a01565b92915050565b600082601f830112612ab657600080fd5b8135612ac68482602086016129d5565b91505092915050565b600082601f830112612ae057600080fd5b8135612af0848260208601612a13565b91505092915050565b600081359050612b0881613a18565b92915050565b600081359050612b1d81613a2f565b92915050565b600081519050612b3281613a2f565b92915050565b600081359050612b4781613a46565b92915050565b600060208284031215612b5f57600080fd5b6000612b6d84828501612a51565b91505092915050565b60008060408385031215612b8957600080fd5b6000612b9785828601612a51565b9250506020612ba885828601612a51565b9150509250929050565b600080600060608486031215612bc757600080fd5b6000612bd586828701612a51565b9350506020612be686828701612a51565b9250506040612bf786828701612b0e565b9150509250925092565b60008060008060808587031215612c1757600080fd5b6000612c2587828801612a51565b9450506020612c3687828801612a51565b9350506040612c4787828801612b0e565b925050606085013567ffffffffffffffff811115612c6457600080fd5b612c7087828801612aa5565b91505092959194509250565b60008060408385031215612c8f57600080fd5b6000612c9d85828601612a51565b9250506020612cae85828601612a66565b9150509250929050565b60008060408385031215612ccb57600080fd5b6000612cd985828601612a51565b9250506020612cea85828601612b0e565b9150509250929050565b600060208284031215612d0657600080fd5b6000612d1484828501612a7b565b91505092915050565b600060208284031215612d2f57600080fd5b6000612d3d84828501612a90565b91505092915050565b600060208284031215612d5857600080fd5b600082013567ffffffffffffffff811115612d7257600080fd5b612d7e84828501612acf565b91505092915050565b600060208284031215612d9957600080fd5b6000612da784828501612af9565b91505092915050565b600060208284031215612dc257600080fd5b6000612dd084828501612b0e565b91505092915050565b600060208284031215612deb57600080fd5b6000612df984828501612b23565b91505092915050565b60008060408385031215612e1557600080fd5b6000612e2385828601612b0e565b9250506020612e3485828601612b0e565b9150509250929050565b600060208284031215612e5057600080fd5b6000612e5e84828501612b38565b91505092915050565b612e708161360f565b82525050565b612e7f81613621565b82525050565b6000612e9082613411565b612e9a8185613427565b9350612eaa8185602086016136b0565b612eb381613802565b840191505092915050565b6000612ec98261341c565b612ed38185613438565b9350612ee38185602086016136b0565b612eec81613802565b840191505092915050565b6000612f028261341c565b612f0c8185613449565b9350612f1c8185602086016136b0565b80840191505092915050565b6000612f35600d83613438565b9150612f4082613813565b602082019050919050565b6000612f58600783613438565b9150612f638261383c565b602082019050919050565b6000612f7b602683613438565b9150612f8682613865565b604082019050919050565b6000612f9e600883613438565b9150612fa9826138b4565b602082019050919050565b6000612fc1600a83613438565b9150612fcc826138dd565b602082019050919050565b6000612fe4600e83613438565b9150612fef82613906565b602082019050919050565b6000613007600883613438565b91506130128261392f565b602082019050919050565b600061302a600583613449565b915061303582613958565b600582019050919050565b600061304d602083613438565b915061305882613981565b602082019050919050565b6000613070600a83613438565b915061307b826139aa565b602082019050919050565b61308f81613659565b82525050565b61309e81613687565b82525050565b6130ad81613691565b82525050565b60006130bf8285612ef7565b91506130cb8284612ef7565b91506130d68261301d565b91508190509392505050565b60006020820190506130f76000830184612e67565b92915050565b600061010082019050613113600083018b612e67565b613120602083018a612e67565b61312d6040830189612e67565b61313a6060830188612e67565b61314760808301876130a4565b61315460a08301866130a4565b61316160c0830185613086565b81810360e08301526131738184612ebe565b90509998505050505050505050565b60006080820190506131976000830187612e67565b6131a46020830186612e67565b6131b16040830185613095565b81810360608301526131c38184612e85565b905095945050505050565b60006040820190506131e36000830185612e67565b6131f06020830184613095565b9392505050565b600060208201905061320c6000830184612e76565b92915050565b6000602082019050818103600083015261322c8184612ebe565b905092915050565b6000602082019050818103600083015261324d81612f28565b9050919050565b6000602082019050818103600083015261326d81612f4b565b9050919050565b6000602082019050818103600083015261328d81612f6e565b9050919050565b600060208201905081810360008301526132ad81612f91565b9050919050565b600060208201905081810360008301526132cd81612fb4565b9050919050565b600060208201905081810360008301526132ed81612fd7565b9050919050565b6000602082019050818103600083015261330d81612ffa565b9050919050565b6000602082019050818103600083015261332d81613040565b9050919050565b6000602082019050818103600083015261334d81613063565b9050919050565b60006020820190506133696000830184613086565b92915050565b60006020820190506133846000830184613095565b92915050565b60006133946133a5565b90506133a08282613715565b919050565b6000604051905090565b600067ffffffffffffffff8211156133ca576133c96137d3565b5b6133d382613802565b9050602081019050919050565b600067ffffffffffffffff8211156133fb576133fa6137d3565b5b61340482613802565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061345f82613659565b915061346a83613659565b92508261ffff0382111561348157613480613746565b5b828201905092915050565b600061349782613687565b91506134a283613687565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134d7576134d6613746565b5b828201905092915050565b60006134ed82613691565b91506134f883613691565b92508263ffffffff0382111561351157613510613746565b5b828201905092915050565b600061352782613687565b915061353283613687565b92508261354257613541613775565b5b828204905092915050565b600061355882613687565b915061356383613687565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359c5761359b613746565b5b828202905092915050565b60006135b282613659565b91506135bd83613659565b9250828210156135d0576135cf613746565b5b828203905092915050565b60006135e682613691565b91506135f183613691565b92508282101561360457613603613746565b5b828203905092915050565b600061361a82613667565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156136ce5780820151818401526020810190506136b3565b838111156136dd576000848401525b50505050565b600060028204905060018216806136fb57607f821691505b6020821081141561370f5761370e6137a4565b5b50919050565b61371e82613802565b810181811067ffffffffffffffff8211171561373d5761373c6137d3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420437261622054696d6500000000000000000000000000000000000000600082015250565b7f4e6f204372616200000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742054696d65000000000000000000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f416c7265616479204d696e746564000000000000000000000000000000000000600082015250565b7f546f6f204d616e79000000000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420486f6c64657200000000000000000000000000000000000000000000600082015250565b6139dc8161360f565b81146139e757600080fd5b50565b6139f381613621565b81146139fe57600080fd5b50565b613a0a8161362d565b8114613a1557600080fd5b50565b613a2181613659565b8114613a2c57600080fd5b50565b613a3881613687565b8114613a4357600080fd5b50565b613a4f81613691565b8114613a5a57600080fd5b5056fea2646970667358221220efef14ac1c3a20cf5bc61e047d735e128d206205158be5964d86cee502735d4d64736f6c63430008040033
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.