Source Code
Token Contract
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,949 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24023694 | 24 hrs ago | IN | 0 ETH | 0.00009387 | ||||
| Set Approval For... | 24011762 | 2 days ago | IN | 0 ETH | 0.00009455 | ||||
| Set Approval For... | 23992910 | 5 days ago | IN | 0 ETH | 0.0000028 | ||||
| Set Approval For... | 23462279 | 79 days ago | IN | 0 ETH | 0.00001061 | ||||
| Set Approval For... | 23204981 | 115 days ago | IN | 0 ETH | 0.00016864 | ||||
| Safe Transfer Fr... | 23147808 | 123 days ago | IN | 0 ETH | 0.00016382 | ||||
| Safe Transfer Fr... | 23147801 | 123 days ago | IN | 0 ETH | 0.00011522 | ||||
| Safe Transfer Fr... | 23147797 | 123 days ago | IN | 0 ETH | 0.00015836 | ||||
| Safe Transfer Fr... | 23147791 | 123 days ago | IN | 0 ETH | 0.00012371 | ||||
| Safe Transfer Fr... | 23147766 | 123 days ago | IN | 0 ETH | 0.00011324 | ||||
| Safe Transfer Fr... | 23147755 | 123 days ago | IN | 0 ETH | 0.00019621 | ||||
| Safe Transfer Fr... | 23147750 | 123 days ago | IN | 0 ETH | 0.00019276 | ||||
| Set Approval For... | 23095268 | 130 days ago | IN | 0 ETH | 0.00001958 | ||||
| Safe Transfer Fr... | 23021697 | 141 days ago | IN | 0 ETH | 0.0000155 | ||||
| Set Approval For... | 22907505 | 157 days ago | IN | 0 ETH | 0.00011638 | ||||
| Set Approval For... | 22804357 | 171 days ago | IN | 0 ETH | 0.00013544 | ||||
| Set Approval For... | 22726463 | 182 days ago | IN | 0 ETH | 0.0000979 | ||||
| Set Approval For... | 22428294 | 224 days ago | IN | 0 ETH | 0.0000406 | ||||
| Safe Transfer Fr... | 22289481 | 243 days ago | IN | 0 ETH | 0.00006234 | ||||
| Safe Transfer Fr... | 22289386 | 243 days ago | IN | 0 ETH | 0.00014448 | ||||
| Set Approval For... | 22288899 | 243 days ago | IN | 0 ETH | 0.00004053 | ||||
| Set Approval For... | 21924665 | 294 days ago | IN | 0 ETH | 0.00020365 | ||||
| Set Approval For... | 21755952 | 318 days ago | IN | 0 ETH | 0.00008702 | ||||
| Set Approval For... | 21681864 | 328 days ago | IN | 0 ETH | 0.00036412 | ||||
| Set Approval For... | 21450382 | 360 days ago | IN | 0 ETH | 0.00035032 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC1155Token
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract ERC1155Token is ERC1155, Ownable {
string[] public names;
uint256[] public ids;
string public baseMetadataURI;
string public name;
uint256 public mintFee = 0.00 ether;
uint256 public stage;
uint256 public maxPublicSale = 10;
bool public publicMintActive = false;
mapping(address => uint256[5]) public publicMintLimit;
mapping(address => uint256[11]) public mintLimit;
mapping(string => uint256) public nameToId;
mapping(uint256 => string) public idToName;
mapping(uint256 => uint256) public totalSupply;
constructor(
string memory _contractName,
string memory _uri,
string[] memory _names,
uint256[] memory _ids
) ERC1155(_uri) {
names = _names;
ids = _ids;
setURI(_uri);
createMapping();
name = _contractName;
stage = 0;
}
function createMapping() private {
for (uint256 id = 0; id < ids.length; id++) {
nameToId[names[id]] = ids[id];
idToName[ids[id]] = names[id];
totalSupply[ids[id]] = 999;
}
}
function uri(uint256 _tokenid) public view override returns (string memory) {
return string(abi.encodePacked(baseMetadataURI, Strings.toString(_tokenid), ".json"));
}
function getStage() public view returns (uint256) {
return stage;
}
function setMaxPublicSale(uint256 _max) public onlyOwner {
maxPublicSale = _max;
}
function getCurrentTokenId() public view returns (uint256) {
uint256 tokenId;
if (stage == 1 || stage == 2) {
tokenId = 1;
} else if (stage == 3 || stage == 4) {
tokenId = 2;
} else if (stage == 5 || stage == 6) {
tokenId = 3;
} else if (stage == 7 || stage == 8) {
tokenId = 4;
} else if (stage == 9 || stage == 10) {
tokenId = 5;
}
return tokenId;
}
function setWhitelistMintLimit(address[] memory _addrs, uint256 _limit, uint256 _whitelistNumber) public onlyOwner {
require(_whitelistNumber != 0, "Number must be above 0");
for (uint i = 0; i < _addrs.length; i++) {
mintLimit[_addrs[i]][_whitelistNumber] = _limit;
}
}
function setStage(uint256 _stage) public onlyOwner {
require(_stage >= 0 && _stage <= 10, "Invalid stage number");
stage = _stage;
}
function setURI(string memory newuri) public onlyOwner {
baseMetadataURI = newuri;
_setURI(newuri);
}
function setFee(uint256 _fee) public onlyOwner {
mintFee = _fee;
}
function togglePublicMint() public onlyOwner {
publicMintActive = !publicMintActive;
}
function publicMint(uint256 amount) public payable returns (uint256) {
require(stage != 0, "Sale not active");
require(publicMintActive, "Public mint is not active");
uint256 tokenId = getCurrentTokenId();
require(
amount + publicMintLimit[msg.sender][tokenId] <= maxPublicSale,
"Public mint limit reached for address"
);
require(totalSupply[tokenId] >= amount, "Total supply limit reached");
require(mintFee == msg.value, "Incorrect ETH value sent");
_mint(msg.sender, tokenId, amount, "");
totalSupply[tokenId] -= amount;
publicMintLimit[msg.sender][tokenId] += amount;
return tokenId;
}
function mint(uint256 amount) public payable returns (uint256) {
require(stage != 0, "Sale not active");
require(mintLimit[msg.sender][stage] != 0, "Not on whitelist");
require(amount <= mintLimit[msg.sender][stage], "Limit reached");
require(mintFee * amount == msg.value, "Incorrect ETH value sent");
uint256 tokenId = getCurrentTokenId();
require(totalSupply[tokenId] >= amount, "Total supply limit reached");
_mint(msg.sender, tokenId, amount, "");
mintLimit[msg.sender][stage] -= amount;
totalSupply[tokenId] -= amount;
return tokenId;
}
function withdrawEarnings() public onlyOwner {
payable(msg.sender).transfer(address(this).balance);
}
}// 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.8.0) (token/ERC1155/ERC1155.sol)
pragma solidity ^0.8.0;
import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
using Address for address;
// Mapping from token ID to account balances
mapping(uint256 => mapping(address => uint256)) private _balances;
// Mapping from account to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/**
* @dev See {_setURI}.
*/
constructor(string memory uri_) {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC1155).interfaceId ||
interfaceId == type(IERC1155MetadataURI).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) public view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: address zero is not a valid owner");
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
public
view
virtual
override
returns (uint256[] memory)
{
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner or approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner or approved"
);
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
emit TransferSingle(operator, from, to, id, amount);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
}
emit TransferBatch(operator, from, to, ids, amounts);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
_balances[id][to] += amount;
emit TransferSingle(operator, address(0), to, id, amount);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; i++) {
_balances[ids[i]][to] += amounts[i];
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `from`
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `from` must have at least `amount` tokens of token type `id`.
*/
function _burn(
address from,
uint256 id,
uint256 amount
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
emit TransferSingle(operator, from, address(0), id, amount);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(
address from,
uint256[] memory ids,
uint256[] memory amounts
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
for (uint256 i = 0; i < ids.length; i++) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
}
emit TransferBatch(operator, from, address(0), ids, amounts);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @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, "ERC1155: setting approval status for self");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `ids` and `amounts` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
if (response != IERC1155Receiver.onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non-ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
bytes4 response
) {
if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non-ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)
pragma solidity ^0.8.0;
import "../IERC1155.sol";
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURI is IERC1155 {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _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) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _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);
}
}{
"metadata": {
"bytecodeHash": "none"
},
"optimizer": {
"enabled": true,
"runs": 800
},
"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":"string","name":"_contractName","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"idToName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ids","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"nameToId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"names","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"publicMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stage","type":"uint256"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"uint256","name":"_whitelistNumber","type":"uint256"}],"name":"setWhitelistMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupply","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":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526000600855600a8055600b805460ff191690553480156200002457600080fd5b50604051620032173803806200321783398101604081905262000047916200065b565b826200005381620000c6565b506200005f33620000df565b8151620000749060049060208501906200032c565b5080516200008a90600590602084019062000390565b50620000968362000131565b620000a06200015f565b8351620000b5906007906020870190620003dc565b5050600060095550620008fe915050565b8051620000db906002906020840190620003dc565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013b620002cb565b805162000150906006906020840190620003dc565b506200015c81620000c6565b50565b60005b6005548110156200015c57600581815481106200018f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154600e60048381548110620001be57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051620001d7919062000787565b9081526040519081900360200190205560048054829081106200020a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001600f6000600584815481106200023a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001548152602001908152602001600020908054620002619062000883565b6200026e92919062000458565b506103e760106000600584815481106200029857634e487b7160e01b600052603260045260246000fd5b90600052602060002001548152602001908152602001600020819055508080620002c290620008c0565b91505062000162565b6003546001600160a01b031633146200032a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280548282559060005260206000209081019282156200037e579160200282015b828111156200037e57825180516200036d918491602090910190620003dc565b50916020019190600101906200034d565b506200038c929150620004dc565b5090565b828054828255906000526020600020908101928215620003ce579160200282015b82811115620003ce578251825591602001919060010190620003b1565b506200038c929150620004fd565b828054620003ea9062000883565b90600052602060002090601f0160209004810192826200040e5760008555620003ce565b82601f106200042957805160ff1916838001178555620003ce565b82800160010185558215620003ce5791820182811115620003ce578251825591602001919060010190620003b1565b828054620004669062000883565b90600052602060002090601f0160209004810192826200048a5760008555620003ce565b82601f106200049d5780548555620003ce565b82800160010185558215620003ce57600052602060002091601f016020900482015b82811115620003ce578254825591600101919060010190620004bf565b808211156200038c576000620004f3828262000514565b50600101620004dc565b5b808211156200038c5760008155600101620004fe565b508054620005229062000883565b6000825580601f1062000533575050565b601f0160209004906000526020600020908101906200015c9190620004fd565b600082601f83011262000564578081fd5b815160206200057d62000577836200085d565b6200082a565b80838252828201915082860187848660051b89010111156200059d578586fd5b855b85811015620005bd578151845292840192908401906001016200059f565b5090979650505050505050565b600082601f830112620005db578081fd5b81516001600160401b03811115620005f757620005f7620008e8565b60206200060d601f8301601f191682016200082a565b828152858284870101111562000621578384fd5b835b838110156200064057858101830151828201840152820162000623565b838111156200065157848385840101525b5095945050505050565b6000806000806080858703121562000671578384fd5b84516001600160401b038082111562000688578586fd5b6200069688838901620005ca565b9550602091508187015181811115620006ad578586fd5b620006bb89828a01620005ca565b955050604087015181811115620006d0578485fd5b8701601f81018913620006e1578485fd5b8051620006f262000577826200085d565b8082825285820191508584018c878560051b870101111562000712578889fd5b885b8481101562000750578151878111156200072c578a8bfd5b6200073c8f8a838a0101620005ca565b855250928701929087019060010162000714565b505060608b01519097509450505050808211156200076c578283fd5b506200077b8782880162000553565b91505092959194509250565b600080835482600182811c915080831680620007a457607f831692505b6020808410821415620007c557634e487b7160e01b87526022600452602487fd5b818015620007dc5760018114620007ee576200081c565b60ff198616895284890196506200081c565b60008a815260209020885b86811015620008145781548b820152908501908301620007f9565b505084890196505b509498975050505050505050565b604051601f8201601f191681016001600160401b0381118282101715620008555762000855620008e8565b604052919050565b60006001600160401b03821115620008795762000879620008e8565b5060051b60200190565b600181811c908216806200089857607f821691505b60208210811415620008ba57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620008e157634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fd5b612909806200090e6000396000f3fe6080604052600436106102335760003560e01c806369fe0e2d11610138578063bd85b039116100b0578063f242432a1161007f578063f6d8f2cb11610064578063f6d8f2cb14610635578063fac333ac1461066d578063fcaa76641461068d57600080fd5b8063f242432a146105f5578063f2fde38b1461061557600080fd5b8063bd85b03914610553578063c040e6b814610580578063c31d3e8e14610596578063e985e9c5146105ac57600080fd5b80638da5cb5b11610107578063a22cb465116100ec578063a22cb46514610504578063b67c25a314610524578063b73c6ce91461053e57600080fd5b80638da5cb5b146104c9578063a0712d68146104f157600080fd5b806369fe0e2d14610454578063715018a6146104745780637bf887a014610489578063805e0b20146104a957600080fd5b80632eb2c2d6116101cb5780634622ab031161019a5780634e1273f41161017f5780634e1273f4146103fd578063561892361461042a5780635b2bd79e1461043f57600080fd5b80634622ab03146103bd57806348a875a5146103dd57600080fd5b80632eb2c2d614610348578063364410b3146103685780633eb1d777146103885780634047638d146103a857600080fd5b80630bf3a698116102075780630bf3a698146102df5780630e89341c146102ff57806313966db51461031f5780632db115441461033557600080fd5b8062fdd58e1461023857806301ffc9a71461026b57806302fe53051461029b57806306fdde03146102bd575b600080fd5b34801561024457600080fd5b50610258610253366004612343565b6106a2565b6040519081526020015b60405180910390f35b34801561027757600080fd5b5061028b610286366004612419565b61074b565b6040519015158152602001610262565b3480156102a757600080fd5b506102bb6102b6366004612451565b61079d565b005b3480156102c957600080fd5b506102d26107c5565b60405161026291906126e4565b3480156102eb57600080fd5b506102586102fa366004612343565b610853565b34801561030b57600080fd5b506102d261031a36600461249f565b610878565b34801561032b57600080fd5b5061025860085481565b61025861034336600461249f565b6108ac565b34801561035457600080fd5b506102bb610363366004612200565b610b25565b34801561037457600080fd5b506102d261038336600461249f565b610bb8565b34801561039457600080fd5b506102bb6103a336600461249f565b610bd1565b3480156103b457600080fd5b506102bb610c2f565b3480156103c957600080fd5b506102d26103d836600461249f565b610c4b565b3480156103e957600080fd5b506102586103f8366004612343565b610c76565b34801561040957600080fd5b5061041d61041836600461236c565b610c92565b60405161026291906126ac565b34801561043657600080fd5b50610258610e08565b34801561044b57600080fd5b506102d2610eac565b34801561046057600080fd5b506102bb61046f36600461249f565b610eb9565b34801561048057600080fd5b506102bb610ec6565b34801561049557600080fd5b506102bb6104a43660046123cd565b610eda565b3480156104b557600080fd5b506102bb6104c436600461249f565b610fc1565b3480156104d557600080fd5b506003546040516001600160a01b039091168152602001610262565b6102586104ff36600461249f565b610fce565b34801561051057600080fd5b506102bb61051f366004612309565b61125c565b34801561053057600080fd5b50600b5461028b9060ff1681565b34801561054a57600080fd5b506102bb61126b565b34801561055f57600080fd5b5061025861056e36600461249f565b60106020526000908152604090205481565b34801561058c57600080fd5b5061025860095481565b3480156105a257600080fd5b50610258600a5481565b3480156105b857600080fd5b5061028b6105c73660046121ce565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561060157600080fd5b506102bb6106103660046122a6565b61129f565b34801561062157600080fd5b506102bb6106303660046121b4565b61132b565b34801561064157600080fd5b50610258610650366004612451565b8051602081830181018051600e8252928201919093012091525481565b34801561067957600080fd5b5061025861068836600461249f565b6113b8565b34801561069957600080fd5b50600954610258565b60006001600160a01b0383166107255760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201527f616c6964206f776e65720000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061077c57506001600160e01b031982166303a24d0760e21b145b8061079757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6107a56113d9565b80516107b8906006906020840190611f9e565b506107c281611433565b50565b600780546107d290612795565b80601f01602080910402602001604051908101604052809291908181526020018280546107fe90612795565b801561084b5780601f106108205761010080835404028352916020019161084b565b820191906000526020600020905b81548152906001019060200180831161082e57829003601f168201915b505050505081565b600d60205281600052604060002081600b811061086f57600080fd5b01549150829050565b6060600661088583611446565b604051602001610896929190612539565b6040516020818303038152906040529050919050565b6000600954600014156108f35760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161071c565b600b5460ff166109455760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f742061637469766500000000000000604482015260640161071c565b600061094f610e08565b600a54336000908152600c6020526040902091925090826005811061098457634e487b7160e01b600052603260045260246000fd5b0154610990908561271b565b11156109ec5760405162461bcd60e51b815260206004820152602560248201527f5075626c6963206d696e74206c696d6974207265616368656420666f72206164604482015264647265737360d81b606482015260840161071c565b600081815260106020526040902054831115610a4a5760405162461bcd60e51b815260206004820152601a60248201527f546f74616c20737570706c79206c696d69742072656163686564000000000000604482015260640161071c565b3460085414610a9b5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e740000000000000000604482015260640161071c565b610ab6338285604051806020016040528060008152506114f6565b60008181526010602052604081208054859290610ad4908490612752565b9091555050336000908152600c6020526040902083908260058110610b0957634e487b7160e01b600052603260045260246000fd5b016000828254610b19919061271b565b90915550909392505050565b6001600160a01b038516331480610b415750610b4185336105c7565b610ba45760405162461bcd60e51b815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526d195c881bdc88185c1c1c9bdd995960921b606482015260840161071c565b610bb1858585858561160a565b5050505050565b600f60205260009081526040902080546107d290612795565b610bd96113d9565b600a811115610c2a5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964207374616765206e756d626572000000000000000000000000604482015260640161071c565b600955565b610c376113d9565b600b805460ff19811660ff90911615179055565b60048181548110610c5b57600080fd5b9060005260206000200160009150905080546107d290612795565b600c602052816000526040600020816005811061086f57600080fd5b60608151835114610d0b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d617463680000000000000000000000000000000000000000000000606482015260840161071c565b6000835167ffffffffffffffff811115610d3557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d5e578160200160208202803683370190505b50905060005b8451811015610e0057610dc5858281518110610d9057634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610db857634e487b7160e01b600052603260045260246000fd5b60200260200101516106a2565b828281518110610de557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610df9816127fd565b9050610d64565b509392505050565b60008060095460011480610e1e57506009546002145b15610e2b57506001919050565b60095460031480610e3e57506009546004145b15610e4b57506002919050565b60095460051480610e5e57506009546006145b15610e6b57506003919050565b60095460071480610e7e57506009546008145b15610e8b57506004919050565b60095460091480610e9e5750600954600a145b15610ea7575060055b919050565b600680546107d290612795565b610ec16113d9565b600855565b610ece6113d9565b610ed86000611899565b565b610ee26113d9565b80610f2f5760405162461bcd60e51b815260206004820152601660248201527f4e756d626572206d7573742062652061626f7665203000000000000000000000604482015260640161071c565b60005b8351811015610fbb5782600d6000868481518110610f6057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002083600b8110610fa757634e487b7160e01b600052603260045260246000fd5b015580610fb3816127fd565b915050610f32565b50505050565b610fc96113d9565b600a55565b6000600954600014156110155760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161071c565b336000908152600d60205260409020600954600b811061104557634e487b7160e01b600052603260045260246000fd5b01546110935760405162461bcd60e51b815260206004820152601060248201527f4e6f74206f6e2077686974656c69737400000000000000000000000000000000604482015260640161071c565b336000908152600d60205260409020600954600b81106110c357634e487b7160e01b600052603260045260246000fd5b01548211156111145760405162461bcd60e51b815260206004820152600d60248201527f4c696d6974207265616368656400000000000000000000000000000000000000604482015260640161071c565b34826008546111239190612733565b146111705760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e740000000000000000604482015260640161071c565b600061117a610e08565b6000818152601060205260409020549091508311156111db5760405162461bcd60e51b815260206004820152601a60248201527f546f74616c20737570706c79206c696d69742072656163686564000000000000604482015260640161071c565b6111f6338285604051806020016040528060008152506114f6565b336000908152600d60205260409020600954849190600b811061122957634e487b7160e01b600052603260045260246000fd5b0160008282546112399190612752565b909155505060008181526010602052604081208054859290610b19908490612752565b611267338383611903565b5050565b6112736113d9565b60405133904780156108fc02916000818181858888f193505050501580156107c2573d6000803e3d6000fd5b6001600160a01b0385163314806112bb57506112bb85336105c7565b61131e5760405162461bcd60e51b815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526d195c881bdc88185c1c1c9bdd995960921b606482015260840161071c565b610bb185858585856119f8565b6113336113d9565b6001600160a01b0381166113af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161071c565b6107c281611899565b600581815481106113c857600080fd5b600091825260209091200154905081565b6003546001600160a01b03163314610ed85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071c565b8051611267906002906020840190611f9e565b6060600061145383611ba3565b600101905060008167ffffffffffffffff81111561148157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114ab576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846114f157610e00565b6114b5565b6001600160a01b0384166115565760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161071c565b33600061156285611c85565b9050600061156f85611c85565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906115a190849061271b565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461160183600089898989611cde565b50505050505050565b81518351146116815760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b0384166116e55760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071c565b3360005b845181101561182b57600085828151811061171457634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061174057634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156117d35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b606482015260840161071c565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061181090849061271b565b9250508190555050505080611824906127fd565b90506116e9565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161187b9291906126bf565b60405180910390a4611891818787878787611e93565b505050505050565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561198b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c660000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611a5c5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071c565b336000611a6885611c85565b90506000611a7585611c85565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015611afb5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b606482015260840161071c565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611b3890849061271b565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b98848a8a8a8a8a611cde565b505050505050505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611bec577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611c18576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c3657662386f26fc10000830492506010015b6305f5e1008310611c4e576305f5e100830492506008015b6127108310611c6257612710830492506004015b60648310611c74576064830492506002015b600a83106107975760010192915050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ccd57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b156118915760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d229089908990889088908890600401612669565b602060405180830381600087803b158015611d3c57600080fd5b505af1925050508015611d6c575060408051601f3d908101601f19168201909252611d6991810190612435565b60015b611e2257611d78612844565b806308c379a01415611db25750611d8d61285c565b80611d985750611db4565b8060405162461bcd60e51b815260040161071c91906126e4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840161071c565b6001600160e01b0319811663f23a6e6160e01b146116015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840161071c565b6001600160a01b0384163b156118915760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611ed7908990899088908890889060040161260b565b602060405180830381600087803b158015611ef157600080fd5b505af1925050508015611f21575060408051601f3d908101601f19168201909252611f1e91810190612435565b60015b611f2d57611d78612844565b6001600160e01b0319811663bc197c8160e01b146116015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840161071c565b828054611faa90612795565b90600052602060002090601f016020900481019282611fcc5760008555612012565b82601f10611fe557805160ff1916838001178555612012565b82800160010185558215612012579182015b82811115612012578251825591602001919060010190611ff7565b5061201e929150612022565b5090565b5b8082111561201e5760008155600101612023565b600067ffffffffffffffff8311156120515761205161282e565b604051612068601f8501601f1916602001826127d0565b80915083815284848401111561207d57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114610ea757600080fd5b600082601f8301126120bc578081fd5b813560206120c9826126f7565b6040516120d682826127d0565b8381528281019150858301600585901b870184018810156120f5578586fd5b855b8581101561211a5761210882612095565b845292840192908401906001016120f7565b5090979650505050505050565b600082601f830112612137578081fd5b81356020612144826126f7565b60405161215182826127d0565b8381528281019150858301600585901b87018401881015612170578586fd5b855b8581101561211a57813584529284019290840190600101612172565b600082601f83011261219e578081fd5b6121ad83833560208501612037565b9392505050565b6000602082840312156121c5578081fd5b6121ad82612095565b600080604083850312156121e0578081fd5b6121e983612095565b91506121f760208401612095565b90509250929050565b600080600080600060a08688031215612217578081fd5b61222086612095565b945061222e60208701612095565b9350604086013567ffffffffffffffff8082111561224a578283fd5b61225689838a01612127565b9450606088013591508082111561226b578283fd5b61227789838a01612127565b9350608088013591508082111561228c578283fd5b506122998882890161218e565b9150509295509295909350565b600080600080600060a086880312156122bd578081fd5b6122c686612095565b94506122d460208701612095565b93506040860135925060608601359150608086013567ffffffffffffffff8111156122fd578182fd5b6122998882890161218e565b6000806040838503121561231b578182fd5b61232483612095565b915060208301358015158114612338578182fd5b809150509250929050565b60008060408385031215612355578182fd5b61235e83612095565b946020939093013593505050565b6000806040838503121561237e578182fd5b823567ffffffffffffffff80821115612395578384fd5b6123a1868387016120ac565b935060208501359150808211156123b6578283fd5b506123c385828601612127565b9150509250929050565b6000806000606084860312156123e1578283fd5b833567ffffffffffffffff8111156123f7578384fd5b612403868287016120ac565b9660208601359650604090950135949350505050565b60006020828403121561242a578081fd5b81356121ad816128e6565b600060208284031215612446578081fd5b81516121ad816128e6565b600060208284031215612462578081fd5b813567ffffffffffffffff811115612478578182fd5b8201601f81018413612488578182fd5b61249784823560208401612037565b949350505050565b6000602082840312156124b0578081fd5b5035919050565b6000815180845260208085019450808401835b838110156124e6578151875295820195908201906001016124ca565b509495945050505050565b60008151808452612509816020860160208601612769565b601f01601f19169290920160200192915050565b6000815161252f818560208601612769565b9290920192915050565b600080845482600182811c91508083168061255557607f831692505b602080841082141561257557634e487b7160e01b87526022600452602487fd5b818015612589576001811461259a576125c6565b60ff198616895284890196506125c6565b60008b815260209020885b868110156125be5781548b8201529085019083016125a5565b505084890196505b5050505050506126026125d9828661251d565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261263760a08301866124b7565b828103606084015261264981866124b7565b9050828103608084015261265d81856124f1565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526126a160a08301846124f1565b979650505050505050565b6020815260006121ad60208301846124b7565b6040815260006126d260408301856124b7565b828103602084015261260281856124b7565b6020815260006121ad60208301846124f1565b600067ffffffffffffffff8211156127115761271161282e565b5060051b60200190565b6000821982111561272e5761272e612818565b500190565b600081600019048311821515161561274d5761274d612818565b500290565b60008282101561276457612764612818565b500390565b60005b8381101561278457818101518382015260200161276c565b83811115610fbb5750506000910152565b600181811c908216806127a957607f821691505b602082108114156127ca57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156127f6576127f661282e565b6040525050565b600060001982141561281157612811612818565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561285957600481823e5160e01c5b90565b600060443d101561286a5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561289a57505050505090565b82850191508151818111156128b25750505050505090565b843d87010160208285010111156128cc5750505050505090565b6128db602082860101876127d0565b509095945050505050565b6001600160e01b0319811681146107c257600080fdfea164736f6c6343000804000a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000d427269636b744f726967696e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d58393374427a3478664b7131755670774e536a6761697650354539596144524d616d376a6e31714e754d79370000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000c427269636b746f50756e6b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000742656c6769756d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5375706572436f6d7075746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008546865466f726765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e427261696e416c676f726974686d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005
Deployed Bytecode
0x6080604052600436106102335760003560e01c806369fe0e2d11610138578063bd85b039116100b0578063f242432a1161007f578063f6d8f2cb11610064578063f6d8f2cb14610635578063fac333ac1461066d578063fcaa76641461068d57600080fd5b8063f242432a146105f5578063f2fde38b1461061557600080fd5b8063bd85b03914610553578063c040e6b814610580578063c31d3e8e14610596578063e985e9c5146105ac57600080fd5b80638da5cb5b11610107578063a22cb465116100ec578063a22cb46514610504578063b67c25a314610524578063b73c6ce91461053e57600080fd5b80638da5cb5b146104c9578063a0712d68146104f157600080fd5b806369fe0e2d14610454578063715018a6146104745780637bf887a014610489578063805e0b20146104a957600080fd5b80632eb2c2d6116101cb5780634622ab031161019a5780634e1273f41161017f5780634e1273f4146103fd578063561892361461042a5780635b2bd79e1461043f57600080fd5b80634622ab03146103bd57806348a875a5146103dd57600080fd5b80632eb2c2d614610348578063364410b3146103685780633eb1d777146103885780634047638d146103a857600080fd5b80630bf3a698116102075780630bf3a698146102df5780630e89341c146102ff57806313966db51461031f5780632db115441461033557600080fd5b8062fdd58e1461023857806301ffc9a71461026b57806302fe53051461029b57806306fdde03146102bd575b600080fd5b34801561024457600080fd5b50610258610253366004612343565b6106a2565b6040519081526020015b60405180910390f35b34801561027757600080fd5b5061028b610286366004612419565b61074b565b6040519015158152602001610262565b3480156102a757600080fd5b506102bb6102b6366004612451565b61079d565b005b3480156102c957600080fd5b506102d26107c5565b60405161026291906126e4565b3480156102eb57600080fd5b506102586102fa366004612343565b610853565b34801561030b57600080fd5b506102d261031a36600461249f565b610878565b34801561032b57600080fd5b5061025860085481565b61025861034336600461249f565b6108ac565b34801561035457600080fd5b506102bb610363366004612200565b610b25565b34801561037457600080fd5b506102d261038336600461249f565b610bb8565b34801561039457600080fd5b506102bb6103a336600461249f565b610bd1565b3480156103b457600080fd5b506102bb610c2f565b3480156103c957600080fd5b506102d26103d836600461249f565b610c4b565b3480156103e957600080fd5b506102586103f8366004612343565b610c76565b34801561040957600080fd5b5061041d61041836600461236c565b610c92565b60405161026291906126ac565b34801561043657600080fd5b50610258610e08565b34801561044b57600080fd5b506102d2610eac565b34801561046057600080fd5b506102bb61046f36600461249f565b610eb9565b34801561048057600080fd5b506102bb610ec6565b34801561049557600080fd5b506102bb6104a43660046123cd565b610eda565b3480156104b557600080fd5b506102bb6104c436600461249f565b610fc1565b3480156104d557600080fd5b506003546040516001600160a01b039091168152602001610262565b6102586104ff36600461249f565b610fce565b34801561051057600080fd5b506102bb61051f366004612309565b61125c565b34801561053057600080fd5b50600b5461028b9060ff1681565b34801561054a57600080fd5b506102bb61126b565b34801561055f57600080fd5b5061025861056e36600461249f565b60106020526000908152604090205481565b34801561058c57600080fd5b5061025860095481565b3480156105a257600080fd5b50610258600a5481565b3480156105b857600080fd5b5061028b6105c73660046121ce565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561060157600080fd5b506102bb6106103660046122a6565b61129f565b34801561062157600080fd5b506102bb6106303660046121b4565b61132b565b34801561064157600080fd5b50610258610650366004612451565b8051602081830181018051600e8252928201919093012091525481565b34801561067957600080fd5b5061025861068836600461249f565b6113b8565b34801561069957600080fd5b50600954610258565b60006001600160a01b0383166107255760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201527f616c6964206f776e65720000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061077c57506001600160e01b031982166303a24d0760e21b145b8061079757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6107a56113d9565b80516107b8906006906020840190611f9e565b506107c281611433565b50565b600780546107d290612795565b80601f01602080910402602001604051908101604052809291908181526020018280546107fe90612795565b801561084b5780601f106108205761010080835404028352916020019161084b565b820191906000526020600020905b81548152906001019060200180831161082e57829003601f168201915b505050505081565b600d60205281600052604060002081600b811061086f57600080fd5b01549150829050565b6060600661088583611446565b604051602001610896929190612539565b6040516020818303038152906040529050919050565b6000600954600014156108f35760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161071c565b600b5460ff166109455760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f742061637469766500000000000000604482015260640161071c565b600061094f610e08565b600a54336000908152600c6020526040902091925090826005811061098457634e487b7160e01b600052603260045260246000fd5b0154610990908561271b565b11156109ec5760405162461bcd60e51b815260206004820152602560248201527f5075626c6963206d696e74206c696d6974207265616368656420666f72206164604482015264647265737360d81b606482015260840161071c565b600081815260106020526040902054831115610a4a5760405162461bcd60e51b815260206004820152601a60248201527f546f74616c20737570706c79206c696d69742072656163686564000000000000604482015260640161071c565b3460085414610a9b5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e740000000000000000604482015260640161071c565b610ab6338285604051806020016040528060008152506114f6565b60008181526010602052604081208054859290610ad4908490612752565b9091555050336000908152600c6020526040902083908260058110610b0957634e487b7160e01b600052603260045260246000fd5b016000828254610b19919061271b565b90915550909392505050565b6001600160a01b038516331480610b415750610b4185336105c7565b610ba45760405162461bcd60e51b815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526d195c881bdc88185c1c1c9bdd995960921b606482015260840161071c565b610bb1858585858561160a565b5050505050565b600f60205260009081526040902080546107d290612795565b610bd96113d9565b600a811115610c2a5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964207374616765206e756d626572000000000000000000000000604482015260640161071c565b600955565b610c376113d9565b600b805460ff19811660ff90911615179055565b60048181548110610c5b57600080fd5b9060005260206000200160009150905080546107d290612795565b600c602052816000526040600020816005811061086f57600080fd5b60608151835114610d0b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d617463680000000000000000000000000000000000000000000000606482015260840161071c565b6000835167ffffffffffffffff811115610d3557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d5e578160200160208202803683370190505b50905060005b8451811015610e0057610dc5858281518110610d9057634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610db857634e487b7160e01b600052603260045260246000fd5b60200260200101516106a2565b828281518110610de557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610df9816127fd565b9050610d64565b509392505050565b60008060095460011480610e1e57506009546002145b15610e2b57506001919050565b60095460031480610e3e57506009546004145b15610e4b57506002919050565b60095460051480610e5e57506009546006145b15610e6b57506003919050565b60095460071480610e7e57506009546008145b15610e8b57506004919050565b60095460091480610e9e5750600954600a145b15610ea7575060055b919050565b600680546107d290612795565b610ec16113d9565b600855565b610ece6113d9565b610ed86000611899565b565b610ee26113d9565b80610f2f5760405162461bcd60e51b815260206004820152601660248201527f4e756d626572206d7573742062652061626f7665203000000000000000000000604482015260640161071c565b60005b8351811015610fbb5782600d6000868481518110610f6057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002083600b8110610fa757634e487b7160e01b600052603260045260246000fd5b015580610fb3816127fd565b915050610f32565b50505050565b610fc96113d9565b600a55565b6000600954600014156110155760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161071c565b336000908152600d60205260409020600954600b811061104557634e487b7160e01b600052603260045260246000fd5b01546110935760405162461bcd60e51b815260206004820152601060248201527f4e6f74206f6e2077686974656c69737400000000000000000000000000000000604482015260640161071c565b336000908152600d60205260409020600954600b81106110c357634e487b7160e01b600052603260045260246000fd5b01548211156111145760405162461bcd60e51b815260206004820152600d60248201527f4c696d6974207265616368656400000000000000000000000000000000000000604482015260640161071c565b34826008546111239190612733565b146111705760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e740000000000000000604482015260640161071c565b600061117a610e08565b6000818152601060205260409020549091508311156111db5760405162461bcd60e51b815260206004820152601a60248201527f546f74616c20737570706c79206c696d69742072656163686564000000000000604482015260640161071c565b6111f6338285604051806020016040528060008152506114f6565b336000908152600d60205260409020600954849190600b811061122957634e487b7160e01b600052603260045260246000fd5b0160008282546112399190612752565b909155505060008181526010602052604081208054859290610b19908490612752565b611267338383611903565b5050565b6112736113d9565b60405133904780156108fc02916000818181858888f193505050501580156107c2573d6000803e3d6000fd5b6001600160a01b0385163314806112bb57506112bb85336105c7565b61131e5760405162461bcd60e51b815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526d195c881bdc88185c1c1c9bdd995960921b606482015260840161071c565b610bb185858585856119f8565b6113336113d9565b6001600160a01b0381166113af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161071c565b6107c281611899565b600581815481106113c857600080fd5b600091825260209091200154905081565b6003546001600160a01b03163314610ed85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071c565b8051611267906002906020840190611f9e565b6060600061145383611ba3565b600101905060008167ffffffffffffffff81111561148157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114ab576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846114f157610e00565b6114b5565b6001600160a01b0384166115565760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161071c565b33600061156285611c85565b9050600061156f85611c85565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906115a190849061271b565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461160183600089898989611cde565b50505050505050565b81518351146116815760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b0384166116e55760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071c565b3360005b845181101561182b57600085828151811061171457634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061174057634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156117d35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b606482015260840161071c565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061181090849061271b565b9250508190555050505080611824906127fd565b90506116e9565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161187b9291906126bf565b60405180910390a4611891818787878787611e93565b505050505050565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561198b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c660000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611a5c5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071c565b336000611a6885611c85565b90506000611a7585611c85565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015611afb5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b606482015260840161071c565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611b3890849061271b565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b98848a8a8a8a8a611cde565b505050505050505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611bec577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611c18576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c3657662386f26fc10000830492506010015b6305f5e1008310611c4e576305f5e100830492506008015b6127108310611c6257612710830492506004015b60648310611c74576064830492506002015b600a83106107975760010192915050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ccd57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b156118915760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d229089908990889088908890600401612669565b602060405180830381600087803b158015611d3c57600080fd5b505af1925050508015611d6c575060408051601f3d908101601f19168201909252611d6991810190612435565b60015b611e2257611d78612844565b806308c379a01415611db25750611d8d61285c565b80611d985750611db4565b8060405162461bcd60e51b815260040161071c91906126e4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840161071c565b6001600160e01b0319811663f23a6e6160e01b146116015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840161071c565b6001600160a01b0384163b156118915760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611ed7908990899088908890889060040161260b565b602060405180830381600087803b158015611ef157600080fd5b505af1925050508015611f21575060408051601f3d908101601f19168201909252611f1e91810190612435565b60015b611f2d57611d78612844565b6001600160e01b0319811663bc197c8160e01b146116015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840161071c565b828054611faa90612795565b90600052602060002090601f016020900481019282611fcc5760008555612012565b82601f10611fe557805160ff1916838001178555612012565b82800160010185558215612012579182015b82811115612012578251825591602001919060010190611ff7565b5061201e929150612022565b5090565b5b8082111561201e5760008155600101612023565b600067ffffffffffffffff8311156120515761205161282e565b604051612068601f8501601f1916602001826127d0565b80915083815284848401111561207d57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114610ea757600080fd5b600082601f8301126120bc578081fd5b813560206120c9826126f7565b6040516120d682826127d0565b8381528281019150858301600585901b870184018810156120f5578586fd5b855b8581101561211a5761210882612095565b845292840192908401906001016120f7565b5090979650505050505050565b600082601f830112612137578081fd5b81356020612144826126f7565b60405161215182826127d0565b8381528281019150858301600585901b87018401881015612170578586fd5b855b8581101561211a57813584529284019290840190600101612172565b600082601f83011261219e578081fd5b6121ad83833560208501612037565b9392505050565b6000602082840312156121c5578081fd5b6121ad82612095565b600080604083850312156121e0578081fd5b6121e983612095565b91506121f760208401612095565b90509250929050565b600080600080600060a08688031215612217578081fd5b61222086612095565b945061222e60208701612095565b9350604086013567ffffffffffffffff8082111561224a578283fd5b61225689838a01612127565b9450606088013591508082111561226b578283fd5b61227789838a01612127565b9350608088013591508082111561228c578283fd5b506122998882890161218e565b9150509295509295909350565b600080600080600060a086880312156122bd578081fd5b6122c686612095565b94506122d460208701612095565b93506040860135925060608601359150608086013567ffffffffffffffff8111156122fd578182fd5b6122998882890161218e565b6000806040838503121561231b578182fd5b61232483612095565b915060208301358015158114612338578182fd5b809150509250929050565b60008060408385031215612355578182fd5b61235e83612095565b946020939093013593505050565b6000806040838503121561237e578182fd5b823567ffffffffffffffff80821115612395578384fd5b6123a1868387016120ac565b935060208501359150808211156123b6578283fd5b506123c385828601612127565b9150509250929050565b6000806000606084860312156123e1578283fd5b833567ffffffffffffffff8111156123f7578384fd5b612403868287016120ac565b9660208601359650604090950135949350505050565b60006020828403121561242a578081fd5b81356121ad816128e6565b600060208284031215612446578081fd5b81516121ad816128e6565b600060208284031215612462578081fd5b813567ffffffffffffffff811115612478578182fd5b8201601f81018413612488578182fd5b61249784823560208401612037565b949350505050565b6000602082840312156124b0578081fd5b5035919050565b6000815180845260208085019450808401835b838110156124e6578151875295820195908201906001016124ca565b509495945050505050565b60008151808452612509816020860160208601612769565b601f01601f19169290920160200192915050565b6000815161252f818560208601612769565b9290920192915050565b600080845482600182811c91508083168061255557607f831692505b602080841082141561257557634e487b7160e01b87526022600452602487fd5b818015612589576001811461259a576125c6565b60ff198616895284890196506125c6565b60008b815260209020885b868110156125be5781548b8201529085019083016125a5565b505084890196505b5050505050506126026125d9828661251d565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261263760a08301866124b7565b828103606084015261264981866124b7565b9050828103608084015261265d81856124f1565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526126a160a08301846124f1565b979650505050505050565b6020815260006121ad60208301846124b7565b6040815260006126d260408301856124b7565b828103602084015261260281856124b7565b6020815260006121ad60208301846124f1565b600067ffffffffffffffff8211156127115761271161282e565b5060051b60200190565b6000821982111561272e5761272e612818565b500190565b600081600019048311821515161561274d5761274d612818565b500290565b60008282101561276457612764612818565b500390565b60005b8381101561278457818101518382015260200161276c565b83811115610fbb5750506000910152565b600181811c908216806127a957607f821691505b602082108114156127ca57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156127f6576127f661282e565b6040525050565b600060001982141561281157612811612818565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561285957600481823e5160e01c5b90565b600060443d101561286a5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561289a57505050505090565b82850191508151818111156128b25750505050505090565b843d87010160208285010111156128cc5750505050505090565b6128db602082860101876127d0565b509095945050505050565b6001600160e01b0319811681146107c257600080fdfea164736f6c6343000804000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000d427269636b744f726967696e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d58393374427a3478664b7131755670774e536a6761697650354539596144524d616d376a6e31714e754d79370000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000c427269636b746f50756e6b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000742656c6769756d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5375706572436f6d7075746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008546865466f726765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e427261696e416c676f726974686d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005
-----Decoded View---------------
Arg [0] : _contractName (string): BricktOrigins
Arg [1] : _uri (string): ipfs://QmX93tBz4xfKq1uVpwNSjgaivP5E9YaDRMam7jn1qNuMy7
Arg [2] : _names (string[]): BricktoPunks,Belgium,SuperComputer,TheForge,BrainAlgorithm
Arg [3] : _ids (uint256[]): 1,2,3,4,5
-----Encoded View---------------
31 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 427269636b744f726967696e7300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [7] : 697066733a2f2f516d58393374427a3478664b7131755670774e536a67616976
Arg [8] : 50354539596144524d616d376a6e31714e754d79370000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [11] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [14] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [15] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [16] : 427269636b746f50756e6b730000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [18] : 42656c6769756d00000000000000000000000000000000000000000000000000
Arg [19] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [20] : 5375706572436f6d707574657200000000000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [22] : 546865466f726765000000000000000000000000000000000000000000000000
Arg [23] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [24] : 427261696e416c676f726974686d000000000000000000000000000000000000
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000005
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.