Source Code
Latest 25 from a total of 240 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Lists Mint | 16547836 | 1131 days ago | IN | 0 ETH | 0.00505649 | ||||
| Transfer Ownersh... | 16536680 | 1132 days ago | IN | 0 ETH | 0.001257 | ||||
| Withdraw ETH | 16436853 | 1146 days ago | IN | 0 ETH | 0.0007045 | ||||
| Set List | 16422730 | 1148 days ago | IN | 0 ETH | 0.00090926 | ||||
| Lists Mint | 16415029 | 1149 days ago | IN | 0 ETH | 0.00714331 | ||||
| Lists Mint | 16411357 | 1150 days ago | IN | 0 ETH | 0.00347587 | ||||
| Lists Mint | 16410990 | 1150 days ago | IN | 0 ETH | 0.03260571 | ||||
| Lists Mint | 16410844 | 1150 days ago | IN | 0 ETH | 0.0037099 | ||||
| Lists Mint | 16410304 | 1150 days ago | IN | 0 ETH | 0.02070525 | ||||
| Lists Mint | 16409544 | 1150 days ago | IN | 0 ETH | 0.0032604 | ||||
| Lists Mint | 16409458 | 1150 days ago | IN | 0 ETH | 0.00534466 | ||||
| Lists Mint | 16409453 | 1150 days ago | IN | 0 ETH | 0.00367659 | ||||
| Lists Mint | 16409450 | 1150 days ago | IN | 0 ETH | 0.00571004 | ||||
| Lists Mint | 16409447 | 1150 days ago | IN | 0 ETH | 0.00294286 | ||||
| Lists Mint | 16409446 | 1150 days ago | IN | 0 ETH | 0.00460214 | ||||
| Lists Mint | 16409436 | 1150 days ago | IN | 0 ETH | 0.002503 | ||||
| Unpause | 16409435 | 1150 days ago | IN | 0 ETH | 0.00040885 | ||||
| All Mint | 16409422 | 1150 days ago | IN | 0 ETH | 0.00063842 | ||||
| All Mint | 16409314 | 1150 days ago | IN | 0 ETH | 0.00064635 | ||||
| Pause | 16409314 | 1150 days ago | IN | 0 ETH | 0.0005185 | ||||
| Set List | 16409258 | 1150 days ago | IN | 0 ETH | 0.00049127 | ||||
| All Mint | 16409183 | 1150 days ago | IN | 0 ETH | 0.00133427 | ||||
| Unpause | 16409086 | 1150 days ago | IN | 0 ETH | 0.0004976 | ||||
| Set Sublist Conf... | 16409002 | 1150 days ago | IN | 0 ETH | 0.0005721 | ||||
| Set List | 16408984 | 1150 days ago | IN | 0 ETH | 0.00052095 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SmashversePrimarySaleByMetadrop
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL 1.0
// Metadrop Contracts (v1)
pragma solidity 0.8.17;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
// EPS implementation
import "./EPS/IEPS_DR.sol";
// Metadrop NFT Interface
import "./INFTByMetadrop.sol";
contract SmashversePrimarySaleByMetadrop is Pausable, Ownable, IERC721Receiver {
using Strings for uint256;
// The current status of the mint:
// - notEnabled: This type of mint is not part of this drop
// - notYetOpen: This type of mint is part of the drop, but it hasn't started yet
// - open: it's ready for ya, get in there.
// - finished: been and gone.
// - unknown: theoretically impossible.
enum MintStatus {
notEnabled,
notYetOpen,
open,
finished,
unknown
}
enum AllocationCheck {
invalidListType,
hasAllocation,
invalidProof,
allocationExhausted
}
enum MintingType {
publicMint,
allowlistMint,
mintPassMint
}
struct SubListConfig {
uint256 start;
uint256 end;
uint256 phaseMaxSupply;
}
struct PublicMintConfig {
uint256 price;
uint256 maxPerAddress;
uint32 start;
uint32 end;
}
struct Sublist {
uint256 sublistInteger;
uint256 sublistPosition;
}
// =======================================
// CONFIG
// =======================================
// Max supply for this collection
uint256 public immutable supply;
// Mint price for the public mint.
uint256 public immutable publicMintPrice;
// Max allowance per address for public mint
uint256 public immutable maxPublicMintPerAddress;
// Pause cutoff
uint256 public immutable pauseCutOffInDays;
// Mint passes
ERC721Burnable public immutable mintPass;
// The merkleroot for the list
bytes32 public listMerkleRoot;
// Config for the list mints
SubListConfig[] public subListConfig;
// The NFT contract
INFTByMetadrop public nftContract;
uint32 public publicMintStart;
uint32 public publicMintEnd;
bool public publicMintingClosedForever;
bool public listDetailsLocked;
IEPS_DR public epsDeligateRegister;
address public beneficiary;
// Track the number of allowlist + public mints made as these cannot exceed the
// set limit (4,000 at time of writing)
uint256 public allowListPlusPublicMintCount;
// The sublist for the allowlist that combines with the public mint in terms
// of max supply:
uint256 public allowlistSublistInteger;
// Track publicMint minting allocations:
mapping(address => uint256) public publicMintAllocationMinted;
// Track list minting allocations:
mapping(address => mapping(uint256 => uint256))
public listMintAllocationMinted;
error MintingIsClosedForever();
error IncorrectETHPayment();
error TransferFailed();
error MaxPublicMintAllowanceExceeded(
uint256 requested,
uint256 alreadyMinted,
uint256 maxAllowance
);
error ProofInvalid();
error RequestingMoreThanRemainingAllocation(
uint256 requested,
uint256 remainingAllocation
);
error AddressAlreadySet();
error IncorrectConfirmationValue();
error InvalidAllowlistType();
error ThisListMintIsClosed();
error PublicMintClosed();
error MintPassClosed();
error RequestedQuantityExceedsSupply(uint256 requested, uint256 available);
error InvalidPass();
error ListDetailsLocked();
event EPSDelegateRegisterUpdated(address epsDelegateRegisterAddress);
event MerkleRootSet(bytes32 merkleRoot);
event SmashMint(
address indexed minter,
MintingType mintType,
uint256 subListInteger,
uint256 quantityMinted
);
event SublistConfigSet(
uint256 sublistInteger,
uint256 start,
uint256 end,
uint256 supply
);
event AllowlistSublistIntegerSet(uint256 sublistInteger);
constructor(
uint256 supply_,
PublicMintConfig memory publicMintConfig_,
bytes32 listMerkleRoot_,
address epsDeligateRegister_,
uint256 pauseCutOffInDays_,
address beneficiary_,
address mintPass_,
SubListConfig[] memory subListParams
) {
supply = supply_;
publicMintPrice = publicMintConfig_.price;
maxPublicMintPerAddress = publicMintConfig_.maxPerAddress;
listMerkleRoot = listMerkleRoot_;
publicMintStart = uint32(publicMintConfig_.start);
publicMintEnd = uint32(publicMintConfig_.end);
epsDeligateRegister = IEPS_DR(epsDeligateRegister_);
pauseCutOffInDays = pauseCutOffInDays_;
beneficiary = beneficiary_;
mintPass = ERC721Burnable(mintPass_);
_loadSubListDetails(subListParams);
}
// =======================================
// MINTING
// =======================================
/**
*
* @dev onERC721Received: Recieve an ERC721
*
*/
function onERC721Received(
address,
address from_,
uint256 tokenId_,
bytes memory
) external returns (bytes4) {
// Refuse all except mint pass holders:
if (msg.sender != address(mintPass)) {
revert InvalidPass();
}
_performMintPassMinting(tokenId_, from_);
return this.onERC721Received.selector;
}
/**
*
* @dev _loadSubListDetails
*
*/
function _loadSubListDetails(SubListConfig[] memory config_) internal {
for (uint256 i = 0; i < config_.length; i++) {
subListConfig.push(config_[i]);
}
}
/**
*
* @dev listMintStatus: View of a list mint status
*
*/
function listMintStatus(uint256 listInteger)
public
view
returns (
MintStatus status,
uint256 start,
uint256 end
)
{
return (
_mintTypeStatus(
subListConfig[listInteger].start,
subListConfig[listInteger].end
),
subListConfig[listInteger].start,
subListConfig[listInteger].end
);
}
/**
*
* @dev _mintTypeStatus: return the status of the mint type
*
*/
function _mintTypeStatus(uint256 start_, uint256 end_)
internal
view
returns (MintStatus)
{
// Explicitly check for open before anything else. This is the only valid path to making a
// state change, so keep the gas as low as possible for the code path through 'open'
if (block.timestamp >= (start_) && block.timestamp <= (end_)) {
return (MintStatus.open);
}
if ((start_ + end_) == 0) {
return (MintStatus.notEnabled);
}
if (block.timestamp > end_) {
return (MintStatus.finished);
}
if (block.timestamp < start_) {
return (MintStatus.notYetOpen);
}
return (MintStatus.unknown);
}
/**
*
* @dev publicMintStatus: View of public mint status
*
*/
function publicMintStatus() public view returns (MintStatus) {
return _mintTypeStatus(publicMintStart, publicMintEnd);
}
/**
*
* @dev allMint: Mint simultaneously from:
* - Any Sublist
* - Public
* - MintPass
*
*/
function allMint(
Sublist[] memory subLists_,
uint256[] memory quantityEligibles_,
uint256[] memory quantityToMints_,
uint256[] memory unitPrices_,
uint256[] memory vestingInDays_,
bytes32[][] calldata proofs_,
uint256 publicQuantityToMint_,
uint256[] memory mintPassTokenIds_
) external payable whenNotPaused {
uint256 totalPrice = 0;
// Calculate the total price of public and valid listMint calls
totalPrice = publicMintPrice * publicQuantityToMint_;
for (uint256 i = 0; i < subLists_.length; i++) {
if (proofs_[i].length != 0) {
// Add the price of this listMint to the total price
totalPrice += unitPrices_[i] * quantityToMints_[i];
}
}
// Check that the value of the message is equal to the total price
if (msg.value != totalPrice) revert IncorrectETHPayment();
// Process mint pass minting
if (mintPassTokenIds_.length != 0) {
_mintPassMint(mintPassTokenIds_, msg.sender);
}
// Process public minting
if (publicQuantityToMint_ != 0) {
_publicMint(publicQuantityToMint_);
}
// Make the listMint calls
for (uint256 i = 0; i < subLists_.length; i++) {
if (proofs_[i].length != 0) {
_listMint(
subLists_[i],
quantityEligibles_[i],
quantityToMints_[i],
unitPrices_[i],
vestingInDays_[i],
proofs_[i]
);
}
}
}
/**
*
* @dev listMints: Mint simultaneously from any sublists
*
*/
function listsMint(
Sublist[] memory subLists_,
uint256[] memory quantityEligibles_,
uint256[] memory quantityToMints_,
uint256[] memory unitPrices_,
uint256[] memory vestingInDays_,
bytes32[][] calldata proofs_
) external payable whenNotPaused {
uint256 totalPrice = 0;
// Calculate the total price of the valid listMint calls
for (uint256 i = 0; i < subLists_.length; i++) {
if (proofs_[i].length != 0) {
// Add the price of this listMint to the total price
totalPrice += unitPrices_[i] * quantityToMints_[i];
}
}
// Check that the value of the message is equal to the total price
if (msg.value != totalPrice) revert IncorrectETHPayment();
// Make the listMint calls
for (uint256 i = 0; i < subLists_.length; i++) {
if (proofs_[i].length != 0) {
_listMint(
subLists_[i],
quantityEligibles_[i],
quantityToMints_[i],
unitPrices_[i],
vestingInDays_[i],
proofs_[i]
);
}
}
}
/**
*
* @dev listMint: mint from any of the lists
*
*/
function listMint(
Sublist memory sublist_,
uint256 quantityEligible_,
uint256 quantityToMint_,
uint256 unitPrice_,
uint256 vestingInDays_,
bytes32[] calldata proof_
) public payable whenNotPaused {
if (msg.value != (unitPrice_ * quantityToMint_)) {
revert IncorrectETHPayment();
}
_listMint(
sublist_,
quantityEligible_,
quantityToMint_,
unitPrice_,
vestingInDays_,
proof_
);
}
/**
*
* @dev _listMint: mint from any of the lists
*
*/
function _listMint(
Sublist memory sublist_,
uint256 quantityEligible_,
uint256 quantityToMint_,
uint256 unitPrice_,
uint256 vestingInDays_,
bytes32[] calldata proof_
) internal {
(address minter, bool valid) = merkleListValid(
msg.sender,
sublist_,
quantityEligible_,
proof_,
unitPrice_,
vestingInDays_,
listMerkleRoot
);
MintStatus status;
(status, , ) = listMintStatus(sublist_.sublistInteger);
if (status != MintStatus.open) revert ThisListMintIsClosed();
if (sublist_.sublistInteger == allowlistSublistInteger) {
if (!_allowlistAndPublicSupplyRemains(quantityToMint_)) {
revert RequestedQuantityExceedsSupply(
quantityToMint_,
subListConfig[allowlistSublistInteger].phaseMaxSupply -
allowListPlusPublicMintCount
);
}
}
if (!valid) revert ProofInvalid();
// See if this address has already minted its full allocation:
if (
(listMintAllocationMinted[minter][sublist_.sublistInteger] +
quantityToMint_) > quantityEligible_
)
revert RequestingMoreThanRemainingAllocation({
requested: quantityToMint_,
remainingAllocation: quantityEligible_ -
listMintAllocationMinted[minter][sublist_.sublistInteger]
});
listMintAllocationMinted[minter][
sublist_.sublistInteger
] += quantityToMint_;
if (sublist_.sublistInteger == allowlistSublistInteger) {
allowListPlusPublicMintCount += quantityToMint_;
}
nftContract.mint(quantityToMint_, msg.sender, vestingInDays_);
emit SmashMint(
msg.sender,
MintingType.allowlistMint,
sublist_.sublistInteger,
quantityToMint_
);
}
/**
*
* @dev publicMint: Minting not related to a list. Note that the confi
* may impose a per address limit (maxPublicMintPerAddress).
*
*/
function publicMint(uint256 quantityToMint_) external payable whenNotPaused {
if (msg.value != (publicMintPrice * quantityToMint_))
revert IncorrectETHPayment();
_publicMint(quantityToMint_);
}
function _publicMint(uint256 quantityToMint_) internal {
if (publicMintStatus() != MintStatus.open) revert PublicMintClosed();
if (!_allowlistAndPublicSupplyRemains(quantityToMint_)) {
revert RequestedQuantityExceedsSupply(
quantityToMint_,
subListConfig[allowlistSublistInteger].phaseMaxSupply -
allowListPlusPublicMintCount
);
}
if (maxPublicMintPerAddress != 0) {
// Get previous mint count and check that this quantity will not exceed the allowance:
uint256 publicMintsForAddress = publicMintAllocationMinted[msg.sender];
if ((publicMintsForAddress + quantityToMint_) > maxPublicMintPerAddress) {
revert MaxPublicMintAllowanceExceeded({
requested: quantityToMint_,
alreadyMinted: publicMintsForAddress,
maxAllowance: maxPublicMintPerAddress
});
}
publicMintAllocationMinted[msg.sender] += quantityToMint_;
}
allowListPlusPublicMintCount += quantityToMint_;
nftContract.mint(quantityToMint_, msg.sender, 0);
emit SmashMint(msg.sender, MintingType.publicMint, 0, quantityToMint_);
}
/**
*
* @dev mintPassMint: Minting using a mint pass. Note that this contract
* must have approval before this can be called
*
*/
function mintPassMint(uint256[] memory mintPassTokenIds_) external {
_mintPassMint(mintPassTokenIds_, msg.sender);
}
function _mintPassMint(uint256[] memory mintPassTokenIds_, address receiver_)
internal
{
for (uint256 i = 0; i < mintPassTokenIds_.length; i++) {
_performMintPassMinting(mintPassTokenIds_[i], receiver_);
}
}
function _performMintPassMinting(uint256 tokenId_, address receiver_)
internal
{
// The mint pass cannot start until the allowlist (designated via allowlistSublistInteger) has started
if (block.timestamp < subListConfig[allowlistSublistInteger].start) {
revert MintPassClosed();
}
// Burn the mint pass:
mintPass.burn(tokenId_);
// Mint the owner of the mint pass two NFTs:
nftContract.mint(2, receiver_, 0);
emit SmashMint(msg.sender, MintingType.mintPassMint, 0, 2);
}
/**
*
* @dev _allowlistAndPublicSupplyRemains
*
*/
function _allowlistAndPublicSupplyRemains(uint256 quantityToMint_)
internal
view
returns (bool)
{
return
(quantityToMint_ + allowListPlusPublicMintCount) <=
subListConfig[allowlistSublistInteger].phaseMaxSupply;
}
/**
*
* @dev merkleListValid: Eligibility check for the merkleroot controlled minting. This can be called from front-end (for example to control
* screen components that indicate if the connected address is eligible) as well as from within the contract.
*
* Function flow is as follows:
* (1) Check that the address and eligible quantity are in the rafflelist.
* -> (1a) If NOT then go to (2),
* -> (1b) if it IS go to (4).
* (2) If (1) is false, check if the sender address is a proxy for a nominator,
* -> (2a) If there is NO nominator exit with false eligibility and reason "Mint proof invalid"
* -> (2b) if there IS a nominator go to (3)
* (3) Check if the nominator is in the rafflelist.
* -> (3a) if NOT then exit with false eligibility and reason "Mint proof invalid"
* -> (3b) if it IS then go to (4), having set the minter to the nominator which is the eligible address for this mint.
* (4) Check if this minter address has already minted. If so, exit with false eligibility and reason "Requesting more than remaining allocation"
* (5) All checks passed, return elibility = true, the delivery address and valid minter adress.
*
*/
function merkleListValid(
address addressToCheck_,
Sublist memory sublist_,
uint256 quantityEligible_,
bytes32[] calldata proof_,
uint256 unitPrice_,
uint256 vestingInDays_,
bytes32 root_
) public view returns (address minter, bool success) {
// Default delivery and minter address are the addresses passed in, which from the contract will be the msg.sender:
minter = addressToCheck_;
bytes32 leaf = _getListHash(
addressToCheck_,
sublist_,
quantityEligible_,
unitPrice_,
vestingInDays_
);
// (1) Check rafflelist for addressToCheck_:
if (MerkleProof.verify(proof_, root_, leaf) == false) {
// (2) addressToCheck_ is not on the list. Check if they are a cold EPS address for a hot EPS address:
if (address(epsDeligateRegister) != address(0)) {
address epsCold;
address[] memory epsAddresses;
(epsAddresses, ) = epsDeligateRegister.getAllAddresses(
addressToCheck_,
1
);
if (epsAddresses.length > 1) {
epsCold = epsAddresses[1];
} else {
return (minter, false);
}
// (3) If this matches a proxy record and the nominator isn't the addressToCheck_ we have a nominator to check
if (epsCold != addressToCheck_) {
leaf = _getListHash(
epsCold,
sublist_,
quantityEligible_,
unitPrice_,
vestingInDays_
);
if (MerkleProof.verify(proof_, root_, leaf) == false) {
// (3a) Not valid at either address. Say so and return
return (minter, false);
} else {
// (3b) There is a value at the nominator. The nominator is the minter, use it to check and track allowance.
minter = epsCold;
}
} else {
// (2a) Sender isn't on the list, and there is no proxy to consider:
return (minter, false);
}
}
}
// (5) Can only reach here for a valid address and quantity:
return (minter, true);
}
/**
*
* @dev _getListHash: Get hash of information for the rafflelist mint.
*
*/
function _getListHash(
address minter_,
Sublist memory sublist_,
uint256 quantity_,
uint256 unitPrice_,
uint256 vestingInDays_
) internal pure returns (bytes32) {
return
keccak256(
abi.encodePacked(
minter_,
sublist_.sublistPosition,
quantity_,
unitPrice_,
vestingInDays_,
sublist_.sublistInteger
)
);
}
/**
*
* @dev checkAllocation: Eligibility check for all lists. Will return a count of remaining allocation (if any) and an optional
* status code.
*/
function checkAllocation(
Sublist memory sublist_,
uint256 quantityEligible_,
uint256 unitPrice_,
uint256 vestingInDays_,
bytes32[] calldata proof_,
address addressToCheck_
) external view returns (uint256 allocation, AllocationCheck statusCode) {
(address minter, bool valid) = merkleListValid(
addressToCheck_,
sublist_,
quantityEligible_,
proof_,
unitPrice_,
vestingInDays_,
listMerkleRoot
);
if (!valid) {
return (0, AllocationCheck.invalidProof);
} else {
allocation =
quantityEligible_ -
listMintAllocationMinted[minter][sublist_.sublistInteger];
if (allocation > 0) {
return (allocation, AllocationCheck.hasAllocation);
} else {
return (allocation, AllocationCheck.allocationExhausted);
}
}
}
// =======================================
// ADMINISTRATION
// =======================================
/**
*
* @dev setSublistConfig:
*
*/
function setSublistConfig(
uint256 sublistInteger_,
uint256 start_,
uint256 end_,
uint256 supply_
) external onlyOwner {
if (listDetailsLocked) {
revert ListDetailsLocked();
}
subListConfig[sublistInteger_].start = start_;
subListConfig[sublistInteger_].end = end_;
subListConfig[sublistInteger_].phaseMaxSupply = supply_;
emit SublistConfigSet(sublistInteger_, start_, end_, supply_);
}
/**
*
* @dev setAllowlistSublistInteger:
*
*/
function setAllowlistSublistInteger(uint256 allowlistSublistInteger_)
external
onlyOwner
{
allowlistSublistInteger = allowlistSublistInteger_;
emit AllowlistSublistIntegerSet(allowlistSublistInteger_);
}
/**
*
* @dev setNFTAddress
*
*/
function setNFTAddress(address nftContract_) external onlyOwner {
if (nftContract == INFTByMetadrop(address(0))) {
nftContract = INFTByMetadrop(nftContract_);
} else {
revert AddressAlreadySet();
}
}
/**
*
* @dev setList: Set the merkleroot
*
*/
function setList(bytes32 merkleRoot_) external onlyOwner {
if (listDetailsLocked) {
revert ListDetailsLocked();
}
listMerkleRoot = merkleRoot_;
emit MerkleRootSet(merkleRoot_);
}
/**
*
*
* @dev setpublicMintStart: Allow owner to set minting open time.
*
*
*/
function setpublicMintStart(uint32 time_) external onlyOwner {
if (publicMintingClosedForever) {
revert MintingIsClosedForever();
}
publicMintStart = time_;
}
/**
*
*
* @dev setpublicMintEnd: Allow owner to set minting closed time.
*
*
*/
function setpublicMintEnd(uint32 time_) external onlyOwner {
if (publicMintingClosedForever) {
revert MintingIsClosedForever();
}
publicMintEnd = time_;
}
/**
*
*
* @dev setPublicMintingClosedForeverCannotBeUndone: Allow owner to set minting complete
* Enter confirmation value of "SmashversePrimarySale" to confirm that you are closing
* this mint forever.
*
*
*/
function setPublicMintingClosedForeverCannotBeUndone(
string memory confirmation_
) external onlyOwner {
string memory expectedValue = "SmashversePrimarySale";
if (
keccak256(abi.encodePacked(confirmation_)) ==
keccak256(abi.encodePacked(expectedValue))
) {
publicMintEnd = uint32(block.timestamp);
publicMintingClosedForever = true;
} else {
revert IncorrectConfirmationValue();
}
}
/**
*
*
* @dev setListDetailsLockedForeverCannotBeUndone: Allow owner to set minting complete
* Enter confirmation value of "SmashversePrimarySale" to confirm that you are closing
* this mint forever.
*
*
*/
function setListDetailsLockedForeverCannotBeUndone(
string memory confirmation_
) external onlyOwner {
string memory expectedValue = "SmashversePrimarySale";
if (
keccak256(abi.encodePacked(confirmation_)) ==
keccak256(abi.encodePacked(expectedValue))
) {
listDetailsLocked = true;
} else {
revert IncorrectConfirmationValue();
}
}
/**
*
*
* @dev pause: Allow owner to pause.
*
*
*/
function pause() external onlyOwner {
require(
publicMintStart == 0 ||
block.timestamp < (publicMintStart + pauseCutOffInDays * 1 days),
"Pause cutoff passed"
);
_pause();
}
/**
*
*
* @dev unpause: Allow owner to unpause.
*
*
*/
function unpause() external onlyOwner {
_unpause();
}
/**
*
*
* @dev setEPSDelegateRegisterAddress. Owner can update the EPS DelegateRegister address
*
*
*/
function setEPSDelegateRegisterAddress(address epsDelegateRegister_)
external
onlyOwner
{
epsDeligateRegister = IEPS_DR(epsDelegateRegister_);
emit EPSDelegateRegisterUpdated(epsDelegateRegister_);
}
// =======================================
// FINANCE
// =======================================
/**
*
*
* @dev withdrawETH: A withdraw function to allow ETH to be withdrawn to the vesting contract.
* Note that this can be performed by anyone, as all funds flow to the vesting contract only.
*
*
*/
function withdrawETH(uint256 amount) external {
(bool success, ) = beneficiary.call{value: amount}("");
if (!success) revert TransferFailed();
}
/**
*
*
* @dev withdrawERC20: A withdraw function to allow ERC20s to be withdrawn to the vesting contract.
* Note that this can be performed by anyone, as all funds flow to the vesting contract only.
*
*
*/
function withdrawERC20(IERC20 token, uint256 amount) external {
token.transfer(beneficiary, amount);
}
}// SPDX-License-Identifier: MIT
// Metadrop Contracts (v0.0.1)
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface INFTByMetadrop {
// The current status of the mint:
// - notEnabled: This type of mint is not part of this drop
// - notYetOpen: This type of mint is part of the drop, but it hasn't started yet
// - open: it's ready for ya, get in there.
// - finished: been and gone.
// - unknown: theoretically impossible.
enum MintStatus {
notEnabled,
notYetOpen,
open,
finished,
unknown
}
enum AllocationCheck {
invalidListType,
hasAllocation,
invalidProof,
allocationExhausted
}
enum BeneficiaryType {
owner,
epsDelegate,
stakedOwner,
vestedOwner,
offChainOwner
}
// ============================
// EVENTS
// ============================
event EPSComposeThisUpdated(address epsComposeThisAddress);
event EPSDelegateRegisterUpdated(address epsDelegateRegisterAddress);
event EPS_CTTurnedOn();
event EPS_CTTurnedOff();
event Revealed();
event BaseContractSet(address baseContract);
event VestingAddressSet(address vestingAddress);
event MaxStakingDurationSet(uint16 maxStakingDurationInDays);
event MerkleRootSet(bytes32 merkleRoot);
// ============================
// ERRORS
// ============================
error ThisIsTheBaseContract();
error MintingIsClosedForever();
error ThisMintIsClosed();
error IncorrectETHPayment();
error TransferFailed();
error VestingAddressIsLocked();
error MetadataIsLocked();
error StakingDurationExceedsMaximum(
uint256 requestedStakingDuration,
uint256 maxStakingDuration
);
error MaxPublicMintAllowanceExceeded(
uint256 requested,
uint256 alreadyMinted,
uint256 maxAllowance
);
error ProofInvalid();
error RequestingMoreThanRemainingAllocation(
uint256 requested,
uint256 remainingAllocation
);
error baseChainOnly();
error InvalidAddress();
// ============================
// FUNCTIONS
// ============================
function setURIs(
string memory placeholderURI_,
string memory arweaveURI_,
string memory ipfsURI_
) external;
function lockURIs() external;
function switchImageSource(bool useArweave_) external;
function setDefaultRoyalty(address recipient, uint96 fraction) external;
function deleteDefaultRoyalty() external;
function mint(
uint256 quantityToMint_,
address to_,
uint256 vestingInDays_
) external;
}// SPDX-License-Identifier: MIT
//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//* IEPS_DR: EPS Delegate Regsiter Interface
//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// EPS Contracts v2.0.0
pragma solidity ^0.8.17;
/**
*
* @dev Interface for the EPS portal
*
*/
/**
* @dev Returns the beneficiary of the `tokenId` token.
*/
interface IEPS_DR {
function beneficiaryOf(
address tokenContract_,
uint256 tokenId_,
uint256 rightsIndex_
) external view returns (address beneficiary_);
/**
* @dev Returns the beneficiary balance for a contract.
*/
function beneficiaryBalanceOf(
address queryAddress_,
address tokenContract_,
uint256 rightsIndex_
) external view returns (uint256 balance_);
/**
* @dev beneficiaryBalance: Returns the beneficiary balance of ETH.
*/
function beneficiaryBalance(address queryAddress_)
external
view
returns (uint256 balance_);
/**
* @dev beneficiaryBalanceOf1155: Returns the beneficiary balance for an ERC1155.
*/
function beneficiaryBalanceOf1155(
address queryAddress_,
address tokenContract_,
uint256 id_
) external view returns (uint256 balance_);
function getAddresses(address receivedAddress_, uint256 rightsIndex_)
external
view
returns (address[] memory proxyAddresses_, address delivery_);
function getAddresses1155(address receivedAddress_, uint256 rightsIndex_)
external
view
returns (address[] memory proxyAddresses_, address delivery_);
function getAddresses20(address receivedAddress_, uint256 rightsIndex_)
external
view
returns (address[] memory proxyAddresses_, address delivery_);
function getAllAddresses(address receivedAddress_, uint256 rightsIndex_)
external
view
returns (address[] memory proxyAddresses_, address delivery_);
/**
* @dev coldIsLive: Return if a cold wallet is live
*/
function coldIsLive(address cold_) external view returns (bool);
/**
* @dev hotIsLive: Return if a hot wallet is live
*/
function hotIsLive(address hot_) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(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++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
* consuming from one or the other at each step according to the instructions given by
* `proofFlags`.
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_burn(tokenId);
}
}// 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 (last updated v4.7.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// 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;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @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) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @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 overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), 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 {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_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 {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @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.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @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`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* 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
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a 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 _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* 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, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"supply_","type":"uint256"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxPerAddress","type":"uint256"},{"internalType":"uint32","name":"start","type":"uint32"},{"internalType":"uint32","name":"end","type":"uint32"}],"internalType":"struct SmashversePrimarySaleByMetadrop.PublicMintConfig","name":"publicMintConfig_","type":"tuple"},{"internalType":"bytes32","name":"listMerkleRoot_","type":"bytes32"},{"internalType":"address","name":"epsDeligateRegister_","type":"address"},{"internalType":"uint256","name":"pauseCutOffInDays_","type":"uint256"},{"internalType":"address","name":"beneficiary_","type":"address"},{"internalType":"address","name":"mintPass_","type":"address"},{"components":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"phaseMaxSupply","type":"uint256"}],"internalType":"struct SmashversePrimarySaleByMetadrop.SubListConfig[]","name":"subListParams","type":"tuple[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressAlreadySet","type":"error"},{"inputs":[],"name":"IncorrectConfirmationValue","type":"error"},{"inputs":[],"name":"IncorrectETHPayment","type":"error"},{"inputs":[],"name":"InvalidAllowlistType","type":"error"},{"inputs":[],"name":"InvalidPass","type":"error"},{"inputs":[],"name":"ListDetailsLocked","type":"error"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"uint256","name":"alreadyMinted","type":"uint256"},{"internalType":"uint256","name":"maxAllowance","type":"uint256"}],"name":"MaxPublicMintAllowanceExceeded","type":"error"},{"inputs":[],"name":"MintPassClosed","type":"error"},{"inputs":[],"name":"MintingIsClosedForever","type":"error"},{"inputs":[],"name":"ProofInvalid","type":"error"},{"inputs":[],"name":"PublicMintClosed","type":"error"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"RequestedQuantityExceedsSupply","type":"error"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"uint256","name":"remainingAllocation","type":"uint256"}],"name":"RequestingMoreThanRemainingAllocation","type":"error"},{"inputs":[],"name":"ThisListMintIsClosed","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sublistInteger","type":"uint256"}],"name":"AllowlistSublistIntegerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"epsDelegateRegisterAddress","type":"address"}],"name":"EPSDelegateRegisterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootSet","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"enum SmashversePrimarySaleByMetadrop.MintingType","name":"mintType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"subListInteger","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityMinted","type":"uint256"}],"name":"SmashMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sublistInteger","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"end","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"SublistConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"components":[{"internalType":"uint256","name":"sublistInteger","type":"uint256"},{"internalType":"uint256","name":"sublistPosition","type":"uint256"}],"internalType":"struct SmashversePrimarySaleByMetadrop.Sublist[]","name":"subLists_","type":"tuple[]"},{"internalType":"uint256[]","name":"quantityEligibles_","type":"uint256[]"},{"internalType":"uint256[]","name":"quantityToMints_","type":"uint256[]"},{"internalType":"uint256[]","name":"unitPrices_","type":"uint256[]"},{"internalType":"uint256[]","name":"vestingInDays_","type":"uint256[]"},{"internalType":"bytes32[][]","name":"proofs_","type":"bytes32[][]"},{"internalType":"uint256","name":"publicQuantityToMint_","type":"uint256"},{"internalType":"uint256[]","name":"mintPassTokenIds_","type":"uint256[]"}],"name":"allMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListPlusPublicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistSublistInteger","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"sublistInteger","type":"uint256"},{"internalType":"uint256","name":"sublistPosition","type":"uint256"}],"internalType":"struct SmashversePrimarySaleByMetadrop.Sublist","name":"sublist_","type":"tuple"},{"internalType":"uint256","name":"quantityEligible_","type":"uint256"},{"internalType":"uint256","name":"unitPrice_","type":"uint256"},{"internalType":"uint256","name":"vestingInDays_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"address","name":"addressToCheck_","type":"address"}],"name":"checkAllocation","outputs":[{"internalType":"uint256","name":"allocation","type":"uint256"},{"internalType":"enum SmashversePrimarySaleByMetadrop.AllocationCheck","name":"statusCode","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epsDeligateRegister","outputs":[{"internalType":"contract IEPS_DR","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listDetailsLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"sublistInteger","type":"uint256"},{"internalType":"uint256","name":"sublistPosition","type":"uint256"}],"internalType":"struct SmashversePrimarySaleByMetadrop.Sublist","name":"sublist_","type":"tuple"},{"internalType":"uint256","name":"quantityEligible_","type":"uint256"},{"internalType":"uint256","name":"quantityToMint_","type":"uint256"},{"internalType":"uint256","name":"unitPrice_","type":"uint256"},{"internalType":"uint256","name":"vestingInDays_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"listMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"listMintAllocationMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"listInteger","type":"uint256"}],"name":"listMintStatus","outputs":[{"internalType":"enum SmashversePrimarySaleByMetadrop.MintStatus","name":"status","type":"uint8"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"sublistInteger","type":"uint256"},{"internalType":"uint256","name":"sublistPosition","type":"uint256"}],"internalType":"struct SmashversePrimarySaleByMetadrop.Sublist[]","name":"subLists_","type":"tuple[]"},{"internalType":"uint256[]","name":"quantityEligibles_","type":"uint256[]"},{"internalType":"uint256[]","name":"quantityToMints_","type":"uint256[]"},{"internalType":"uint256[]","name":"unitPrices_","type":"uint256[]"},{"internalType":"uint256[]","name":"vestingInDays_","type":"uint256[]"},{"internalType":"bytes32[][]","name":"proofs_","type":"bytes32[][]"}],"name":"listsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxPublicMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToCheck_","type":"address"},{"components":[{"internalType":"uint256","name":"sublistInteger","type":"uint256"},{"internalType":"uint256","name":"sublistPosition","type":"uint256"}],"internalType":"struct SmashversePrimarySaleByMetadrop.Sublist","name":"sublist_","type":"tuple"},{"internalType":"uint256","name":"quantityEligible_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"uint256","name":"unitPrice_","type":"uint256"},{"internalType":"uint256","name":"vestingInDays_","type":"uint256"},{"internalType":"bytes32","name":"root_","type":"bytes32"}],"name":"merkleListValid","outputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPass","outputs":[{"internalType":"contract ERC721Burnable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"mintPassTokenIds_","type":"uint256[]"}],"name":"mintPassMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nftContract","outputs":[{"internalType":"contract INFTByMetadrop","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseCutOffInDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantityToMint_","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintAllocationMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnd","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStart","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStatus","outputs":[{"internalType":"enum SmashversePrimarySaleByMetadrop.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintingClosedForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"allowlistSublistInteger_","type":"uint256"}],"name":"setAllowlistSublistInteger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"epsDelegateRegister_","type":"address"}],"name":"setEPSDelegateRegisterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"confirmation_","type":"string"}],"name":"setListDetailsLockedForeverCannotBeUndone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract_","type":"address"}],"name":"setNFTAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"confirmation_","type":"string"}],"name":"setPublicMintingClosedForeverCannotBeUndone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sublistInteger_","type":"uint256"},{"internalType":"uint256","name":"start_","type":"uint256"},{"internalType":"uint256","name":"end_","type":"uint256"},{"internalType":"uint256","name":"supply_","type":"uint256"}],"name":"setSublistConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"time_","type":"uint32"}],"name":"setpublicMintEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"time_","type":"uint32"}],"name":"setpublicMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"subListConfig","outputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"phaseMaxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6101206040523480156200001257600080fd5b50604051620030ce380380620030ce833981016040819052620000359162000353565b6000805460ff191690556200004a33620000f9565b6080889052865160a052602087015160c052600186905560408701516003805460608a015163ffffffff908116600160c01b0263ffffffff60c01b1991909416600160a01b0216600160a01b600160e01b031990911617919091179055600480546001600160a01b038088166001600160a01b03199283161790925560e0869052600580548684169216919091179055821661010052620000eb8162000152565b505050505050505062000486565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b60005b8151811015620001cb57600282828151811062000176576200017662000448565b6020908102919091018101518254600181810185556000948552938390208251600390920201908155918101519282019290925560409091015160029091015580620001c2816200045e565b91505062000155565b5050565b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b03811182821017156200020a576200020a620001cf565b60405290565b604051608081016001600160401b03811182821017156200020a576200020a620001cf565b604051601f8201601f191681016001600160401b0381118282101715620002605762000260620001cf565b604052919050565b805163ffffffff811681146200027d57600080fd5b919050565b80516001600160a01b03811681146200027d57600080fd5b600082601f830112620002ac57600080fd5b815160206001600160401b03821115620002ca57620002ca620001cf565b620002da818360051b0162000235565b82815260609283028501820192828201919087851115620002fa57600080fd5b8387015b85811015620003465781818a031215620003185760008081fd5b62000322620001e5565b815181528582015186820152604080830151908201528452928401928101620002fe565b5090979650505050505050565b600080600080600080600080888a036101608112156200037257600080fd5b895198506080601f19820112156200038957600080fd5b506200039462000210565b60208a0151815260408a01516020820152620003b360608b0162000268565b6040820152620003c660808b0162000268565b606082015260a08a01519097509550620003e360c08a0162000282565b945060e08901519350620003fb6101008a0162000282565b92506200040c6101208a0162000282565b6101408a01519092506001600160401b038111156200042a57600080fd5b620004388b828c016200029a565b9150509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b6000600182016200047f57634e487b7160e01b600052601160045260246000fd5b5060010190565b60805160a05160c05160e05161010051612bcb6200050360003960008181610536015281816108ff015261183801526000818161075201526112f001526000818161081a01528181611d2701528181611d5d0152611da90152600081816107e6015281816109e70152610d16015260006102890152612bcb6000f3fe6080604052600436106102725760003560e01c806382e5f1a81161014f578063bbb76c1e116100c1578063dfb1b5451161007a578063dfb1b54514610808578063e36380161461083c578063e37e5c8f1461087b578063e597fb411461089c578063f14210a6146108b2578063f2fde38b146108d257600080fd5b8063bbb76c1e14610720578063bdaea0e114610740578063c3b2fc2314610774578063d56d229d14610794578063d8fc368b146107b4578063dc53fd92146107d457600080fd5b80638cfec4c0116101135780638cfec4c0146106485780638da5cb5b1461066c5780638e8ee87b1461068f578063a1db9782146106ca578063a35d64af146106ea578063ab9673431461070057600080fd5b806382e5f1a81461058b57806383d352c2146105ab5780638456cb59146105da5780638787f660146105ef57806387c4a22a1461061057600080fd5b80633c5d1b54116101e857806369d03738116101ac57806369d03738146104c2578063715018a6146104e257806372cc410e146104f7578063749679c3146105245780638140038c14610558578063823a5a141461057857600080fd5b80633c5d1b54146104405780633f4ba83a14610456578063518ff40e1461046b57806356d0806c1461048b5780635c975abb1461049e57600080fd5b80632a196e1b1161023a5780632a196e1b1461034e5780632db11544146103875780632f2009841461039a578063334fa47e146103c857806338af3eed146103e85780633921a2f51461042057600080fd5b8063047fc9aa14610277578063150b7a02146102be5780631cf3bc29146102f757806325161d111461030c578063262023701461032c575b600080fd5b34801561028357600080fd5b506102ab7f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b3480156102ca57600080fd5b506102de6102d9366004612242565b6108f2565b6040516001600160e01b031990911681526020016102b5565b61030a61030536600461235a565b610958565b005b34801561031857600080fd5b5061030a610327366004612463565b6109a1565b34801561033857600080fd5b506103416109ae565b6040516102b591906124c9565b34801561035a57600080fd5b5060035461037290600160c01b900463ffffffff1681565b60405163ffffffff90911681526020016102b5565b61030a6103953660046124d7565b6109d9565b3480156103a657600080fd5b506103ba6103b53660046124f0565b610a33565b6040516102b5929190612575565b3480156103d457600080fd5b5061030a6103e3366004612599565b610abe565b3480156103f457600080fd5b50600554610408906001600160a01b031681565b6040516001600160a01b0390911681526020016102b5565b34801561042c57600080fd5b5061030a61043b3660046125b6565b610b1b565b34801561044c57600080fd5b506102ab60015481565b34801561046257600080fd5b5061030a610c18565b34801561047757600080fd5b5061030a6104863660046125e8565b610c2a565b61030a610499366004612694565b610d06565b3480156104aa57600080fd5b5060005460ff165b60405190151581526020016102b5565b3480156104ce57600080fd5b5061030a6104dd366004612599565b610f15565b3480156104ee57600080fd5b5061030a610f66565b34801561050357600080fd5b506102ab610512366004612599565b60086020526000908152604090205481565b34801561053057600080fd5b506104087f000000000000000000000000000000000000000000000000000000000000000081565b34801561056457600080fd5b5061030a6105733660046127bd565b610f78565b61030a6105863660046127e3565b610fd1565b34801561059757600080fd5b5061030a6105a63660046125e8565b61117a565b3480156105b757600080fd5b506105cb6105c63660046124d7565b61121e565b6040516102b5939291906128cc565b3480156105e657600080fd5b5061030a6112cc565b3480156105fb57600080fd5b506003546104b290600160e81b900460ff1681565b34801561061c57600080fd5b506102ab61062b3660046128eb565b600960209081526000928352604080842090915290825290205481565b34801561065457600080fd5b5060035461037290600160a01b900463ffffffff1681565b34801561067857600080fd5b5060005461010090046001600160a01b0316610408565b34801561069b57600080fd5b506106af6106aa3660046124d7565b611384565b604080519384526020840192909252908201526060016102b5565b3480156106d657600080fd5b5061030a6106e53660046128eb565b6113b7565b3480156106f657600080fd5b506102ab60075481565b34801561070c57600080fd5b50600454610408906001600160a01b031681565b34801561072c57600080fd5b5061030a61073b3660046124d7565b611433565b34801561074c57600080fd5b506102ab7f000000000000000000000000000000000000000000000000000000000000000081565b34801561078057600080fd5b5061030a61078f3660046124d7565b61149b565b3480156107a057600080fd5b50600354610408906001600160a01b031681565b3480156107c057600080fd5b5061030a6107cf3660046127bd565b6114d8565b3480156107e057600080fd5b506102ab7f000000000000000000000000000000000000000000000000000000000000000081565b34801561081457600080fd5b506102ab7f000000000000000000000000000000000000000000000000000000000000000081565b34801561084857600080fd5b5061085c610857366004612917565b611531565b604080516001600160a01b0390931683529015156020830152016102b5565b34801561088757600080fd5b506003546104b290600160e01b900460ff1681565b3480156108a857600080fd5b506102ab60065481565b3480156108be57600080fd5b5061030a6108cd3660046124d7565b6116f1565b3480156108de57600080fd5b5061030a6108ed366004612599565b611765565b6000336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461093d5760405163102bf07160e11b815260040160405180910390fd5b61094783856117db565b50630a85bd0160e11b949350505050565b610960611955565b61096a85856129b6565b34146109895760405163149f6c8560e21b815260040160405180910390fd5b6109988787878787878761199b565b50505050505050565b6109ab8133611c23565b50565b6003546000906109d49063ffffffff600160a01b8204811691600160c01b900416611c64565b905090565b6109e1611955565b610a0b817f00000000000000000000000000000000000000000000000000000000000000006129b6565b3414610a2a5760405163149f6c8560e21b815260040160405180910390fd5b6109ab81611cc6565b600080600080610a4b858c8c8a8a8e8e600154611531565b9150915080610a635760006002935093505050610ab2565b6001600160a01b03821660009081526009602090815260408083208e518452909152902054610a92908b6129cd565b93508315610aa6575060019150610ab29050565b5060039150610ab29050565b97509795505050505050565b610ac6611ec6565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f965ccc841c73347febe94233ffa09c19890576155df1f4b3d0e88a025d96ca68906020015b60405180910390a150565b610b23611ec6565b600354600160e81b900460ff1615610b4e57604051633dd09b1960e11b815260040160405180910390fd5b8260028581548110610b6257610b626129e0565b9060005260206000209060030201600001819055508160028581548110610b8b57610b8b6129e0565b9060005260206000209060030201600101819055508060028581548110610bb457610bb46129e0565b600091825260209182902060026003909202010191909155604080518681529182018590528101839052606081018290527fcaaa6484ccddb731dd3c0f27a5239045bff2da9f1c8975abdd53cfc3b8e259359060800160405180910390a150505050565b610c20611ec6565b610c28611f26565b565b610c32611ec6565b600060405180604001604052806015815260200174536d61736876657273655072696d61727953616c6560581b815250905080604051602001610c7591906129f6565b6040516020818303038152906040528051906020012082604051602001610c9c91906129f6565b6040516020818303038152906040528051906020012003610ce9576003805460ff60e01b1963ffffffff4216600160c01b021664ffffffffff60c01b1990911617600160e01b1790555050565b60405163353f4c1760e21b815260040160405180910390fd5b5050565b610d0e611955565b6000610d3a837f00000000000000000000000000000000000000000000000000000000000000006129b6565b905060005b8a51811015610dd057858582818110610d5a57610d5a6129e0565b9050602002810190610d6c9190612a25565b159050610dbe57888181518110610d8557610d856129e0565b6020026020010151888281518110610d9f57610d9f6129e0565b6020026020010151610db191906129b6565b610dbb9083612a6e565b91505b80610dc881612a81565b915050610d3f565b50803414610df15760405163149f6c8560e21b815260040160405180910390fd5b815115610e0257610e028233611c23565b8215610e1157610e1183611cc6565b60005b8a51811015610f0857858582818110610e2f57610e2f6129e0565b9050602002810190610e419190612a25565b159050610ef657610ef68b8281518110610e5d57610e5d6129e0565b60200260200101518b8381518110610e7757610e776129e0565b60200260200101518b8481518110610e9157610e916129e0565b60200260200101518b8581518110610eab57610eab6129e0565b60200260200101518b8681518110610ec557610ec56129e0565b60200260200101518b8b88818110610edf57610edf6129e0565b9050602002810190610ef19190612a25565b61199b565b80610f0081612a81565b915050610e14565b5050505050505050505050565b610f1d611ec6565b6003546001600160a01b0316610f4d57600380546001600160a01b0383166001600160a01b031990911617905550565b604051637b1616c160e11b815260040160405180910390fd5b610f6e611ec6565b610c286000611f78565b610f80611ec6565b600354600160e01b900460ff1615610fab5760405163f2f76b4560e01b815260040160405180910390fd5b6003805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b610fd9611955565b6000805b885181101561106e57838382818110610ff857610ff86129e0565b905060200281019061100a9190612a25565b15905061105c57868181518110611023576110236129e0565b602002602001015186828151811061103d5761103d6129e0565b602002602001015161104f91906129b6565b6110599083612a6e565b91505b8061106681612a81565b915050610fdd565b5080341461108f5760405163149f6c8560e21b815260040160405180910390fd5b60005b885181101561116f578383828181106110ad576110ad6129e0565b90506020028101906110bf9190612a25565b15905061115d5761115d8982815181106110db576110db6129e0565b60200260200101518983815181106110f5576110f56129e0565b602002602001015189848151811061110f5761110f6129e0565b6020026020010151898581518110611129576111296129e0565b6020026020010151898681518110611143576111436129e0565b6020026020010151898988818110610edf57610edf6129e0565b8061116781612a81565b915050611092565b505050505050505050565b611182611ec6565b600060405180604001604052806015815260200174536d61736876657273655072696d61727953616c6560581b8152509050806040516020016111c591906129f6565b60405160208183030381529060405280519060200120826040516020016111ec91906129f6565b6040516020818303038152906040528051906020012003610ce9576003805460ff60e81b1916600160e81b1790555050565b600080600061127560028581548110611239576112396129e0565b9060005260206000209060030201600001546002868154811061125e5761125e6129e0565b906000526020600020906003020160010154611c64565b60028581548110611288576112886129e0565b906000526020600020906003020160000154600286815481106112ad576112ad6129e0565b9060005260206000209060030201600101549250925092509193909250565b6112d4611ec6565b600354600160a01b900463ffffffff16158061133557506113187f0000000000000000000000000000000000000000000000000000000000000000620151806129b6565b6003546113329190600160a01b900463ffffffff16612a6e565b42105b61137c5760405162461bcd60e51b815260206004820152601360248201527214185d5cd94818dd5d1bd999881c185cdcd959606a1b60448201526064015b60405180910390fd5b610c28611fd1565b6002818154811061139457600080fd5b600091825260209091206003909102018054600182015460029092015490925083565b60055460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af115801561140a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142e9190612a9a565b505050565b61143b611ec6565b600354600160e81b900460ff161561146657604051633dd09b1960e11b815260040160405180910390fd5b60018190556040518181527f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90602001610b10565b6114a3611ec6565b60078190556040518181527f9003950727cc154c70d7d2b9006f66f051b4377067114521a1407940060d5c4890602001610b10565b6114e0611ec6565b600354600160e01b900460ff161561150b5760405163f2f76b4560e01b815260040160405180910390fd5b6003805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b87600080611542838b8b898961200e565b90506115848888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508892508591506120739050565b15156000036116de576004546001600160a01b0316156116de5760048054604051632bf5c6fb60e01b81526001600160a01b038e811693820193909352600160248201526000926060921690632bf5c6fb90604401600060405180830381865afa1580156115f6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261161e9190810190612acc565b508091505060018151111561164f5780600181518110611640576116406129e0565b6020026020010151915061165c565b50600092506116e4915050565b8c6001600160a01b0316826001600160a01b03161461164f57611682828d8d8b8b61200e565b92506116c48a8a808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508a92508791506120739050565b15156000036116da5750600092506116e4915050565b5092505b50600190505b9850989650505050505050565b6005546040516000916001600160a01b03169083908381818185875af1925050503d806000811461173e576040519150601f19603f3d011682016040523d82523d6000602084013e611743565b606091505b5050905080610d02576040516312171d8360e31b815260040160405180910390fd5b61176d611ec6565b6001600160a01b0381166117d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611373565b6109ab81611f78565b6002600754815481106117f0576117f06129e0565b906000526020600020906003020160000154421015611822576040516350afad3960e01b815260040160405180910390fd5b604051630852cd8d60e31b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906342966c6890602401600060405180830381600087803b15801561188457600080fd5b505af1158015611898573d6000803e3d6000fd5b505060035460405163020da84160e61b8152600260048201526001600160a01b03858116602483015260006044830152909116925063836a10409150606401600060405180830381600087803b1580156118f157600080fd5b505af1158015611905573d6000803e3d6000fd5b50505050336001600160a01b03167f8488d41c001e1c678a782dc118f1d209200257f6b98b4ed8c427d859dd60cd0960026000600260405161194993929190612b87565b60405180910390a25050565b60005460ff1615610c285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401611373565b6000806119b0338a8a87878b8b600154611531565b9150915060006119c38a6000015161121e565b50909150600290508160048111156119dd576119dd61249f565b146119fb576040516305b88fa560e41b815260040160405180910390fd5b6007548a5103611a6957611a0e88612089565b611a695787600654600260075481548110611a2b57611a2b6129e0565b906000526020600020906003020160020154611a4791906129cd565b604051635372a49960e11b815260048101929092526024820152604401611373565b81611a8757604051631ff3747d60e21b815260040160405180910390fd5b6001600160a01b03831660009081526009602090815260408083208d5184529091529020548990611ab9908a90612a6e565b1115611b12576001600160a01b03831660009081526009602090815260408083208d5184529091529020548890611af0908b6129cd565b6040516308e186f360e21b815260048101929092526024820152604401611373565b6001600160a01b03831660009081526009602090815260408083208d518452909152812080548a9290611b46908490612a6e565b90915550506007548a5103611b6d578760066000828254611b679190612a6e565b90915550505b60035460405163020da84160e61b8152600481018a9052336024820152604481018890526001600160a01b039091169063836a104090606401600060405180830381600087803b158015611bc057600080fd5b505af1158015611bd4573d6000803e3d6000fd5b50508b516040513393507f8488d41c001e1c678a782dc118f1d209200257f6b98b4ed8c427d859dd60cd099250611c0f916001918d90612b87565b60405180910390a250505050505050505050565b60005b825181101561142e57611c52838281518110611c4457611c446129e0565b6020026020010151836117db565b80611c5c81612a81565b915050611c26565b6000824210158015611c765750814211155b15611c8357506002611cc0565b611c8d8284612a6e565b600003611c9c57506000611cc0565b81421115611cac57506003611cc0565b82421015611cbc57506001611cc0565b5060045b92915050565b6002611cd06109ae565b6004811115611ce157611ce161249f565b14611cff576040516316851fc760e11b815260040160405180910390fd5b611d0881612089565b611d255780600654600260075481548110611a2b57611a2b6129e0565b7f000000000000000000000000000000000000000000000000000000000000000015611dfb57336000908152600860205260409020547f0000000000000000000000000000000000000000000000000000000000000000611d868383612a6e565b1115611dd557604051634d8bba0960e11b815260048101839052602481018290527f00000000000000000000000000000000000000000000000000000000000000006044820152606401611373565b3360009081526008602052604081208054849290611df4908490612a6e565b9091555050505b8060066000828254611e0d9190612a6e565b909155505060035460405163020da84160e61b815260048101839052336024820152600060448201526001600160a01b039091169063836a104090606401600060405180830381600087803b158015611e6557600080fd5b505af1158015611e79573d6000803e3d6000fd5b50505050336001600160a01b03167f8488d41c001e1c678a782dc118f1d209200257f6b98b4ed8c427d859dd60cd0960008084604051611ebb93929190612b87565b60405180910390a250565b6000546001600160a01b03610100909104163314610c285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611373565b611f2e6120c8565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b611fd9611955565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5b3390565b60208481015194516040805160609890981b6bffffffffffffffffffffffff191688840152603488019690965260548701949094526074860192909252609485015260b4808501929092528251808503909201825260d4909301909152805191012090565b6000826120808584612111565b14949350505050565b60006002600754815481106120a0576120a06129e0565b906000526020600020906003020160020154600654836120c09190612a6e565b111592915050565b60005460ff16610c285760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401611373565b600081815b84518110156121565761214282868381518110612135576121356129e0565b602002602001015161215e565b91508061214e81612a81565b915050612116565b509392505050565b600081831061217a576000828152602084905260409020612189565b60008381526020839052604090205b9392505050565b6001600160a01b03811681146109ab57600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156121e3576121e36121a5565b604052919050565b60006001600160401b03831115612204576122046121a5565b612217601f8401601f19166020016121bb565b905082815283838301111561222b57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561225857600080fd5b843561226381612190565b9350602085013561227381612190565b92506040850135915060608501356001600160401b0381111561229557600080fd5b8501601f810187136122a657600080fd5b6122b5878235602084016121eb565b91505092959194509250565b6000604082840312156122d357600080fd5b604051604081018181106001600160401b03821117156122f5576122f56121a5565b604052823581526020928301359281019290925250919050565b60008083601f84011261232157600080fd5b5081356001600160401b0381111561233857600080fd5b6020830191508360208260051b850101111561235357600080fd5b9250929050565b600080600080600080600060e0888a03121561237557600080fd5b61237f89896122c1565b965060408801359550606088013594506080880135935060a0880135925060c08801356001600160401b038111156123b657600080fd5b6123c28a828b0161230f565b989b979a50959850939692959293505050565b60006001600160401b038211156123ee576123ee6121a5565b5060051b60200190565b600082601f83011261240957600080fd5b8135602061241e612419836123d5565b6121bb565b82815260059290921b8401810191818101908684111561243d57600080fd5b8286015b848110156124585780358352918301918301612441565b509695505050505050565b60006020828403121561247557600080fd5b81356001600160401b0381111561248b57600080fd5b612497848285016123f8565b949350505050565b634e487b7160e01b600052602160045260246000fd5b600581106124c5576124c561249f565b9052565b60208101611cc082846124b5565b6000602082840312156124e957600080fd5b5035919050565b600080600080600080600060e0888a03121561250b57600080fd5b61251589896122c1565b965060408801359550606088013594506080880135935060a08801356001600160401b0381111561254557600080fd5b6125518a828b0161230f565b90945092505060c088013561256581612190565b8091505092959891949750929550565b828152604081016004831061258c5761258c61249f565b8260208301529392505050565b6000602082840312156125ab57600080fd5b813561218981612190565b600080600080608085870312156125cc57600080fd5b5050823594602084013594506040840135936060013592509050565b6000602082840312156125fa57600080fd5b81356001600160401b0381111561261057600080fd5b8201601f8101841361262157600080fd5b612497848235602084016121eb565b600082601f83011261264157600080fd5b81356020612651612419836123d5565b82815260069290921b8401810191818101908684111561267057600080fd5b8286015b848110156124585761268688826122c1565b835291830191604001612674565b60008060008060008060008060006101008a8c0312156126b357600080fd5b89356001600160401b03808211156126ca57600080fd5b6126d68d838e01612630565b9a5060208c01359150808211156126ec57600080fd5b6126f88d838e016123f8565b995060408c013591508082111561270e57600080fd5b61271a8d838e016123f8565b985060608c013591508082111561273057600080fd5b61273c8d838e016123f8565b975060808c013591508082111561275257600080fd5b61275e8d838e016123f8565b965060a08c013591508082111561277457600080fd5b6127808d838e0161230f565b909650945060c08c0135935060e08c01359150808211156127a057600080fd5b506127ad8c828d016123f8565b9150509295985092959850929598565b6000602082840312156127cf57600080fd5b813563ffffffff8116811461218957600080fd5b600080600080600080600060c0888a0312156127fe57600080fd5b87356001600160401b038082111561281557600080fd5b6128218b838c01612630565b985060208a013591508082111561283757600080fd5b6128438b838c016123f8565b975060408a013591508082111561285957600080fd5b6128658b838c016123f8565b965060608a013591508082111561287b57600080fd5b6128878b838c016123f8565b955060808a013591508082111561289d57600080fd5b6128a98b838c016123f8565b945060a08a01359150808211156128bf57600080fd5b506123c28a828b0161230f565b606081016128da82866124b5565b602082019390935260400152919050565b600080604083850312156128fe57600080fd5b823561290981612190565b946020939093013593505050565b600080600080600080600080610100898b03121561293457600080fd5b883561293f81612190565b975061294e8a60208b016122c1565b96506060890135955060808901356001600160401b0381111561297057600080fd5b61297c8b828c0161230f565b999c989b50969996989760a08801359760c0810135975060e0013595509350505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417611cc057611cc06129a0565b81810381811115611cc057611cc06129a0565b634e487b7160e01b600052603260045260246000fd5b6000825160005b81811015612a1757602081860181015185830152016129fd565b506000920191825250919050565b6000808335601e19843603018112612a3c57600080fd5b8301803591506001600160401b03821115612a5657600080fd5b6020019150600581901b360382131561235357600080fd5b80820180821115611cc057611cc06129a0565b600060018201612a9357612a936129a0565b5060010190565b600060208284031215612aac57600080fd5b8151801515811461218957600080fd5b8051612ac781612190565b919050565b60008060408385031215612adf57600080fd5b82516001600160401b03811115612af557600080fd5b8301601f81018513612b0657600080fd5b80516020612b16612419836123d5565b82815260059290921b83018101918181019088841115612b3557600080fd5b938201935b83851015612b5c578451612b4d81612190565b82529382019390820190612b3a565b9550612b6b9050868201612abc565b93505050509250929050565b600381106124c5576124c561249f565b606081016128da8286612b7756fea26469706673582212206bb411a42a07c76dd1c436c140bf0f1d95891189822d5b37eaa3afbcd23613eb64736f6c634300081100330000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000000000000000000000000000001aa535d3d0c000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000063c2fbb000000000000000000000000000000000000000000000000000000000ffffffff12851f5758a818c2ab862acf1c0ba9862e721d333d942da1933dba2af93254140000000000000000000000000000000000000af8fe6e4de40f4804c90fa8ea8f000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000007390edbe8979cfbb1d50a6a5707d93aafe49e9dc0000000000000000000000001d01b7a227dea7b88a971b379320fd0404ff8c08000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000063c1aa300000000000000000000000000000000000000000000000000000000063c2fbb00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000063c1aa3000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000000001360000000000000000000000000000000000000000000000000000000063c1aa3000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000000000be
Deployed Bytecode
0x6080604052600436106102725760003560e01c806382e5f1a81161014f578063bbb76c1e116100c1578063dfb1b5451161007a578063dfb1b54514610808578063e36380161461083c578063e37e5c8f1461087b578063e597fb411461089c578063f14210a6146108b2578063f2fde38b146108d257600080fd5b8063bbb76c1e14610720578063bdaea0e114610740578063c3b2fc2314610774578063d56d229d14610794578063d8fc368b146107b4578063dc53fd92146107d457600080fd5b80638cfec4c0116101135780638cfec4c0146106485780638da5cb5b1461066c5780638e8ee87b1461068f578063a1db9782146106ca578063a35d64af146106ea578063ab9673431461070057600080fd5b806382e5f1a81461058b57806383d352c2146105ab5780638456cb59146105da5780638787f660146105ef57806387c4a22a1461061057600080fd5b80633c5d1b54116101e857806369d03738116101ac57806369d03738146104c2578063715018a6146104e257806372cc410e146104f7578063749679c3146105245780638140038c14610558578063823a5a141461057857600080fd5b80633c5d1b54146104405780633f4ba83a14610456578063518ff40e1461046b57806356d0806c1461048b5780635c975abb1461049e57600080fd5b80632a196e1b1161023a5780632a196e1b1461034e5780632db11544146103875780632f2009841461039a578063334fa47e146103c857806338af3eed146103e85780633921a2f51461042057600080fd5b8063047fc9aa14610277578063150b7a02146102be5780631cf3bc29146102f757806325161d111461030c578063262023701461032c575b600080fd5b34801561028357600080fd5b506102ab7f0000000000000000000000000000000000000000000000000000000000001d4c81565b6040519081526020015b60405180910390f35b3480156102ca57600080fd5b506102de6102d9366004612242565b6108f2565b6040516001600160e01b031990911681526020016102b5565b61030a61030536600461235a565b610958565b005b34801561031857600080fd5b5061030a610327366004612463565b6109a1565b34801561033857600080fd5b506103416109ae565b6040516102b591906124c9565b34801561035a57600080fd5b5060035461037290600160c01b900463ffffffff1681565b60405163ffffffff90911681526020016102b5565b61030a6103953660046124d7565b6109d9565b3480156103a657600080fd5b506103ba6103b53660046124f0565b610a33565b6040516102b5929190612575565b3480156103d457600080fd5b5061030a6103e3366004612599565b610abe565b3480156103f457600080fd5b50600554610408906001600160a01b031681565b6040516001600160a01b0390911681526020016102b5565b34801561042c57600080fd5b5061030a61043b3660046125b6565b610b1b565b34801561044c57600080fd5b506102ab60015481565b34801561046257600080fd5b5061030a610c18565b34801561047757600080fd5b5061030a6104863660046125e8565b610c2a565b61030a610499366004612694565b610d06565b3480156104aa57600080fd5b5060005460ff165b60405190151581526020016102b5565b3480156104ce57600080fd5b5061030a6104dd366004612599565b610f15565b3480156104ee57600080fd5b5061030a610f66565b34801561050357600080fd5b506102ab610512366004612599565b60086020526000908152604090205481565b34801561053057600080fd5b506104087f0000000000000000000000001d01b7a227dea7b88a971b379320fd0404ff8c0881565b34801561056457600080fd5b5061030a6105733660046127bd565b610f78565b61030a6105863660046127e3565b610fd1565b34801561059757600080fd5b5061030a6105a63660046125e8565b61117a565b3480156105b757600080fd5b506105cb6105c63660046124d7565b61121e565b6040516102b5939291906128cc565b3480156105e657600080fd5b5061030a6112cc565b3480156105fb57600080fd5b506003546104b290600160e81b900460ff1681565b34801561061c57600080fd5b506102ab61062b3660046128eb565b600960209081526000928352604080842090915290825290205481565b34801561065457600080fd5b5060035461037290600160a01b900463ffffffff1681565b34801561067857600080fd5b5060005461010090046001600160a01b0316610408565b34801561069b57600080fd5b506106af6106aa3660046124d7565b611384565b604080519384526020840192909252908201526060016102b5565b3480156106d657600080fd5b5061030a6106e53660046128eb565b6113b7565b3480156106f657600080fd5b506102ab60075481565b34801561070c57600080fd5b50600454610408906001600160a01b031681565b34801561072c57600080fd5b5061030a61073b3660046124d7565b611433565b34801561074c57600080fd5b506102ab7f000000000000000000000000000000000000000000000000000000000000005a81565b34801561078057600080fd5b5061030a61078f3660046124d7565b61149b565b3480156107a057600080fd5b50600354610408906001600160a01b031681565b3480156107c057600080fd5b5061030a6107cf3660046127bd565b6114d8565b3480156107e057600080fd5b506102ab7f00000000000000000000000000000000000000000000000001aa535d3d0c000081565b34801561081457600080fd5b506102ab7f000000000000000000000000000000000000000000000000000000000000001481565b34801561084857600080fd5b5061085c610857366004612917565b611531565b604080516001600160a01b0390931683529015156020830152016102b5565b34801561088757600080fd5b506003546104b290600160e01b900460ff1681565b3480156108a857600080fd5b506102ab60065481565b3480156108be57600080fd5b5061030a6108cd3660046124d7565b6116f1565b3480156108de57600080fd5b5061030a6108ed366004612599565b611765565b6000336001600160a01b037f0000000000000000000000001d01b7a227dea7b88a971b379320fd0404ff8c08161461093d5760405163102bf07160e11b815260040160405180910390fd5b61094783856117db565b50630a85bd0160e11b949350505050565b610960611955565b61096a85856129b6565b34146109895760405163149f6c8560e21b815260040160405180910390fd5b6109988787878787878761199b565b50505050505050565b6109ab8133611c23565b50565b6003546000906109d49063ffffffff600160a01b8204811691600160c01b900416611c64565b905090565b6109e1611955565b610a0b817f00000000000000000000000000000000000000000000000001aa535d3d0c00006129b6565b3414610a2a5760405163149f6c8560e21b815260040160405180910390fd5b6109ab81611cc6565b600080600080610a4b858c8c8a8a8e8e600154611531565b9150915080610a635760006002935093505050610ab2565b6001600160a01b03821660009081526009602090815260408083208e518452909152902054610a92908b6129cd565b93508315610aa6575060019150610ab29050565b5060039150610ab29050565b97509795505050505050565b610ac6611ec6565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f965ccc841c73347febe94233ffa09c19890576155df1f4b3d0e88a025d96ca68906020015b60405180910390a150565b610b23611ec6565b600354600160e81b900460ff1615610b4e57604051633dd09b1960e11b815260040160405180910390fd5b8260028581548110610b6257610b626129e0565b9060005260206000209060030201600001819055508160028581548110610b8b57610b8b6129e0565b9060005260206000209060030201600101819055508060028581548110610bb457610bb46129e0565b600091825260209182902060026003909202010191909155604080518681529182018590528101839052606081018290527fcaaa6484ccddb731dd3c0f27a5239045bff2da9f1c8975abdd53cfc3b8e259359060800160405180910390a150505050565b610c20611ec6565b610c28611f26565b565b610c32611ec6565b600060405180604001604052806015815260200174536d61736876657273655072696d61727953616c6560581b815250905080604051602001610c7591906129f6565b6040516020818303038152906040528051906020012082604051602001610c9c91906129f6565b6040516020818303038152906040528051906020012003610ce9576003805460ff60e01b1963ffffffff4216600160c01b021664ffffffffff60c01b1990911617600160e01b1790555050565b60405163353f4c1760e21b815260040160405180910390fd5b5050565b610d0e611955565b6000610d3a837f00000000000000000000000000000000000000000000000001aa535d3d0c00006129b6565b905060005b8a51811015610dd057858582818110610d5a57610d5a6129e0565b9050602002810190610d6c9190612a25565b159050610dbe57888181518110610d8557610d856129e0565b6020026020010151888281518110610d9f57610d9f6129e0565b6020026020010151610db191906129b6565b610dbb9083612a6e565b91505b80610dc881612a81565b915050610d3f565b50803414610df15760405163149f6c8560e21b815260040160405180910390fd5b815115610e0257610e028233611c23565b8215610e1157610e1183611cc6565b60005b8a51811015610f0857858582818110610e2f57610e2f6129e0565b9050602002810190610e419190612a25565b159050610ef657610ef68b8281518110610e5d57610e5d6129e0565b60200260200101518b8381518110610e7757610e776129e0565b60200260200101518b8481518110610e9157610e916129e0565b60200260200101518b8581518110610eab57610eab6129e0565b60200260200101518b8681518110610ec557610ec56129e0565b60200260200101518b8b88818110610edf57610edf6129e0565b9050602002810190610ef19190612a25565b61199b565b80610f0081612a81565b915050610e14565b5050505050505050505050565b610f1d611ec6565b6003546001600160a01b0316610f4d57600380546001600160a01b0383166001600160a01b031990911617905550565b604051637b1616c160e11b815260040160405180910390fd5b610f6e611ec6565b610c286000611f78565b610f80611ec6565b600354600160e01b900460ff1615610fab5760405163f2f76b4560e01b815260040160405180910390fd5b6003805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b610fd9611955565b6000805b885181101561106e57838382818110610ff857610ff86129e0565b905060200281019061100a9190612a25565b15905061105c57868181518110611023576110236129e0565b602002602001015186828151811061103d5761103d6129e0565b602002602001015161104f91906129b6565b6110599083612a6e565b91505b8061106681612a81565b915050610fdd565b5080341461108f5760405163149f6c8560e21b815260040160405180910390fd5b60005b885181101561116f578383828181106110ad576110ad6129e0565b90506020028101906110bf9190612a25565b15905061115d5761115d8982815181106110db576110db6129e0565b60200260200101518983815181106110f5576110f56129e0565b602002602001015189848151811061110f5761110f6129e0565b6020026020010151898581518110611129576111296129e0565b6020026020010151898681518110611143576111436129e0565b6020026020010151898988818110610edf57610edf6129e0565b8061116781612a81565b915050611092565b505050505050505050565b611182611ec6565b600060405180604001604052806015815260200174536d61736876657273655072696d61727953616c6560581b8152509050806040516020016111c591906129f6565b60405160208183030381529060405280519060200120826040516020016111ec91906129f6565b6040516020818303038152906040528051906020012003610ce9576003805460ff60e81b1916600160e81b1790555050565b600080600061127560028581548110611239576112396129e0565b9060005260206000209060030201600001546002868154811061125e5761125e6129e0565b906000526020600020906003020160010154611c64565b60028581548110611288576112886129e0565b906000526020600020906003020160000154600286815481106112ad576112ad6129e0565b9060005260206000209060030201600101549250925092509193909250565b6112d4611ec6565b600354600160a01b900463ffffffff16158061133557506113187f000000000000000000000000000000000000000000000000000000000000005a620151806129b6565b6003546113329190600160a01b900463ffffffff16612a6e565b42105b61137c5760405162461bcd60e51b815260206004820152601360248201527214185d5cd94818dd5d1bd999881c185cdcd959606a1b60448201526064015b60405180910390fd5b610c28611fd1565b6002818154811061139457600080fd5b600091825260209091206003909102018054600182015460029092015490925083565b60055460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af115801561140a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142e9190612a9a565b505050565b61143b611ec6565b600354600160e81b900460ff161561146657604051633dd09b1960e11b815260040160405180910390fd5b60018190556040518181527f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90602001610b10565b6114a3611ec6565b60078190556040518181527f9003950727cc154c70d7d2b9006f66f051b4377067114521a1407940060d5c4890602001610b10565b6114e0611ec6565b600354600160e01b900460ff161561150b5760405163f2f76b4560e01b815260040160405180910390fd5b6003805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b87600080611542838b8b898961200e565b90506115848888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508892508591506120739050565b15156000036116de576004546001600160a01b0316156116de5760048054604051632bf5c6fb60e01b81526001600160a01b038e811693820193909352600160248201526000926060921690632bf5c6fb90604401600060405180830381865afa1580156115f6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261161e9190810190612acc565b508091505060018151111561164f5780600181518110611640576116406129e0565b6020026020010151915061165c565b50600092506116e4915050565b8c6001600160a01b0316826001600160a01b03161461164f57611682828d8d8b8b61200e565b92506116c48a8a808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508a92508791506120739050565b15156000036116da5750600092506116e4915050565b5092505b50600190505b9850989650505050505050565b6005546040516000916001600160a01b03169083908381818185875af1925050503d806000811461173e576040519150601f19603f3d011682016040523d82523d6000602084013e611743565b606091505b5050905080610d02576040516312171d8360e31b815260040160405180910390fd5b61176d611ec6565b6001600160a01b0381166117d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611373565b6109ab81611f78565b6002600754815481106117f0576117f06129e0565b906000526020600020906003020160000154421015611822576040516350afad3960e01b815260040160405180910390fd5b604051630852cd8d60e31b8152600481018390527f0000000000000000000000001d01b7a227dea7b88a971b379320fd0404ff8c086001600160a01b0316906342966c6890602401600060405180830381600087803b15801561188457600080fd5b505af1158015611898573d6000803e3d6000fd5b505060035460405163020da84160e61b8152600260048201526001600160a01b03858116602483015260006044830152909116925063836a10409150606401600060405180830381600087803b1580156118f157600080fd5b505af1158015611905573d6000803e3d6000fd5b50505050336001600160a01b03167f8488d41c001e1c678a782dc118f1d209200257f6b98b4ed8c427d859dd60cd0960026000600260405161194993929190612b87565b60405180910390a25050565b60005460ff1615610c285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401611373565b6000806119b0338a8a87878b8b600154611531565b9150915060006119c38a6000015161121e565b50909150600290508160048111156119dd576119dd61249f565b146119fb576040516305b88fa560e41b815260040160405180910390fd5b6007548a5103611a6957611a0e88612089565b611a695787600654600260075481548110611a2b57611a2b6129e0565b906000526020600020906003020160020154611a4791906129cd565b604051635372a49960e11b815260048101929092526024820152604401611373565b81611a8757604051631ff3747d60e21b815260040160405180910390fd5b6001600160a01b03831660009081526009602090815260408083208d5184529091529020548990611ab9908a90612a6e565b1115611b12576001600160a01b03831660009081526009602090815260408083208d5184529091529020548890611af0908b6129cd565b6040516308e186f360e21b815260048101929092526024820152604401611373565b6001600160a01b03831660009081526009602090815260408083208d518452909152812080548a9290611b46908490612a6e565b90915550506007548a5103611b6d578760066000828254611b679190612a6e565b90915550505b60035460405163020da84160e61b8152600481018a9052336024820152604481018890526001600160a01b039091169063836a104090606401600060405180830381600087803b158015611bc057600080fd5b505af1158015611bd4573d6000803e3d6000fd5b50508b516040513393507f8488d41c001e1c678a782dc118f1d209200257f6b98b4ed8c427d859dd60cd099250611c0f916001918d90612b87565b60405180910390a250505050505050505050565b60005b825181101561142e57611c52838281518110611c4457611c446129e0565b6020026020010151836117db565b80611c5c81612a81565b915050611c26565b6000824210158015611c765750814211155b15611c8357506002611cc0565b611c8d8284612a6e565b600003611c9c57506000611cc0565b81421115611cac57506003611cc0565b82421015611cbc57506001611cc0565b5060045b92915050565b6002611cd06109ae565b6004811115611ce157611ce161249f565b14611cff576040516316851fc760e11b815260040160405180910390fd5b611d0881612089565b611d255780600654600260075481548110611a2b57611a2b6129e0565b7f000000000000000000000000000000000000000000000000000000000000001415611dfb57336000908152600860205260409020547f0000000000000000000000000000000000000000000000000000000000000014611d868383612a6e565b1115611dd557604051634d8bba0960e11b815260048101839052602481018290527f00000000000000000000000000000000000000000000000000000000000000146044820152606401611373565b3360009081526008602052604081208054849290611df4908490612a6e565b9091555050505b8060066000828254611e0d9190612a6e565b909155505060035460405163020da84160e61b815260048101839052336024820152600060448201526001600160a01b039091169063836a104090606401600060405180830381600087803b158015611e6557600080fd5b505af1158015611e79573d6000803e3d6000fd5b50505050336001600160a01b03167f8488d41c001e1c678a782dc118f1d209200257f6b98b4ed8c427d859dd60cd0960008084604051611ebb93929190612b87565b60405180910390a250565b6000546001600160a01b03610100909104163314610c285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611373565b611f2e6120c8565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b611fd9611955565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5b3390565b60208481015194516040805160609890981b6bffffffffffffffffffffffff191688840152603488019690965260548701949094526074860192909252609485015260b4808501929092528251808503909201825260d4909301909152805191012090565b6000826120808584612111565b14949350505050565b60006002600754815481106120a0576120a06129e0565b906000526020600020906003020160020154600654836120c09190612a6e565b111592915050565b60005460ff16610c285760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401611373565b600081815b84518110156121565761214282868381518110612135576121356129e0565b602002602001015161215e565b91508061214e81612a81565b915050612116565b509392505050565b600081831061217a576000828152602084905260409020612189565b60008381526020839052604090205b9392505050565b6001600160a01b03811681146109ab57600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156121e3576121e36121a5565b604052919050565b60006001600160401b03831115612204576122046121a5565b612217601f8401601f19166020016121bb565b905082815283838301111561222b57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561225857600080fd5b843561226381612190565b9350602085013561227381612190565b92506040850135915060608501356001600160401b0381111561229557600080fd5b8501601f810187136122a657600080fd5b6122b5878235602084016121eb565b91505092959194509250565b6000604082840312156122d357600080fd5b604051604081018181106001600160401b03821117156122f5576122f56121a5565b604052823581526020928301359281019290925250919050565b60008083601f84011261232157600080fd5b5081356001600160401b0381111561233857600080fd5b6020830191508360208260051b850101111561235357600080fd5b9250929050565b600080600080600080600060e0888a03121561237557600080fd5b61237f89896122c1565b965060408801359550606088013594506080880135935060a0880135925060c08801356001600160401b038111156123b657600080fd5b6123c28a828b0161230f565b989b979a50959850939692959293505050565b60006001600160401b038211156123ee576123ee6121a5565b5060051b60200190565b600082601f83011261240957600080fd5b8135602061241e612419836123d5565b6121bb565b82815260059290921b8401810191818101908684111561243d57600080fd5b8286015b848110156124585780358352918301918301612441565b509695505050505050565b60006020828403121561247557600080fd5b81356001600160401b0381111561248b57600080fd5b612497848285016123f8565b949350505050565b634e487b7160e01b600052602160045260246000fd5b600581106124c5576124c561249f565b9052565b60208101611cc082846124b5565b6000602082840312156124e957600080fd5b5035919050565b600080600080600080600060e0888a03121561250b57600080fd5b61251589896122c1565b965060408801359550606088013594506080880135935060a08801356001600160401b0381111561254557600080fd5b6125518a828b0161230f565b90945092505060c088013561256581612190565b8091505092959891949750929550565b828152604081016004831061258c5761258c61249f565b8260208301529392505050565b6000602082840312156125ab57600080fd5b813561218981612190565b600080600080608085870312156125cc57600080fd5b5050823594602084013594506040840135936060013592509050565b6000602082840312156125fa57600080fd5b81356001600160401b0381111561261057600080fd5b8201601f8101841361262157600080fd5b612497848235602084016121eb565b600082601f83011261264157600080fd5b81356020612651612419836123d5565b82815260069290921b8401810191818101908684111561267057600080fd5b8286015b848110156124585761268688826122c1565b835291830191604001612674565b60008060008060008060008060006101008a8c0312156126b357600080fd5b89356001600160401b03808211156126ca57600080fd5b6126d68d838e01612630565b9a5060208c01359150808211156126ec57600080fd5b6126f88d838e016123f8565b995060408c013591508082111561270e57600080fd5b61271a8d838e016123f8565b985060608c013591508082111561273057600080fd5b61273c8d838e016123f8565b975060808c013591508082111561275257600080fd5b61275e8d838e016123f8565b965060a08c013591508082111561277457600080fd5b6127808d838e0161230f565b909650945060c08c0135935060e08c01359150808211156127a057600080fd5b506127ad8c828d016123f8565b9150509295985092959850929598565b6000602082840312156127cf57600080fd5b813563ffffffff8116811461218957600080fd5b600080600080600080600060c0888a0312156127fe57600080fd5b87356001600160401b038082111561281557600080fd5b6128218b838c01612630565b985060208a013591508082111561283757600080fd5b6128438b838c016123f8565b975060408a013591508082111561285957600080fd5b6128658b838c016123f8565b965060608a013591508082111561287b57600080fd5b6128878b838c016123f8565b955060808a013591508082111561289d57600080fd5b6128a98b838c016123f8565b945060a08a01359150808211156128bf57600080fd5b506123c28a828b0161230f565b606081016128da82866124b5565b602082019390935260400152919050565b600080604083850312156128fe57600080fd5b823561290981612190565b946020939093013593505050565b600080600080600080600080610100898b03121561293457600080fd5b883561293f81612190565b975061294e8a60208b016122c1565b96506060890135955060808901356001600160401b0381111561297057600080fd5b61297c8b828c0161230f565b999c989b50969996989760a08801359760c0810135975060e0013595509350505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417611cc057611cc06129a0565b81810381811115611cc057611cc06129a0565b634e487b7160e01b600052603260045260246000fd5b6000825160005b81811015612a1757602081860181015185830152016129fd565b506000920191825250919050565b6000808335601e19843603018112612a3c57600080fd5b8301803591506001600160401b03821115612a5657600080fd5b6020019150600581901b360382131561235357600080fd5b80820180821115611cc057611cc06129a0565b600060018201612a9357612a936129a0565b5060010190565b600060208284031215612aac57600080fd5b8151801515811461218957600080fd5b8051612ac781612190565b919050565b60008060408385031215612adf57600080fd5b82516001600160401b03811115612af557600080fd5b8301601f81018513612b0657600080fd5b80516020612b16612419836123d5565b82815260059290921b83018101918181019088841115612b3557600080fd5b938201935b83851015612b5c578451612b4d81612190565b82529382019390820190612b3a565b9550612b6b9050868201612abc565b93505050509250929050565b600381106124c5576124c561249f565b606081016128da8286612b7756fea26469706673582212206bb411a42a07c76dd1c436c140bf0f1d95891189822d5b37eaa3afbcd23613eb64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000000000000000000000000000001aa535d3d0c000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000063c2fbb000000000000000000000000000000000000000000000000000000000ffffffff12851f5758a818c2ab862acf1c0ba9862e721d333d942da1933dba2af93254140000000000000000000000000000000000000af8fe6e4de40f4804c90fa8ea8f000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000007390edbe8979cfbb1d50a6a5707d93aafe49e9dc0000000000000000000000001d01b7a227dea7b88a971b379320fd0404ff8c08000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000063c1aa300000000000000000000000000000000000000000000000000000000063c2fbb00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000063c1aa3000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000000001360000000000000000000000000000000000000000000000000000000063c1aa3000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000000000be
-----Decoded View---------------
Arg [0] : supply_ (uint256): 7500
Arg [1] : publicMintConfig_ (tuple):
Arg [1] : price (uint256): 120000000000000000
Arg [2] : maxPerAddress (uint256): 20
Arg [3] : start (uint32): 1673722800
Arg [4] : end (uint32): 4294967295
Arg [2] : listMerkleRoot_ (bytes32): 0x12851f5758a818c2ab862acf1c0ba9862e721d333d942da1933dba2af9325414
Arg [3] : epsDeligateRegister_ (address): 0x0000000000000aF8FE6E4DE40F4804C90fA8Ea8F
Arg [4] : pauseCutOffInDays_ (uint256): 90
Arg [5] : beneficiary_ (address): 0x7390EDbe8979cFbb1D50a6a5707d93aafE49E9dC
Arg [6] : mintPass_ (address): 0x1d01B7A227dEa7B88a971b379320fD0404fF8C08
Arg [7] : subListParams (tuple[]):
Arg [1] : start (uint256): 1673636400
Arg [2] : end (uint256): 1673722800
Arg [3] : phaseMaxSupply (uint256): 4000
Arg [1] : start (uint256): 1673636400
Arg [2] : end (uint256): 4294967295
Arg [3] : phaseMaxSupply (uint256): 310
Arg [1] : start (uint256): 1673636400
Arg [2] : end (uint256): 4294967295
Arg [3] : phaseMaxSupply (uint256): 190
-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001d4c
Arg [1] : 00000000000000000000000000000000000000000000000001aa535d3d0c0000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 0000000000000000000000000000000000000000000000000000000063c2fbb0
Arg [4] : 00000000000000000000000000000000000000000000000000000000ffffffff
Arg [5] : 12851f5758a818c2ab862acf1c0ba9862e721d333d942da1933dba2af9325414
Arg [6] : 0000000000000000000000000000000000000af8fe6e4de40f4804c90fa8ea8f
Arg [7] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [8] : 0000000000000000000000007390edbe8979cfbb1d50a6a5707d93aafe49e9dc
Arg [9] : 0000000000000000000000001d01b7a227dea7b88a971b379320fd0404ff8c08
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 0000000000000000000000000000000000000000000000000000000063c1aa30
Arg [13] : 0000000000000000000000000000000000000000000000000000000063c2fbb0
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000fa0
Arg [15] : 0000000000000000000000000000000000000000000000000000000063c1aa30
Arg [16] : 00000000000000000000000000000000000000000000000000000000ffffffff
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000136
Arg [18] : 0000000000000000000000000000000000000000000000000000000063c1aa30
Arg [19] : 00000000000000000000000000000000000000000000000000000000ffffffff
Arg [20] : 00000000000000000000000000000000000000000000000000000000000000be
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.