Source Code
Overview
ETH Balance
0.09 ETH
Eth Value
$168.30 (@ $1,869.96/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Mint | 16336591 | 1150 days ago | IN | 0.05 ETH | 0.00170296 | ||||
| Mint | 16336357 | 1150 days ago | IN | 0.04 ETH | 0.0064512 | ||||
| Set Og Whitelist... | 16336349 | 1150 days ago | IN | 0 ETH | 0.00062785 | ||||
| Mint | 16336327 | 1150 days ago | IN | 0.04 ETH | 0.00112166 | ||||
| Set Not Revealed... | 16336322 | 1150 days ago | IN | 0 ETH | 0.00090667 | ||||
| Mint | 16336305 | 1150 days ago | IN | 0.05 ETH | 0.00200268 | ||||
| Set Og Whitelist... | 16336286 | 1150 days ago | IN | 0 ETH | 0.00075957 | ||||
| Mint | 16336150 | 1150 days ago | IN | 0.05 ETH | 0.00110894 | ||||
| Mint | 16336029 | 1150 days ago | IN | 0.04 ETH | 0.00257107 | ||||
| Set Sale Type | 16335911 | 1150 days ago | IN | 0 ETH | 0.00102727 | ||||
| Set Og Whitelist... | 16335893 | 1150 days ago | IN | 0 ETH | 0.00059186 | ||||
| Set Allow Whitel... | 16335890 | 1150 days ago | IN | 0 ETH | 0.00060076 | ||||
| Set Not Revealed... | 16334917 | 1150 days ago | IN | 0 ETH | 0.00269021 | ||||
| Set Allow Whitel... | 16334266 | 1150 days ago | IN | 0 ETH | 0.00114194 | ||||
| Set Og Whitelist... | 16334259 | 1150 days ago | IN | 0 ETH | 0.00083853 | ||||
| Transfer Ownersh... | 16334244 | 1150 days ago | IN | 0 ETH | 0.00081179 | ||||
| Transfer Ownersh... | 16331439 | 1151 days ago | IN | 0 ETH | 0.0004158 |
Latest 7 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16336357 | 1150 days ago | 0.004 ETH | ||||
| Transfer | 16336357 | 1150 days ago | 0.0016 ETH | ||||
| Transfer | 16336357 | 1150 days ago | 0.0004 ETH | ||||
| Transfer | 16336357 | 1150 days ago | 0.0002 ETH | ||||
| Transfer | 16336357 | 1150 days ago | 0.001 ETH | ||||
| Transfer | 16336357 | 1150 days ago | 0.0016 ETH | ||||
| Transfer | 16336357 | 1150 days ago | 0.0312 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
mush
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract mush is ERC721A, Ownable {
string _baseTokenURI;
string _notRevealedURI;
uint256 public ogPrice = 0.04 ether;
uint256 public allowListPrice = 0.05 ether;
uint256 public publicMintPrice = 0.06 ether;
uint256 public MAX_SUPPLY = 10000;
uint256 private reserveAtATime = 66;
uint256 private reservedCount = 0;
uint256 private maxReserveCount = 66;
uint256 public saleType = 0;
bytes32 private ogWhitelistMerkleRoot = 0xfa27b342a3eab7dd36f22778379cc01691f33f4ebe30cba4562d6236bc15b87b;
bytes32 private allowWhitelistMerkleRoot = 0x597c47fa9a27d43fcddeaea571b2efb20c8df4cbd9639c9596eb4d7dc6b44466;
address address1 = 0xdEEd7E31a89293ECf7f9665E01fD7CB9C0C7C5b3;
address address2 = 0x2b6650a6d40f6e8B4B799d7E4b04247695f5Be7b;
address address3 = 0x8DbE19085da237807dFbeB54cbece2a6620558a8;
address address4 = 0xde2baE50Cd0CAb8F4EeD3B1cD944223Fe15c4742;
address address5 = 0xa54A2F4438FC48FeE2B665ae1049fDE34A0C53D8;
address address6 = 0x23662B347a4F534586321a76Be3AD26a6770cee9;
address address7 = 0xA4087EA6d1De1Dc9f84A8f8d63657cf4AD456817;
bool public isReveal = false;
uint256 start_time;
uint256 reveal_duration;
constructor(string memory baseURI, string memory notRevealedURI) ERC721A("MUSH", "mush") {
setBaseURI(baseURI);
setNotRevealedURI(notRevealedURI);
start_time = block.timestamp;
}
modifier saleIsOpen {
require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
_;
}
modifier revealNft {
if (start_time + reveal_duration <= block.timestamp) {
reveal();
}
_;
}
modifier onlyAuthorized() {
require(owner() == msg.sender);
_;
}
function reveal() internal {
isReveal = true;
}
function setNotRevealedURI(string memory _notRevealedUri) public onlyAuthorized {
_notRevealedURI = _notRevealedUri;
}
function setNotRevealedURI(uint256 _duration) external onlyOwner {
reveal_duration = _duration;
}
function setSaleType(uint256 _type) external onlyOwner {
saleType = _type;
}
function setOgPrice(uint256 _price) public onlyAuthorized {
ogPrice = _price;
}
function setAllowListPrice(uint256 _price) public onlyAuthorized {
allowListPrice = _price;
}
function setPublicMintPrice(uint256 _price) public onlyAuthorized {
publicMintPrice = _price;
}
function setBaseURI(string memory baseURI) public onlyAuthorized {
_baseTokenURI = baseURI;
}
function setReserveAtATime(uint256 val) public onlyAuthorized {
reserveAtATime = val;
}
function setMaxReserve(uint256 val) public onlyAuthorized {
maxReserveCount = val;
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function setMaxMintSupply(uint256 maxMintSupply) external onlyAuthorized {
MAX_SUPPLY = maxMintSupply;
}
function setOgWhitelistMerkleRoot(bytes32 merkleRootHash) public onlyAuthorized {
ogWhitelistMerkleRoot = merkleRootHash;
}
function setAllowWhitelistMerkleRoot(bytes32 merkleRootHash) public onlyAuthorized {
allowWhitelistMerkleRoot = merkleRootHash;
}
function reserveNft() public onlyAuthorized {
require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
_safeMint(msg.sender, reserveAtATime);
}
function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyAuthorized {
uint256 supply = totalSupply();
require(supply <= MAX_SUPPLY, "Total supply spent.");
require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
for (uint256 i = 0; i < addresses.length; i++) {
require(addresses[i] != address(0), "Can't add a null address");
_safeMint(addresses[i],_count);
}
}
function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
require(_exists(_tokenId), "Token Id Non-existent");
if(!isReveal){
return _notRevealedURI;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), ".json")) : "";
}
function mint(uint256 _count, bytes32[] calldata _merkleProof, address _address) public payable saleIsOpen revealNft {
uint256 mintIndex = totalSupply();
if (_address != owner()) {
require(saleType != 0, "Sale is not active currently.");
require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
if (saleType == 1) {
require(_verifyAddressInOgWhiteList(_merkleProof, _address), "NFT:Sender is not whitelisted.");
require(msg.value >= ogPrice * _count, "Insufficient ETH amount sent.");
} else if (saleType == 2) {
require(_verifyAddressInAllowWhiteList(_merkleProof, _address), "NFT:Sender is not whitelisted.");
require(msg.value >= allowListPrice * _count, "Insufficient ETH amount sent.");
} else if (saleType == 3) {
require(msg.value >= publicMintPrice * _count, "Insufficient ETH amount sent.");
}
uint256 amount = msg.value;
payable(address1).transfer(amount * 78 / 100);
payable(address2).transfer(amount * 4 / 100);
payable(address3).transfer(amount * 25 / 1000);
payable(address4).transfer(amount * 5 / 1000);
payable(address5).transfer(amount * 1 / 100);
payable(address6).transfer(amount * 4 / 100);
payable(address7).transfer(amount * 10 / 100);
}
_safeMint(_address, _count);
}
function _verifyAddressInOgWhiteList(bytes32[] calldata merkleProof, address toAddress) private view returns (bool) {
bytes32 leaf = keccak256(abi.encodePacked(toAddress));
return MerkleProof.verify(merkleProof, ogWhitelistMerkleRoot, leaf);
}
function _verifyAddressInAllowWhiteList(bytes32[] calldata merkleProof, address toAddress) private view returns (bool) {
bytes32 leaf = keccak256(abi.encodePacked(toAddress));
return MerkleProof.verify(merkleProof, allowWhitelistMerkleRoot, leaf);
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of an ERC721A compliant contract.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* The caller cannot approve to the current owner.
*/
error ApprovalToCurrentOwner();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
/**
* @dev Returns the total amount of tokens stored by the contract.
*
* Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
*/
function totalSupply() external view returns (uint256);
// ==============================
// IERC165
// ==============================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// ==============================
// IERC721
// ==============================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// ==============================
// IERC721Metadata
// ==============================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// 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 (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// 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 (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);
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 200
},
"evmVersion": "london",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"notRevealedURI","type":"string"}],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","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":"isReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setAllowListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setAllowWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setOgPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setOgWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setSaleType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052668e1bc9bf040000600b5566b1a2bc2ec50000600c5566d529ae9e860000600d55612710600e556042600f556000601055604260115560006012557ffa27b342a3eab7dd36f22778379cc01691f33f4ebe30cba4562d6236bc15b87b60001b6013557f597c47fa9a27d43fcddeaea571b2efb20c8df4cbd9639c9596eb4d7dc6b4446660001b60145573deed7e31a89293ecf7f9665e01fd7cb9c0c7c5b3601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732b6650a6d40f6e8b4b799d7e4b04247695f5be7b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738dbe19085da237807dfbeb54cbece2a6620558a8601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073de2bae50cd0cab8f4eed3b1cd944223fe15c4742601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a54a2f4438fc48fee2b665ae1049fde34a0c53d8601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507323662b347a4f534586321a76be3ad26a6770cee9601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a4087ea6d1de1dc9f84a8f8d63657cf4ad456817601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601b60146101000a81548160ff0219169083151502179055503480156200030857600080fd5b50604051620049db380380620049db83398181016040528101906200032e919062000847565b6040518060400160405280600481526020017f4d555348000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f6d757368000000000000000000000000000000000000000000000000000000008152508160029080519060200190620003b2929190620005fa565b508060039080519060200190620003cb929190620005fa565b50620003dc6200043560201b60201c565b600081905550505062000404620003f86200043a60201b60201c565b6200044260201b60201c565b62000415826200050860201b60201c565b62000426816200056c60201b60201c565b42601c81905550505062000931565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166200052f620005d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200055057600080fd5b806009908051906020019062000568929190620005fa565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1662000593620005d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005b457600080fd5b80600a9080519060200190620005cc929190620005fa565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200060890620008fb565b90600052602060002090601f0160209004810192826200062c576000855562000678565b82601f106200064757805160ff191683800117855562000678565b8280016001018555821562000678579182015b82811115620006775782518255916020019190600101906200065a565b5b5090506200068791906200068b565b5090565b5b80821115620006a65760008160009055506001016200068c565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200071382620006c8565b810181811067ffffffffffffffff82111715620007355762000734620006d9565b5b80604052505050565b60006200074a620006aa565b905062000758828262000708565b919050565b600067ffffffffffffffff8211156200077b576200077a620006d9565b5b6200078682620006c8565b9050602081019050919050565b60005b83811015620007b357808201518184015260208101905062000796565b83811115620007c3576000848401525b50505050565b6000620007e0620007da846200075d565b6200073e565b905082815260208101848484011115620007ff57620007fe620006c3565b5b6200080c84828562000793565b509392505050565b600082601f8301126200082c576200082b620006be565b5b81516200083e848260208601620007c9565b91505092915050565b60008060408385031215620008615762000860620006b4565b5b600083015167ffffffffffffffff811115620008825762000881620006b9565b5b620008908582860162000814565b925050602083015167ffffffffffffffff811115620008b457620008b3620006b9565b5b620008c28582860162000814565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091457607f821691505b602082108114156200092b576200092a620008cc565b5b50919050565b61409a80620009416000396000f3fe6080604052600436106102255760003560e01c806371e3500c11610123578063b88d4fde116100ab578063f2c4ce1e1161006f578063f2c4ce1e146107cc578063f2fde38b146107f5578063f6c9d9e31461081e578063fae4c7f914610847578063fb7e6ccb1461087257610225565b8063b88d4fde146106e2578063c87b56dd1461070b578063cbbf42c114610748578063dc53fd9214610764578063e985e9c51461078f57610225565b806395d89b41116100f257806395d89b411461061157806399d1dd951461063c5780639a4da08314610665578063a22cb4651461068e578063a24e5153146106b757610225565b806371e3500c1461057d5780637389fbb71461059457806383af79e7146105bd5780638da5cb5b146105e657610225565b806342842e0e116101b15780635d82cf6e116101755780635d82cf6e1461049a5780636352211e146104c35780636df9fa881461050057806370a0823114610529578063715018a61461056657610225565b806342842e0e146103cb5780634adcd32a146103f457806355f804b31461041d57806356a87caa146104465780635bcc79281461046f57610225565b806315f5d8a0116101f857806315f5d8a0146102f857806318160ddd1461032357806323b872dd1461034e57806332cb6b0c14610377578063373c9897146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ef2565b61089b565b60405161025e9190612f3a565b60405180910390f35b34801561027357600080fd5b5061027c61092d565b6040516102899190612fee565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613046565b6109bf565b6040516102c691906130b4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906130fb565b610a3b565b005b34801561030457600080fd5b5061030d610be2565b60405161031a919061314a565b60405180910390f35b34801561032f57600080fd5b50610338610be8565b604051610345919061314a565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613165565b610bff565b005b34801561038357600080fd5b5061038c610c0f565b604051610399919061314a565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613046565b610c15565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613165565b610c9b565b005b34801561040057600080fd5b5061041b60048036038101906104169190613046565b610cbb565b005b34801561042957600080fd5b50610444600480360381019061043f91906132ed565b610d41565b005b34801561045257600080fd5b5061046d60048036038101906104689190613046565b610d9a565b005b34801561047b57600080fd5b50610484610de3565b604051610491919061314a565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613046565b610de9565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613046565b610e32565b6040516104f791906130b4565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613046565b610e44565b005b34801561053557600080fd5b50610550600480360381019061054b9190613336565b610e8d565b60405161055d919061314a565b60405180910390f35b34801561057257600080fd5b5061057b610f46565b005b34801561058957600080fd5b50610592610fce565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190613046565b611062565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613046565b6110ab565b005b3480156105f257600080fd5b506105fb6110f4565b60405161060891906130b4565b60405180910390f35b34801561061d57600080fd5b5061062661111e565b6040516106339190612fee565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613399565b6111b0565b005b34801561067157600080fd5b5061068c60048036038101906106879190613399565b6111f9565b005b34801561069a57600080fd5b506106b560048036038101906106b091906133f2565b611242565b005b3480156106c357600080fd5b506106cc6113ba565b6040516106d9919061314a565b60405180910390f35b3480156106ee57600080fd5b50610709600480360381019061070491906134d3565b6113c0565b005b34801561071757600080fd5b50610732600480360381019061072d9190613046565b611433565b60405161073f9190612fee565b60405180910390f35b610762600480360381019061075d91906135b6565b611581565b005b34801561077057600080fd5b50610779611c1b565b604051610786919061314a565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b1919061362a565b611c21565b6040516107c39190612f3a565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee91906132ed565b611cb5565b005b34801561080157600080fd5b5061081c60048036038101906108179190613336565b611d0e565b005b34801561082a57600080fd5b5061084560048036038101906108409190613046565b611e06565b005b34801561085357600080fd5b5061085c611e4f565b6040516108699190612f3a565b60405180910390f35b34801561087e57600080fd5b50610899600480360381019061089491906136c0565b611e62565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461093c9061374f565b80601f01602080910402602001604051908101604052809291908181526020018280546109689061374f565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82612032565b610a00576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4682612091565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acd61215f565b73ffffffffffffffffffffffffffffffffffffffff1614610b3057610af981610af461215f565b611c21565b610b2f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610bf2612167565b6001546000540303905090565b610c0a83838361216c565b505050565b600e5481565b610c1d612516565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906137cd565b60405180910390fd5b80601d8190555050565b610cb6838383604051806020016040528060008152506113c0565b505050565b610cc3612516565b73ffffffffffffffffffffffffffffffffffffffff16610ce16110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e906137cd565b60405180910390fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610d606110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d8057600080fd5b8060099080519060200190610d96929190612de3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16610db96110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610dd957600080fd5b8060118190555050565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff16610e086110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e2857600080fd5b80600d8190555050565b6000610e3d82612091565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610e636110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e8357600080fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f4e612516565b73ffffffffffffffffffffffffffffffffffffffff16610f6c6110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb9906137cd565b60405180910390fd5b610fcc600061251e565b565b3373ffffffffffffffffffffffffffffffffffffffff16610fed6110f4565b73ffffffffffffffffffffffffffffffffffffffff161461100d57600080fd5b6011546010541115611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90613839565b60405180910390fd5b61106033600f546125e4565b565b3373ffffffffffffffffffffffffffffffffffffffff166110816110f4565b73ffffffffffffffffffffffffffffffffffffffff16146110a157600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166110ca6110f4565b73ffffffffffffffffffffffffffffffffffffffff16146110ea57600080fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461112d9061374f565b80601f01602080910402602001604051908101604052809291908181526020018280546111599061374f565b80156111a65780601f1061117b576101008083540402835291602001916111a6565b820191906000526020600020905b81548152906001019060200180831161118957829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff166111cf6110f4565b73ffffffffffffffffffffffffffffffffffffffff16146111ef57600080fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112186110f4565b73ffffffffffffffffffffffffffffffffffffffff161461123857600080fd5b8060138190555050565b61124a61215f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112bc61215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661136961215f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ae9190612f3a565b60405180910390a35050565b600c5481565b6113cb84848461216c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461142d576113f684848484612602565b61142c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061143e82612032565b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906138a5565b60405180910390fd5b601b60149054906101000a900460ff1661152357600a805461149e9061374f565b80601f01602080910402602001604051908101604052809291908181526020018280546114ca9061374f565b80156115175780601f106114ec57610100808354040283529160200191611517565b820191906000526020600020905b8154815290600101906020018083116114fa57829003601f168201915b5050505050905061157c565b600061152d612753565b9050600081511161154d5760405180602001604052806000815250611578565b80611557846127e5565b60405160200161156892919061394d565b6040516020818303038152906040525b9150505b919050565b600e5461158c610be8565b11156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906139c8565b60405180910390fd5b42601d54601c546115de9190613a17565b116115ec576115eb612946565b5b60006115f6610be8565b90506116006110f4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611c0a5760006012541415611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613ab9565b60405180910390fd5b600e5485826116879190613a17565b11156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613b25565b60405180910390fd5b60016012541415611772576116de848484612963565b61171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490613b91565b60405180910390fd5b84600b5461172b9190613bb1565b34101561176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490613c57565b60405180910390fd5b61187a565b6002601254141561181c576117888484846129e7565b6117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90613b91565b60405180910390fd5b84600c546117d59190613bb1565b341015611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90613c57565b60405180910390fd5b611879565b600360125414156118785784600d546118359190613bb1565b341015611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613c57565b60405180910390fd5b5b5b5b6000349050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064604e846118ca9190613bb1565b6118d49190613ca6565b9081150290604051600060405180830381858888f193505050501580156118ff573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460048461194b9190613bb1565b6119559190613ca6565b9081150290604051600060405180830381858888f19350505050158015611980573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86019846119cd9190613bb1565b6119d79190613ca6565b9081150290604051600060405180830381858888f19350505050158015611a02573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600584611a4f9190613bb1565b611a599190613ca6565b9081150290604051600060405180830381858888f19350505050158015611a84573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600184611ad09190613bb1565b611ada9190613ca6565b9081150290604051600060405180830381858888f19350505050158015611b05573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484611b519190613bb1565b611b5b9190613ca6565b9081150290604051600060405180830381858888f19350505050158015611b86573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611bd29190613bb1565b611bdc9190613ca6565b9081150290604051600060405180830381858888f19350505050158015611c07573d6000803e3d6000fd5b50505b611c1482866125e4565b5050505050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611cd46110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611cf457600080fd5b80600a9080519060200190611d0a929190612de3565b5050565b611d16612516565b73ffffffffffffffffffffffffffffffffffffffff16611d346110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906137cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613d49565b60405180910390fd5b611e038161251e565b50565b3373ffffffffffffffffffffffffffffffffffffffff16611e256110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611e4557600080fd5b80600f8190555050565b601b60149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16611e816110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611ea157600080fd5b6000611eab610be8565b9050600e54811115611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613db5565b60405180910390fd5b600e548482611f019190613a17565b1115611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3990613b25565b60405180910390fd5b60005b8383905081101561202b57600073ffffffffffffffffffffffffffffffffffffffff16848483818110611f7b57611f7a613dd5565b5b9050602002016020810190611f909190613336565b73ffffffffffffffffffffffffffffffffffffffff161415611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90613e50565b60405180910390fd5b612018848483818110611ffd57611ffc613dd5565b5b90506020020160208101906120129190613336565b866125e4565b808061202390613e70565b915050611f45565b5050505050565b60008161203d612167565b1115801561204c575060005482105b801561208a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806120a0612167565b11612128576000548110156121275760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612125575b600081141561211b5760046000836001900393508381526020019081526020016000205490506120f0565b809250505061215a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061217782612091565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121de576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121ff61215f565b73ffffffffffffffffffffffffffffffffffffffff16148061222e575061222d8561222861215f565b611c21565b5b80612273575061223c61215f565b73ffffffffffffffffffffffffffffffffffffffff1661225b846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122ac576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612313576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123208585856001612a6b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61241d86612a71565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156124a75760006001840190506000600460008381526020019081526020016000205414156124a55760005481146124a4578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461250f8585856001612a7b565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fe828260405180602001604052806000815250612a81565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261262861215f565b8786866040518563ffffffff1660e01b815260040161264a9493929190613f0e565b6020604051808303816000875af192505050801561268657506040513d601f19601f820116820180604052508101906126839190613f6f565b60015b612700573d80600081146126b6576040519150601f19603f3d011682016040523d82523d6000602084013e6126bb565b606091505b506000815114156126f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546127629061374f565b80601f016020809104026020016040519081016040528092919081815260200182805461278e9061374f565b80156127db5780601f106127b0576101008083540402835291602001916127db565b820191906000526020600020905b8154815290600101906020018083116127be57829003601f168201915b5050505050905090565b6060600082141561282d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612941565b600082905060005b6000821461285f57808061284890613e70565b915050600a826128589190613ca6565b9150612835565b60008167ffffffffffffffff81111561287b5761287a6131c2565b5b6040519080825280601f01601f1916602001820160405280156128ad5781602001600182028036833780820191505090505b5090505b6000851461293a576001826128c69190613f9c565b9150600a856128d59190613fd0565b60306128e19190613a17565b60f81b8183815181106128f7576128f6613dd5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129339190613ca6565b94506128b1565b8093505050505b919050565b6001601b60146101000a81548160ff021916908315150217905550565b600080826040516020016129779190614049565b6040516020818303038152906040528051906020012090506129dd858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483612d36565b9150509392505050565b600080826040516020016129fb9190614049565b604051602081830303815290604052805190602001209050612a61858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612d36565b9150509392505050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612b29576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b366000858386612a6b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b9b60018514612d4d565b901b60a042901b612bab86612a71565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612caf575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5f6000878480600101955087612602565b612c95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612bf0578260005414612caa57600080fd5b612d1a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cb0575b816000819055505050612d306000858386612a7b565b50505050565b600082612d438584612d57565b1490509392505050565b6000819050919050565b60008082905060005b8451811015612dc1576000858281518110612d7e57612d7d613dd5565b5b60200260200101519050808311612da057612d998382612dcc565b9250612dad565b612daa8184612dcc565b92505b508080612db990613e70565b915050612d60565b508091505092915050565b600082600052816020526040600020905092915050565b828054612def9061374f565b90600052602060002090601f016020900481019282612e115760008555612e58565b82601f10612e2a57805160ff1916838001178555612e58565b82800160010185558215612e58579182015b82811115612e57578251825591602001919060010190612e3c565b5b509050612e659190612e69565b5090565b5b80821115612e82576000816000905550600101612e6a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ecf81612e9a565b8114612eda57600080fd5b50565b600081359050612eec81612ec6565b92915050565b600060208284031215612f0857612f07612e90565b5b6000612f1684828501612edd565b91505092915050565b60008115159050919050565b612f3481612f1f565b82525050565b6000602082019050612f4f6000830184612f2b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f8f578082015181840152602081019050612f74565b83811115612f9e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fc082612f55565b612fca8185612f60565b9350612fda818560208601612f71565b612fe381612fa4565b840191505092915050565b600060208201905081810360008301526130088184612fb5565b905092915050565b6000819050919050565b61302381613010565b811461302e57600080fd5b50565b6000813590506130408161301a565b92915050565b60006020828403121561305c5761305b612e90565b5b600061306a84828501613031565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061309e82613073565b9050919050565b6130ae81613093565b82525050565b60006020820190506130c960008301846130a5565b92915050565b6130d881613093565b81146130e357600080fd5b50565b6000813590506130f5816130cf565b92915050565b6000806040838503121561311257613111612e90565b5b6000613120858286016130e6565b925050602061313185828601613031565b9150509250929050565b61314481613010565b82525050565b600060208201905061315f600083018461313b565b92915050565b60008060006060848603121561317e5761317d612e90565b5b600061318c868287016130e6565b935050602061319d868287016130e6565b92505060406131ae86828701613031565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131fa82612fa4565b810181811067ffffffffffffffff82111715613219576132186131c2565b5b80604052505050565b600061322c612e86565b905061323882826131f1565b919050565b600067ffffffffffffffff821115613258576132576131c2565b5b61326182612fa4565b9050602081019050919050565b82818337600083830152505050565b600061329061328b8461323d565b613222565b9050828152602081018484840111156132ac576132ab6131bd565b5b6132b784828561326e565b509392505050565b600082601f8301126132d4576132d36131b8565b5b81356132e484826020860161327d565b91505092915050565b60006020828403121561330357613302612e90565b5b600082013567ffffffffffffffff81111561332157613320612e95565b5b61332d848285016132bf565b91505092915050565b60006020828403121561334c5761334b612e90565b5b600061335a848285016130e6565b91505092915050565b6000819050919050565b61337681613363565b811461338157600080fd5b50565b6000813590506133938161336d565b92915050565b6000602082840312156133af576133ae612e90565b5b60006133bd84828501613384565b91505092915050565b6133cf81612f1f565b81146133da57600080fd5b50565b6000813590506133ec816133c6565b92915050565b6000806040838503121561340957613408612e90565b5b6000613417858286016130e6565b9250506020613428858286016133dd565b9150509250929050565b600067ffffffffffffffff82111561344d5761344c6131c2565b5b61345682612fa4565b9050602081019050919050565b600061347661347184613432565b613222565b905082815260208101848484011115613492576134916131bd565b5b61349d84828561326e565b509392505050565b600082601f8301126134ba576134b96131b8565b5b81356134ca848260208601613463565b91505092915050565b600080600080608085870312156134ed576134ec612e90565b5b60006134fb878288016130e6565b945050602061350c878288016130e6565b935050604061351d87828801613031565b925050606085013567ffffffffffffffff81111561353e5761353d612e95565b5b61354a878288016134a5565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613576576135756131b8565b5b8235905067ffffffffffffffff81111561359357613592613556565b5b6020830191508360208202830111156135af576135ae61355b565b5b9250929050565b600080600080606085870312156135d0576135cf612e90565b5b60006135de87828801613031565b945050602085013567ffffffffffffffff8111156135ff576135fe612e95565b5b61360b87828801613560565b9350935050604061361e878288016130e6565b91505092959194509250565b6000806040838503121561364157613640612e90565b5b600061364f858286016130e6565b9250506020613660858286016130e6565b9150509250929050565b60008083601f8401126136805761367f6131b8565b5b8235905067ffffffffffffffff81111561369d5761369c613556565b5b6020830191508360208202830111156136b9576136b861355b565b5b9250929050565b6000806000604084860312156136d9576136d8612e90565b5b60006136e786828701613031565b935050602084013567ffffffffffffffff81111561370857613707612e95565b5b6137148682870161366a565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061376757607f821691505b6020821081141561377b5761377a613720565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137b7602083612f60565b91506137c282613781565b602082019050919050565b600060208201905081810360008301526137e6816137aa565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000613823601b83612f60565b915061382e826137ed565b602082019050919050565b6000602082019050818103600083015261385281613816565b9050919050565b7f546f6b656e204964204e6f6e2d6578697374656e740000000000000000000000600082015250565b600061388f601583612f60565b915061389a82613859565b602082019050919050565b600060208201905081810360008301526138be81613882565b9050919050565b600081905092915050565b60006138db82612f55565b6138e581856138c5565b93506138f5818560208601612f71565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139376005836138c5565b915061394282613901565b600582019050919050565b600061395982856138d0565b915061396582846138d0565b91506139708261392a565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006139b2600f83612f60565b91506139bd8261397c565b602082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a2282613010565b9150613a2d83613010565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6257613a616139e8565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613aa3601d83612f60565b9150613aae82613a6d565b602082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613b0f601683612f60565b9150613b1a82613ad9565b602082019050919050565b60006020820190508181036000830152613b3e81613b02565b9050919050565b7f4e46543a53656e646572206973206e6f742077686974656c69737465642e0000600082015250565b6000613b7b601e83612f60565b9150613b8682613b45565b602082019050919050565b60006020820190508181036000830152613baa81613b6e565b9050919050565b6000613bbc82613010565b9150613bc783613010565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0057613bff6139e8565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613c41601d83612f60565b9150613c4c82613c0b565b602082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cb182613010565b9150613cbc83613010565b925082613ccc57613ccb613c77565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d33602683612f60565b9150613d3e82613cd7565b604082019050919050565b60006020820190508181036000830152613d6281613d26565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000613d9f601383612f60565b9150613daa82613d69565b602082019050919050565b60006020820190508181036000830152613dce81613d92565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613e3a601883612f60565b9150613e4582613e04565b602082019050919050565b60006020820190508181036000830152613e6981613e2d565b9050919050565b6000613e7b82613010565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eae57613ead6139e8565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613ee082613eb9565b613eea8185613ec4565b9350613efa818560208601612f71565b613f0381612fa4565b840191505092915050565b6000608082019050613f2360008301876130a5565b613f3060208301866130a5565b613f3d604083018561313b565b8181036060830152613f4f8184613ed5565b905095945050505050565b600081519050613f6981612ec6565b92915050565b600060208284031215613f8557613f84612e90565b5b6000613f9384828501613f5a565b91505092915050565b6000613fa782613010565b9150613fb283613010565b925082821015613fc557613fc46139e8565b5b828203905092915050565b6000613fdb82613010565b9150613fe683613010565b925082613ff657613ff5613c77565b5b828206905092915050565b60008160601b9050919050565b600061401982614001565b9050919050565b600061402b8261400e565b9050919050565b61404361403e82613093565b614020565b82525050565b60006140558284614032565b6014820191508190509291505056fea26469706673582212201089eed0cb7899f20bd4a186b8cfbf687e0c19a7ce9967bb104beac71a48f3f964736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806371e3500c11610123578063b88d4fde116100ab578063f2c4ce1e1161006f578063f2c4ce1e146107cc578063f2fde38b146107f5578063f6c9d9e31461081e578063fae4c7f914610847578063fb7e6ccb1461087257610225565b8063b88d4fde146106e2578063c87b56dd1461070b578063cbbf42c114610748578063dc53fd9214610764578063e985e9c51461078f57610225565b806395d89b41116100f257806395d89b411461061157806399d1dd951461063c5780639a4da08314610665578063a22cb4651461068e578063a24e5153146106b757610225565b806371e3500c1461057d5780637389fbb71461059457806383af79e7146105bd5780638da5cb5b146105e657610225565b806342842e0e116101b15780635d82cf6e116101755780635d82cf6e1461049a5780636352211e146104c35780636df9fa881461050057806370a0823114610529578063715018a61461056657610225565b806342842e0e146103cb5780634adcd32a146103f457806355f804b31461041d57806356a87caa146104465780635bcc79281461046f57610225565b806315f5d8a0116101f857806315f5d8a0146102f857806318160ddd1461032357806323b872dd1461034e57806332cb6b0c14610377578063373c9897146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ef2565b61089b565b60405161025e9190612f3a565b60405180910390f35b34801561027357600080fd5b5061027c61092d565b6040516102899190612fee565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613046565b6109bf565b6040516102c691906130b4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906130fb565b610a3b565b005b34801561030457600080fd5b5061030d610be2565b60405161031a919061314a565b60405180910390f35b34801561032f57600080fd5b50610338610be8565b604051610345919061314a565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613165565b610bff565b005b34801561038357600080fd5b5061038c610c0f565b604051610399919061314a565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613046565b610c15565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613165565b610c9b565b005b34801561040057600080fd5b5061041b60048036038101906104169190613046565b610cbb565b005b34801561042957600080fd5b50610444600480360381019061043f91906132ed565b610d41565b005b34801561045257600080fd5b5061046d60048036038101906104689190613046565b610d9a565b005b34801561047b57600080fd5b50610484610de3565b604051610491919061314a565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613046565b610de9565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613046565b610e32565b6040516104f791906130b4565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613046565b610e44565b005b34801561053557600080fd5b50610550600480360381019061054b9190613336565b610e8d565b60405161055d919061314a565b60405180910390f35b34801561057257600080fd5b5061057b610f46565b005b34801561058957600080fd5b50610592610fce565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190613046565b611062565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613046565b6110ab565b005b3480156105f257600080fd5b506105fb6110f4565b60405161060891906130b4565b60405180910390f35b34801561061d57600080fd5b5061062661111e565b6040516106339190612fee565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613399565b6111b0565b005b34801561067157600080fd5b5061068c60048036038101906106879190613399565b6111f9565b005b34801561069a57600080fd5b506106b560048036038101906106b091906133f2565b611242565b005b3480156106c357600080fd5b506106cc6113ba565b6040516106d9919061314a565b60405180910390f35b3480156106ee57600080fd5b50610709600480360381019061070491906134d3565b6113c0565b005b34801561071757600080fd5b50610732600480360381019061072d9190613046565b611433565b60405161073f9190612fee565b60405180910390f35b610762600480360381019061075d91906135b6565b611581565b005b34801561077057600080fd5b50610779611c1b565b604051610786919061314a565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b1919061362a565b611c21565b6040516107c39190612f3a565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee91906132ed565b611cb5565b005b34801561080157600080fd5b5061081c60048036038101906108179190613336565b611d0e565b005b34801561082a57600080fd5b5061084560048036038101906108409190613046565b611e06565b005b34801561085357600080fd5b5061085c611e4f565b6040516108699190612f3a565b60405180910390f35b34801561087e57600080fd5b50610899600480360381019061089491906136c0565b611e62565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461093c9061374f565b80601f01602080910402602001604051908101604052809291908181526020018280546109689061374f565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82612032565b610a00576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4682612091565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acd61215f565b73ffffffffffffffffffffffffffffffffffffffff1614610b3057610af981610af461215f565b611c21565b610b2f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610bf2612167565b6001546000540303905090565b610c0a83838361216c565b505050565b600e5481565b610c1d612516565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906137cd565b60405180910390fd5b80601d8190555050565b610cb6838383604051806020016040528060008152506113c0565b505050565b610cc3612516565b73ffffffffffffffffffffffffffffffffffffffff16610ce16110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e906137cd565b60405180910390fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610d606110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d8057600080fd5b8060099080519060200190610d96929190612de3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16610db96110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610dd957600080fd5b8060118190555050565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff16610e086110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e2857600080fd5b80600d8190555050565b6000610e3d82612091565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610e636110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e8357600080fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f4e612516565b73ffffffffffffffffffffffffffffffffffffffff16610f6c6110f4565b73ffffffffffffffffffffffffffffffffffffffff1614610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb9906137cd565b60405180910390fd5b610fcc600061251e565b565b3373ffffffffffffffffffffffffffffffffffffffff16610fed6110f4565b73ffffffffffffffffffffffffffffffffffffffff161461100d57600080fd5b6011546010541115611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90613839565b60405180910390fd5b61106033600f546125e4565b565b3373ffffffffffffffffffffffffffffffffffffffff166110816110f4565b73ffffffffffffffffffffffffffffffffffffffff16146110a157600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166110ca6110f4565b73ffffffffffffffffffffffffffffffffffffffff16146110ea57600080fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461112d9061374f565b80601f01602080910402602001604051908101604052809291908181526020018280546111599061374f565b80156111a65780601f1061117b576101008083540402835291602001916111a6565b820191906000526020600020905b81548152906001019060200180831161118957829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff166111cf6110f4565b73ffffffffffffffffffffffffffffffffffffffff16146111ef57600080fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112186110f4565b73ffffffffffffffffffffffffffffffffffffffff161461123857600080fd5b8060138190555050565b61124a61215f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112bc61215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661136961215f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ae9190612f3a565b60405180910390a35050565b600c5481565b6113cb84848461216c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461142d576113f684848484612602565b61142c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061143e82612032565b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906138a5565b60405180910390fd5b601b60149054906101000a900460ff1661152357600a805461149e9061374f565b80601f01602080910402602001604051908101604052809291908181526020018280546114ca9061374f565b80156115175780601f106114ec57610100808354040283529160200191611517565b820191906000526020600020905b8154815290600101906020018083116114fa57829003601f168201915b5050505050905061157c565b600061152d612753565b9050600081511161154d5760405180602001604052806000815250611578565b80611557846127e5565b60405160200161156892919061394d565b6040516020818303038152906040525b9150505b919050565b600e5461158c610be8565b11156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906139c8565b60405180910390fd5b42601d54601c546115de9190613a17565b116115ec576115eb612946565b5b60006115f6610be8565b90506116006110f4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611c0a5760006012541415611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613ab9565b60405180910390fd5b600e5485826116879190613a17565b11156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613b25565b60405180910390fd5b60016012541415611772576116de848484612963565b61171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490613b91565b60405180910390fd5b84600b5461172b9190613bb1565b34101561176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490613c57565b60405180910390fd5b61187a565b6002601254141561181c576117888484846129e7565b6117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90613b91565b60405180910390fd5b84600c546117d59190613bb1565b341015611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90613c57565b60405180910390fd5b611879565b600360125414156118785784600d546118359190613bb1565b341015611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613c57565b60405180910390fd5b5b5b5b6000349050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064604e846118ca9190613bb1565b6118d49190613ca6565b9081150290604051600060405180830381858888f193505050501580156118ff573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460048461194b9190613bb1565b6119559190613ca6565b9081150290604051600060405180830381858888f19350505050158015611980573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86019846119cd9190613bb1565b6119d79190613ca6565b9081150290604051600060405180830381858888f19350505050158015611a02573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600584611a4f9190613bb1565b611a599190613ca6565b9081150290604051600060405180830381858888f19350505050158015611a84573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600184611ad09190613bb1565b611ada9190613ca6565b9081150290604051600060405180830381858888f19350505050158015611b05573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484611b519190613bb1565b611b5b9190613ca6565b9081150290604051600060405180830381858888f19350505050158015611b86573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611bd29190613bb1565b611bdc9190613ca6565b9081150290604051600060405180830381858888f19350505050158015611c07573d6000803e3d6000fd5b50505b611c1482866125e4565b5050505050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611cd46110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611cf457600080fd5b80600a9080519060200190611d0a929190612de3565b5050565b611d16612516565b73ffffffffffffffffffffffffffffffffffffffff16611d346110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906137cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613d49565b60405180910390fd5b611e038161251e565b50565b3373ffffffffffffffffffffffffffffffffffffffff16611e256110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611e4557600080fd5b80600f8190555050565b601b60149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16611e816110f4565b73ffffffffffffffffffffffffffffffffffffffff1614611ea157600080fd5b6000611eab610be8565b9050600e54811115611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613db5565b60405180910390fd5b600e548482611f019190613a17565b1115611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3990613b25565b60405180910390fd5b60005b8383905081101561202b57600073ffffffffffffffffffffffffffffffffffffffff16848483818110611f7b57611f7a613dd5565b5b9050602002016020810190611f909190613336565b73ffffffffffffffffffffffffffffffffffffffff161415611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90613e50565b60405180910390fd5b612018848483818110611ffd57611ffc613dd5565b5b90506020020160208101906120129190613336565b866125e4565b808061202390613e70565b915050611f45565b5050505050565b60008161203d612167565b1115801561204c575060005482105b801561208a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806120a0612167565b11612128576000548110156121275760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612125575b600081141561211b5760046000836001900393508381526020019081526020016000205490506120f0565b809250505061215a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061217782612091565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121de576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121ff61215f565b73ffffffffffffffffffffffffffffffffffffffff16148061222e575061222d8561222861215f565b611c21565b5b80612273575061223c61215f565b73ffffffffffffffffffffffffffffffffffffffff1661225b846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122ac576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612313576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123208585856001612a6b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61241d86612a71565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156124a75760006001840190506000600460008381526020019081526020016000205414156124a55760005481146124a4578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461250f8585856001612a7b565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fe828260405180602001604052806000815250612a81565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261262861215f565b8786866040518563ffffffff1660e01b815260040161264a9493929190613f0e565b6020604051808303816000875af192505050801561268657506040513d601f19601f820116820180604052508101906126839190613f6f565b60015b612700573d80600081146126b6576040519150601f19603f3d011682016040523d82523d6000602084013e6126bb565b606091505b506000815114156126f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546127629061374f565b80601f016020809104026020016040519081016040528092919081815260200182805461278e9061374f565b80156127db5780601f106127b0576101008083540402835291602001916127db565b820191906000526020600020905b8154815290600101906020018083116127be57829003601f168201915b5050505050905090565b6060600082141561282d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612941565b600082905060005b6000821461285f57808061284890613e70565b915050600a826128589190613ca6565b9150612835565b60008167ffffffffffffffff81111561287b5761287a6131c2565b5b6040519080825280601f01601f1916602001820160405280156128ad5781602001600182028036833780820191505090505b5090505b6000851461293a576001826128c69190613f9c565b9150600a856128d59190613fd0565b60306128e19190613a17565b60f81b8183815181106128f7576128f6613dd5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129339190613ca6565b94506128b1565b8093505050505b919050565b6001601b60146101000a81548160ff021916908315150217905550565b600080826040516020016129779190614049565b6040516020818303038152906040528051906020012090506129dd858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483612d36565b9150509392505050565b600080826040516020016129fb9190614049565b604051602081830303815290604052805190602001209050612a61858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612d36565b9150509392505050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612b29576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b366000858386612a6b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b9b60018514612d4d565b901b60a042901b612bab86612a71565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612caf575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5f6000878480600101955087612602565b612c95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612bf0578260005414612caa57600080fd5b612d1a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cb0575b816000819055505050612d306000858386612a7b565b50505050565b600082612d438584612d57565b1490509392505050565b6000819050919050565b60008082905060005b8451811015612dc1576000858281518110612d7e57612d7d613dd5565b5b60200260200101519050808311612da057612d998382612dcc565b9250612dad565b612daa8184612dcc565b92505b508080612db990613e70565b915050612d60565b508091505092915050565b600082600052816020526040600020905092915050565b828054612def9061374f565b90600052602060002090601f016020900481019282612e115760008555612e58565b82601f10612e2a57805160ff1916838001178555612e58565b82800160010185558215612e58579182015b82811115612e57578251825591602001919060010190612e3c565b5b509050612e659190612e69565b5090565b5b80821115612e82576000816000905550600101612e6a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ecf81612e9a565b8114612eda57600080fd5b50565b600081359050612eec81612ec6565b92915050565b600060208284031215612f0857612f07612e90565b5b6000612f1684828501612edd565b91505092915050565b60008115159050919050565b612f3481612f1f565b82525050565b6000602082019050612f4f6000830184612f2b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f8f578082015181840152602081019050612f74565b83811115612f9e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fc082612f55565b612fca8185612f60565b9350612fda818560208601612f71565b612fe381612fa4565b840191505092915050565b600060208201905081810360008301526130088184612fb5565b905092915050565b6000819050919050565b61302381613010565b811461302e57600080fd5b50565b6000813590506130408161301a565b92915050565b60006020828403121561305c5761305b612e90565b5b600061306a84828501613031565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061309e82613073565b9050919050565b6130ae81613093565b82525050565b60006020820190506130c960008301846130a5565b92915050565b6130d881613093565b81146130e357600080fd5b50565b6000813590506130f5816130cf565b92915050565b6000806040838503121561311257613111612e90565b5b6000613120858286016130e6565b925050602061313185828601613031565b9150509250929050565b61314481613010565b82525050565b600060208201905061315f600083018461313b565b92915050565b60008060006060848603121561317e5761317d612e90565b5b600061318c868287016130e6565b935050602061319d868287016130e6565b92505060406131ae86828701613031565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131fa82612fa4565b810181811067ffffffffffffffff82111715613219576132186131c2565b5b80604052505050565b600061322c612e86565b905061323882826131f1565b919050565b600067ffffffffffffffff821115613258576132576131c2565b5b61326182612fa4565b9050602081019050919050565b82818337600083830152505050565b600061329061328b8461323d565b613222565b9050828152602081018484840111156132ac576132ab6131bd565b5b6132b784828561326e565b509392505050565b600082601f8301126132d4576132d36131b8565b5b81356132e484826020860161327d565b91505092915050565b60006020828403121561330357613302612e90565b5b600082013567ffffffffffffffff81111561332157613320612e95565b5b61332d848285016132bf565b91505092915050565b60006020828403121561334c5761334b612e90565b5b600061335a848285016130e6565b91505092915050565b6000819050919050565b61337681613363565b811461338157600080fd5b50565b6000813590506133938161336d565b92915050565b6000602082840312156133af576133ae612e90565b5b60006133bd84828501613384565b91505092915050565b6133cf81612f1f565b81146133da57600080fd5b50565b6000813590506133ec816133c6565b92915050565b6000806040838503121561340957613408612e90565b5b6000613417858286016130e6565b9250506020613428858286016133dd565b9150509250929050565b600067ffffffffffffffff82111561344d5761344c6131c2565b5b61345682612fa4565b9050602081019050919050565b600061347661347184613432565b613222565b905082815260208101848484011115613492576134916131bd565b5b61349d84828561326e565b509392505050565b600082601f8301126134ba576134b96131b8565b5b81356134ca848260208601613463565b91505092915050565b600080600080608085870312156134ed576134ec612e90565b5b60006134fb878288016130e6565b945050602061350c878288016130e6565b935050604061351d87828801613031565b925050606085013567ffffffffffffffff81111561353e5761353d612e95565b5b61354a878288016134a5565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613576576135756131b8565b5b8235905067ffffffffffffffff81111561359357613592613556565b5b6020830191508360208202830111156135af576135ae61355b565b5b9250929050565b600080600080606085870312156135d0576135cf612e90565b5b60006135de87828801613031565b945050602085013567ffffffffffffffff8111156135ff576135fe612e95565b5b61360b87828801613560565b9350935050604061361e878288016130e6565b91505092959194509250565b6000806040838503121561364157613640612e90565b5b600061364f858286016130e6565b9250506020613660858286016130e6565b9150509250929050565b60008083601f8401126136805761367f6131b8565b5b8235905067ffffffffffffffff81111561369d5761369c613556565b5b6020830191508360208202830111156136b9576136b861355b565b5b9250929050565b6000806000604084860312156136d9576136d8612e90565b5b60006136e786828701613031565b935050602084013567ffffffffffffffff81111561370857613707612e95565b5b6137148682870161366a565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061376757607f821691505b6020821081141561377b5761377a613720565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137b7602083612f60565b91506137c282613781565b602082019050919050565b600060208201905081810360008301526137e6816137aa565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000613823601b83612f60565b915061382e826137ed565b602082019050919050565b6000602082019050818103600083015261385281613816565b9050919050565b7f546f6b656e204964204e6f6e2d6578697374656e740000000000000000000000600082015250565b600061388f601583612f60565b915061389a82613859565b602082019050919050565b600060208201905081810360008301526138be81613882565b9050919050565b600081905092915050565b60006138db82612f55565b6138e581856138c5565b93506138f5818560208601612f71565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139376005836138c5565b915061394282613901565b600582019050919050565b600061395982856138d0565b915061396582846138d0565b91506139708261392a565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006139b2600f83612f60565b91506139bd8261397c565b602082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a2282613010565b9150613a2d83613010565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6257613a616139e8565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613aa3601d83612f60565b9150613aae82613a6d565b602082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613b0f601683612f60565b9150613b1a82613ad9565b602082019050919050565b60006020820190508181036000830152613b3e81613b02565b9050919050565b7f4e46543a53656e646572206973206e6f742077686974656c69737465642e0000600082015250565b6000613b7b601e83612f60565b9150613b8682613b45565b602082019050919050565b60006020820190508181036000830152613baa81613b6e565b9050919050565b6000613bbc82613010565b9150613bc783613010565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0057613bff6139e8565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613c41601d83612f60565b9150613c4c82613c0b565b602082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cb182613010565b9150613cbc83613010565b925082613ccc57613ccb613c77565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d33602683612f60565b9150613d3e82613cd7565b604082019050919050565b60006020820190508181036000830152613d6281613d26565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000613d9f601383612f60565b9150613daa82613d69565b602082019050919050565b60006020820190508181036000830152613dce81613d92565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613e3a601883612f60565b9150613e4582613e04565b602082019050919050565b60006020820190508181036000830152613e6981613e2d565b9050919050565b6000613e7b82613010565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eae57613ead6139e8565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613ee082613eb9565b613eea8185613ec4565b9350613efa818560208601612f71565b613f0381612fa4565b840191505092915050565b6000608082019050613f2360008301876130a5565b613f3060208301866130a5565b613f3d604083018561313b565b8181036060830152613f4f8184613ed5565b905095945050505050565b600081519050613f6981612ec6565b92915050565b600060208284031215613f8557613f84612e90565b5b6000613f9384828501613f5a565b91505092915050565b6000613fa782613010565b9150613fb283613010565b925082821015613fc557613fc46139e8565b5b828203905092915050565b6000613fdb82613010565b9150613fe683613010565b925082613ff657613ff5613c77565b5b828206905092915050565b60008160601b9050919050565b600061401982614001565b9050919050565b600061402b8261400e565b9050919050565b61404361403e82613093565b614020565b82525050565b60006140558284614032565b6014820191508190509291505056fea26469706673582212201089eed0cb7899f20bd4a186b8cfbf687e0c19a7ce9967bb104beac71a48f3f964736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
Arg [1] : notRevealedURI (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$168.30
Net Worth in ETH
0.09
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,869.96 | 0.09 | $168.3 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.