ERC-721
Source Code
Overview
Max Total Supply
10,000 LEX
Holders
1,039
Transfers
-
0
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
LexMetaCapital
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-08-16
*/
//SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
}
// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* checking first that contract recipients are aware of the ERC721 protocol
* to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move
* this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom}
* whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: contracts/LEX.sol
// Creator: Chiru Labs
// $$______ $$$$$$$_ $$___$$_ $$___$$_ $$$$$$$_ $$$$$$_ __$$$___ ____________$$$$_ __$$$___ $$$$$$__ $$$$_ $$$$$$_ __$$$___ $$______
// $$______ $$______ $$$_$$$_ $$$_$$$_ $$______ __$$___ _$$_$$__ ___________$$____ _$$_$$__ $$___$$_ _$$__ __$$___ _$$_$$__ $$______
// $$______ $$$$$___ _$$$$$__ $$$$$$$_ $$$$$___ __$$___ $$___$$_ __________$$_____ $$___$$_ $$___$$_ _$$__ __$$___ $$___$$_ $$______
// $$______ $$______ _$$$$$__ $$_$_$$_ $$______ __$$___ $$$$$$$_ __________$$_____ $$$$$$$_ $$$$$$__ _$$__ __$$___ $$$$$$$_ $$______
// $$____$_ $$______ $$$_$$$_ $$___$$_ $$______ __$$___ $$___$$_ ___________$$____ $$___$$_ $$______ _$$__ __$$___ $$___$$_ $$____$_
// $$$$$$$_ $$$$$$$_ $$___$$_ $$___$$_ $$$$$$$_ __$$___ $$___$$_ ____________$$$$_ $$___$$_ $$______ $$$$_ __$$___ $$___$$_ $$$$$$$_
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Reference type for token approval.
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Hook that is called before a set of serially-ordered token IDs
* are about to be transferred. This includes minting.
* And also called before burning one token.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token IDs
* have been transferred. This includes minting.
* And also called after one token has been burned.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit),
// but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 32-byte word to store the length,
// and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
str := add(mload(0x40), 0x80)
// Update the free memory pointer to allocate.
mstore(0x40, str)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
}
pragma solidity 0.8.15;
contract LexMetaCapital is ERC721A, Ownable {
uint256 MAX_MINTS = 10;
uint256 MAX_SUPPLY = 10000;
uint256 public mintRate = 0 ether;
string public baseURI = "ipfs://QmfXUKcxz5tFEt9CmPMpZbUAG83NytAjAaCGW3NxBnvgUw/";
string public uriSuffix = ".json";
constructor() ERC721A("LexMetaCapital", "LEX") {}
function mint(uint256 quantity) external payable {
// _safeMint's second argument now takes in a quantity, not a tokenId.
if(msg.sender != owner()){
require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
}
require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
require(msg.value >= (mintRate * quantity), "Not enough ether sent");
_safeMint(msg.sender, quantity);
}
function whiteList() public payable onlyOwner{
require(msg.value >=0);
_safeMint(0x3b807ad69c7ED692BDb58360a37c3DDaf23f2695, 100);
_safeMint(0x9185B1Bf30b7d669A6C68dead2c915080aC5754B, 100);
_safeMint(0x9DDa800Beb8489bf4195175541FEfF43392df6DA, 100);
_safeMint(0xa6195FC7Cb4540ab520dA0Adc60B3544F44970ed, 100);
_safeMint(0xAe3519cfDE74922beF92780f448655A65b0414EE, 100);
_safeMint(0xC24dde0Ff00284fe2d188c35187bA3117445A8D2, 100);
}
function tokenURI(uint256 tokenId) public view override returns (string memory) {
require(_exists(tokenId), "LEX Err: ERC721AMetadata - URI query for nonexistent token");
return bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix))
: "";
}
function withdraw() public payable onlyOwner {
// =============================================================================
(bool os, ) = payable(owner()).call{value: address(this).balance}("");
require(os);
// =============================================================================
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
600a600981905561271090556000600b5560e0604052603660808181529062001a0c60a039600c90620000339082620001e1565b50604080518082019091526005815264173539b7b760d91b6020820152600d906200005f9082620001e1565b503480156200006d57600080fd5b506040518060400160405280600e81526020016d13195e13595d1850d85c1a5d185b60921b815250604051806040016040528060038152602001620988ab60eb1b8152508160029081620000c29190620001e1565b506003620000d18282620001e1565b5050600160005550620000e433620000ea565b620002ad565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016757607f821691505b6020821081036200018857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001dc57600081815260208120601f850160051c81016020861015620001b75750805b601f850160051c820191505b81811015620001d857828155600101620001c3565b5050505b505050565b81516001600160401b03811115620001fd57620001fd6200013c565b62000215816200020e845462000152565b846200018e565b602080601f8311600181146200024d5760008415620002345750858301515b600019600386901b1c1916600185901b178555620001d8565b600085815260208120601f198616915b828110156200027e578886015182559484019460019091019084016200025d565b50858210156200029d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61174f80620002bd6000396000f3fe60806040526004361061014b5760003560e01c80636c0360eb116100b6578063a22cb4651161006f578063a22cb4651461035d578063b88d4fde1461037d578063c87b56dd1461039d578063ca0dcf16146103bd578063e985e9c5146103d3578063f2fde38b1461041c57600080fd5b80636c0360eb146102cd57806370a08231146102e2578063715018a6146103025780638da5cb5b1461031757806395d89b4114610335578063a0712d681461034a57600080fd5b80633544a864116101085780633544a864146102485780633ccfd60b1461025057806342842e0e146102585780635503a0e81461027857806355f804b31461028d5780636352211e146102ad57600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610228575b600080fd5b34801561015c57600080fd5b5061017061016b36600461118e565b61043c565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a61048e565b60405161017c9190611203565b3480156101b357600080fd5b506101c76101c2366004611216565b610520565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa36600461124b565b610564565b005b34801561020d57600080fd5b5060015460005403600019015b60405190815260200161017c565b34801561023457600080fd5b506101ff610243366004611275565b610604565b6101ff61079d565b6101ff610861565b34801561026457600080fd5b506101ff610273366004611275565b6108dd565b34801561028457600080fd5b5061019a6108fd565b34801561029957600080fd5b506101ff6102a836600461133d565b61098b565b3480156102b957600080fd5b506101c76102c8366004611216565b6109a3565b3480156102d957600080fd5b5061019a6109ae565b3480156102ee57600080fd5b5061021a6102fd366004611386565b6109bb565b34801561030e57600080fd5b506101ff610a0a565b34801561032357600080fd5b506008546001600160a01b03166101c7565b34801561034157600080fd5b5061019a610a1c565b6101ff610358366004611216565b610a2b565b34801561036957600080fd5b506101ff6103783660046113a1565b610b70565b34801561038957600080fd5b506101ff6103983660046113dd565b610bdc565b3480156103a957600080fd5b5061019a6103b8366004611216565b610c26565b3480156103c957600080fd5b5061021a600b5481565b3480156103df57600080fd5b506101706103ee366004611459565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561042857600080fd5b506101ff610437366004611386565b610d02565b60006301ffc9a760e01b6001600160e01b03198316148061046d57506380ac58cd60e01b6001600160e01b03198316145b806104885750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461049d9061148c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c99061148c565b80156105165780601f106104eb57610100808354040283529160200191610516565b820191906000526020600020905b8154815290600101906020018083116104f957829003601f168201915b5050505050905090565b600061052b82610d78565b610548576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061056f826109a3565b9050336001600160a01b038216146105a85761058b81336103ee565b6105a8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061060f82610dad565b9050836001600160a01b0316816001600160a01b0316146106425760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761068f5761067286336103ee565b61068f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106b657604051633a954ecd60e21b815260040160405180910390fd5b80156106c157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610753576001840160008181526004602052604081205490036107515760005481146107515760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107a5610e23565b6107c4733b807ad69c7ed692bdb58360a37c3ddaf23f26956064610e7d565b6107e3739185b1bf30b7d669a6c68dead2c915080ac5754b6064610e7d565b610802739dda800beb8489bf4195175541feff43392df6da6064610e7d565b61082173a6195fc7cb4540ab520da0adc60b3544f44970ed6064610e7d565b61084073ae3519cfde74922bef92780f448655a65b0414ee6064610e7d565b61085f73c24dde0ff00284fe2d188c35187ba3117445a8d26064610e7d565b565b610869610e23565b600061087d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108c7576040519150601f19603f3d011682016040523d82523d6000602084013e6108cc565b606091505b50509050806108da57600080fd5b50565b6108f883838360405180602001604052806000815250610bdc565b505050565b600d805461090a9061148c565b80601f01602080910402602001604051908101604052809291908181526020018280546109369061148c565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b505050505081565b610993610e23565b600c61099f828261150c565b5050565b600061048882610dad565b600c805461090a9061148c565b60006001600160a01b0382166109e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a12610e23565b61085f6000610e97565b60606003805461049d9061148c565b6008546001600160a01b03163314610aaf57600954336000908152600560205260409081902054610a67911c67ffffffffffffffff16836115e2565b1115610aaf5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064015b60405180910390fd5b600a546001546000548391900360001901610aca91906115e2565b1115610b115760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610aa6565b80600b54610b1f91906115fa565b341015610b665760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610aa6565b6108da3382610e7d565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be7848484610604565b6001600160a01b0383163b15610c2057610c0384848484610ee9565b610c20576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3182610d78565b610ca35760405162461bcd60e51b815260206004820152603a60248201527f4c4558204572723a20455243373231414d65746164617461202d20555249207160448201527f7565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000006064820152608401610aa6565b6000600c8054610cb29061148c565b905011610cce5760405180602001604052806000815250610488565b600c610cd983610fd5565b600d604051602001610ced9392919061168c565b60405160208183030381529060405292915050565b610d0a610e23565b6001600160a01b038116610d6f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa6565b6108da81610e97565b600081600111158015610d8c575060005482105b8015610488575050600090815260046020526040902054600160e01b161590565b60008180600111610e0a57600054811015610e0a5760008181526004602052604081205490600160e01b82169003610e08575b80600003610e01575060001901600081815260046020526040902054610de0565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b0316331461085f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa6565b61099f82826040518060200160405280600081525061100d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f1e9033908990889088906004016116bf565b6020604051808303816000875af1925050508015610f59575060408051601f3d908101601f19168201909252610f56918101906116fc565b60015b610fb7573d808015610f87576040519150601f19603f3d011682016040523d82523d6000602084013e610f8c565b606091505b508051600003610faf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080019081905280825b600183039250600a81066030018353600a900480610fe35750819003601f19909101908152919050565b611017838361107a565b6001600160a01b0383163b156108f8576000548281035b6110416000868380600101945086610ee9565b61105e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061102e57816000541461107357600080fd5b5050505050565b600080549082900361109f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461114e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611116565b508160000361116f57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108da57600080fd5b6000602082840312156111a057600080fd5b8135610e0181611178565b60005b838110156111c65781810151838201526020016111ae565b83811115610c205750506000910152565b600081518084526111ef8160208601602086016111ab565b601f01601f19169290920160200192915050565b602081526000610e0160208301846111d7565b60006020828403121561122857600080fd5b5035919050565b80356001600160a01b038116811461124657600080fd5b919050565b6000806040838503121561125e57600080fd5b6112678361122f565b946020939093013593505050565b60008060006060848603121561128a57600080fd5b6112938461122f565b92506112a16020850161122f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112e2576112e26112b1565b604051601f8501601f19908116603f0116810190828211818310171561130a5761130a6112b1565b8160405280935085815286868601111561132357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561134f57600080fd5b813567ffffffffffffffff81111561136657600080fd5b8201601f8101841361137757600080fd5b610fcd848235602084016112c7565b60006020828403121561139857600080fd5b610e018261122f565b600080604083850312156113b457600080fd5b6113bd8361122f565b9150602083013580151581146113d257600080fd5b809150509250929050565b600080600080608085870312156113f357600080fd5b6113fc8561122f565b935061140a6020860161122f565b925060408501359150606085013567ffffffffffffffff81111561142d57600080fd5b8501601f8101871361143e57600080fd5b61144d878235602084016112c7565b91505092959194509250565b6000806040838503121561146c57600080fd5b6114758361122f565b91506114836020840161122f565b90509250929050565b600181811c908216806114a057607f821691505b6020821081036114c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156108f857600081815260208120601f850160051c810160208610156114ed5750805b601f850160051c820191505b81811015610795578281556001016114f9565b815167ffffffffffffffff811115611526576115266112b1565b61153a81611534845461148c565b846114c6565b602080601f83116001811461156f57600084156115575750858301515b600019600386901b1c1916600185901b178555610795565b600085815260208120601f198616915b8281101561159e5788860151825594840194600190910190840161157f565b50858210156115bc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156115f5576115f56115cc565b500190565b6000816000190483118215151615611614576116146115cc565b500290565b600081546116268161148c565b6001828116801561163e576001811461165357611682565b60ff1984168752821515830287019450611682565b8560005260208060002060005b858110156116795781548a820152908401908201611660565b50505082870194505b5050505092915050565b60006116988286611619565b84516116a88183602089016111ab565b6116b481830186611619565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116f2908301846111d7565b9695505050505050565b60006020828403121561170e57600080fd5b8151610e018161117856fea264697066735822122073a417b371bae4664264fa841551c6078b3a7ca7bda83136903a3ed7541f6ffd64736f6c634300080f0033697066733a2f2f516d6658554b63787a357446457439436d504d705a6255414738334e7974416a4161434757334e78426e766755772f
Deployed Bytecode
0x60806040526004361061014b5760003560e01c80636c0360eb116100b6578063a22cb4651161006f578063a22cb4651461035d578063b88d4fde1461037d578063c87b56dd1461039d578063ca0dcf16146103bd578063e985e9c5146103d3578063f2fde38b1461041c57600080fd5b80636c0360eb146102cd57806370a08231146102e2578063715018a6146103025780638da5cb5b1461031757806395d89b4114610335578063a0712d681461034a57600080fd5b80633544a864116101085780633544a864146102485780633ccfd60b1461025057806342842e0e146102585780635503a0e81461027857806355f804b31461028d5780636352211e146102ad57600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610228575b600080fd5b34801561015c57600080fd5b5061017061016b36600461118e565b61043c565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a61048e565b60405161017c9190611203565b3480156101b357600080fd5b506101c76101c2366004611216565b610520565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa36600461124b565b610564565b005b34801561020d57600080fd5b5060015460005403600019015b60405190815260200161017c565b34801561023457600080fd5b506101ff610243366004611275565b610604565b6101ff61079d565b6101ff610861565b34801561026457600080fd5b506101ff610273366004611275565b6108dd565b34801561028457600080fd5b5061019a6108fd565b34801561029957600080fd5b506101ff6102a836600461133d565b61098b565b3480156102b957600080fd5b506101c76102c8366004611216565b6109a3565b3480156102d957600080fd5b5061019a6109ae565b3480156102ee57600080fd5b5061021a6102fd366004611386565b6109bb565b34801561030e57600080fd5b506101ff610a0a565b34801561032357600080fd5b506008546001600160a01b03166101c7565b34801561034157600080fd5b5061019a610a1c565b6101ff610358366004611216565b610a2b565b34801561036957600080fd5b506101ff6103783660046113a1565b610b70565b34801561038957600080fd5b506101ff6103983660046113dd565b610bdc565b3480156103a957600080fd5b5061019a6103b8366004611216565b610c26565b3480156103c957600080fd5b5061021a600b5481565b3480156103df57600080fd5b506101706103ee366004611459565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561042857600080fd5b506101ff610437366004611386565b610d02565b60006301ffc9a760e01b6001600160e01b03198316148061046d57506380ac58cd60e01b6001600160e01b03198316145b806104885750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461049d9061148c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c99061148c565b80156105165780601f106104eb57610100808354040283529160200191610516565b820191906000526020600020905b8154815290600101906020018083116104f957829003601f168201915b5050505050905090565b600061052b82610d78565b610548576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061056f826109a3565b9050336001600160a01b038216146105a85761058b81336103ee565b6105a8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061060f82610dad565b9050836001600160a01b0316816001600160a01b0316146106425760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761068f5761067286336103ee565b61068f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106b657604051633a954ecd60e21b815260040160405180910390fd5b80156106c157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610753576001840160008181526004602052604081205490036107515760005481146107515760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107a5610e23565b6107c4733b807ad69c7ed692bdb58360a37c3ddaf23f26956064610e7d565b6107e3739185b1bf30b7d669a6c68dead2c915080ac5754b6064610e7d565b610802739dda800beb8489bf4195175541feff43392df6da6064610e7d565b61082173a6195fc7cb4540ab520da0adc60b3544f44970ed6064610e7d565b61084073ae3519cfde74922bef92780f448655a65b0414ee6064610e7d565b61085f73c24dde0ff00284fe2d188c35187ba3117445a8d26064610e7d565b565b610869610e23565b600061087d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108c7576040519150601f19603f3d011682016040523d82523d6000602084013e6108cc565b606091505b50509050806108da57600080fd5b50565b6108f883838360405180602001604052806000815250610bdc565b505050565b600d805461090a9061148c565b80601f01602080910402602001604051908101604052809291908181526020018280546109369061148c565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b505050505081565b610993610e23565b600c61099f828261150c565b5050565b600061048882610dad565b600c805461090a9061148c565b60006001600160a01b0382166109e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a12610e23565b61085f6000610e97565b60606003805461049d9061148c565b6008546001600160a01b03163314610aaf57600954336000908152600560205260409081902054610a67911c67ffffffffffffffff16836115e2565b1115610aaf5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064015b60405180910390fd5b600a546001546000548391900360001901610aca91906115e2565b1115610b115760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610aa6565b80600b54610b1f91906115fa565b341015610b665760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610aa6565b6108da3382610e7d565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be7848484610604565b6001600160a01b0383163b15610c2057610c0384848484610ee9565b610c20576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3182610d78565b610ca35760405162461bcd60e51b815260206004820152603a60248201527f4c4558204572723a20455243373231414d65746164617461202d20555249207160448201527f7565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000006064820152608401610aa6565b6000600c8054610cb29061148c565b905011610cce5760405180602001604052806000815250610488565b600c610cd983610fd5565b600d604051602001610ced9392919061168c565b60405160208183030381529060405292915050565b610d0a610e23565b6001600160a01b038116610d6f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa6565b6108da81610e97565b600081600111158015610d8c575060005482105b8015610488575050600090815260046020526040902054600160e01b161590565b60008180600111610e0a57600054811015610e0a5760008181526004602052604081205490600160e01b82169003610e08575b80600003610e01575060001901600081815260046020526040902054610de0565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b0316331461085f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa6565b61099f82826040518060200160405280600081525061100d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f1e9033908990889088906004016116bf565b6020604051808303816000875af1925050508015610f59575060408051601f3d908101601f19168201909252610f56918101906116fc565b60015b610fb7573d808015610f87576040519150601f19603f3d011682016040523d82523d6000602084013e610f8c565b606091505b508051600003610faf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080019081905280825b600183039250600a81066030018353600a900480610fe35750819003601f19909101908152919050565b611017838361107a565b6001600160a01b0383163b156108f8576000548281035b6110416000868380600101945086610ee9565b61105e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061102e57816000541461107357600080fd5b5050505050565b600080549082900361109f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461114e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611116565b508160000361116f57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108da57600080fd5b6000602082840312156111a057600080fd5b8135610e0181611178565b60005b838110156111c65781810151838201526020016111ae565b83811115610c205750506000910152565b600081518084526111ef8160208601602086016111ab565b601f01601f19169290920160200192915050565b602081526000610e0160208301846111d7565b60006020828403121561122857600080fd5b5035919050565b80356001600160a01b038116811461124657600080fd5b919050565b6000806040838503121561125e57600080fd5b6112678361122f565b946020939093013593505050565b60008060006060848603121561128a57600080fd5b6112938461122f565b92506112a16020850161122f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112e2576112e26112b1565b604051601f8501601f19908116603f0116810190828211818310171561130a5761130a6112b1565b8160405280935085815286868601111561132357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561134f57600080fd5b813567ffffffffffffffff81111561136657600080fd5b8201601f8101841361137757600080fd5b610fcd848235602084016112c7565b60006020828403121561139857600080fd5b610e018261122f565b600080604083850312156113b457600080fd5b6113bd8361122f565b9150602083013580151581146113d257600080fd5b809150509250929050565b600080600080608085870312156113f357600080fd5b6113fc8561122f565b935061140a6020860161122f565b925060408501359150606085013567ffffffffffffffff81111561142d57600080fd5b8501601f8101871361143e57600080fd5b61144d878235602084016112c7565b91505092959194509250565b6000806040838503121561146c57600080fd5b6114758361122f565b91506114836020840161122f565b90509250929050565b600181811c908216806114a057607f821691505b6020821081036114c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156108f857600081815260208120601f850160051c810160208610156114ed5750805b601f850160051c820191505b81811015610795578281556001016114f9565b815167ffffffffffffffff811115611526576115266112b1565b61153a81611534845461148c565b846114c6565b602080601f83116001811461156f57600084156115575750858301515b600019600386901b1c1916600185901b178555610795565b600085815260208120601f198616915b8281101561159e5788860151825594840194600190910190840161157f565b50858210156115bc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156115f5576115f56115cc565b500190565b6000816000190483118215151615611614576116146115cc565b500290565b600081546116268161148c565b6001828116801561163e576001811461165357611682565b60ff1984168752821515830287019450611682565b8560005260208060002060005b858110156116795781548a820152908401908201611660565b50505082870194505b5050505092915050565b60006116988286611619565b84516116a88183602089016111ab565b6116b481830186611619565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116f2908301846111d7565b9695505050505050565b60006020828403121561170e57600080fd5b8151610e018161117856fea264697066735822122073a417b371bae4664264fa841551c6078b3a7ca7bda83136903a3ed7541f6ffd64736f6c634300080f0033
Deployed Bytecode Sourcemap
55435:2206:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22816:639;;;;;;;;;;-1:-1:-1;22816:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;22816:639:0;;;;;;;;23718:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30201:218::-;;;;;;;;;;-1:-1:-1;30201:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30201:218:0;1528:203:1;29642:400:0;;;;;;;;;;-1:-1:-1;29642:400:0;;;;;:::i;:::-;;:::i;:::-;;19469:323;;;;;;;;;;-1:-1:-1;19068:1:0;19743:12;19530:7;19727:13;:28;-1:-1:-1;;19727:46:0;19469:323;;;2319:25:1;;;2307:2;2292:18;19469:323:0;2173:177:1;33840:2817:0;;;;;;;;;;-1:-1:-1;33840:2817:0;;;;;:::i;:::-;;:::i;56270:501::-;;;:::i;57102:320::-;;;:::i;36753:185::-;;;;;;;;;;-1:-1:-1;36753:185:0;;;;;:::i;:::-;;:::i;55677:33::-;;;;;;;;;;;;;:::i;57538:98::-;;;;;;;;;;-1:-1:-1;57538:98:0;;;;;:::i;:::-;;:::i;25111:152::-;;;;;;;;;;-1:-1:-1;25111:152:0;;;;;:::i;:::-;;:::i;55590:80::-;;;;;;;;;;;;;:::i;20653:233::-;;;;;;;;;;-1:-1:-1;20653:233:0;;;;;:::i;:::-;;:::i;2810:103::-;;;;;;;;;;;;;:::i;2162:87::-;;;;;;;;;;-1:-1:-1;2235:6:0;;-1:-1:-1;;;;;2235:6:0;2162:87;;23894:104;;;;;;;;;;;;;:::i;55782:480::-;;;;;;:::i;:::-;;:::i;30759:234::-;;;;;;;;;;-1:-1:-1;30759:234:0;;;;;:::i;:::-;;:::i;37536:399::-;;;;;;;;;;-1:-1:-1;37536:399:0;;;;;:::i;:::-;;:::i;56781:313::-;;;;;;;;;;-1:-1:-1;56781:313:0;;;;;:::i;:::-;;:::i;55550:33::-;;;;;;;;;;;;;;;;31150:164;;;;;;;;;;-1:-1:-1;31150:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31271:25:0;;;31247:4;31271:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31150:164;3068:201;;;;;;;;;;-1:-1:-1;3068:201:0;;;;;:::i;:::-;;:::i;22816:639::-;22901:4;-1:-1:-1;;;;;;;;;23225:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;23302:25:0;;;23225:102;:179;;;-1:-1:-1;;;;;;;;;;23379:25:0;;;23225:179;23205:199;22816:639;-1:-1:-1;;22816:639:0:o;23718:100::-;23772:13;23805:5;23798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23718:100;:::o;30201:218::-;30277:7;30302:16;30310:7;30302;:16::i;:::-;30297:64;;30327:34;;-1:-1:-1;;;30327:34:0;;;;;;;;;;;30297:64;-1:-1:-1;30381:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;30381:30:0;;30201:218::o;29642:400::-;29723:13;29739:16;29747:7;29739;:16::i;:::-;29723:32;-1:-1:-1;53697:10:0;-1:-1:-1;;;;;29772:28:0;;;29768:175;;29820:44;29837:5;53697:10;31150:164;:::i;29820:44::-;29815:128;;29892:35;;-1:-1:-1;;;29892:35:0;;;;;;;;;;;29815:128;29955:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29955:35:0;-1:-1:-1;;;;;29955:35:0;;;;;;;;;30006:28;;29955:24;;30006:28;;;;;;;29712:330;29642:400;;:::o;33840:2817::-;33974:27;34004;34023:7;34004:18;:27::i;:::-;33974:57;;34089:4;-1:-1:-1;;;;;34048:45:0;34064:19;-1:-1:-1;;;;;34048:45:0;;34044:86;;34102:28;;-1:-1:-1;;;34102:28:0;;;;;;;;;;;34044:86;34144:27;32948:24;;;:15;:24;;;;;33176:26;;53697:10;32573:30;;;-1:-1:-1;;;;;32266:28:0;;32551:20;;;32548:56;34330:180;;34423:43;34440:4;53697:10;31150:164;:::i;34423:43::-;34418:92;;34475:35;;-1:-1:-1;;;34475:35:0;;;;;;;;;;;34418:92;-1:-1:-1;;;;;34527:16:0;;34523:52;;34552:23;;-1:-1:-1;;;34552:23:0;;;;;;;;;;;34523:52;34724:15;34721:160;;;34864:1;34843:19;34836:30;34721:160;-1:-1:-1;;;;;35261:24:0;;;;;;;:18;:24;;;;;;35259:26;;-1:-1:-1;;35259:26:0;;;35330:22;;;;;;;;;35328:24;;-1:-1:-1;35328:24:0;;;28500:11;28475:23;28471:41;28458:63;-1:-1:-1;;;28458:63:0;35623:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;35918:47:0;;:52;;35914:627;;36023:1;36013:11;;35991:19;36146:30;;;:17;:30;;;;;;:35;;36142:384;;36284:13;;36269:11;:28;36265:242;;36431:30;;;;:17;:30;;;;;:52;;;36265:242;35972:569;35914:627;36588:7;36584:2;-1:-1:-1;;;;;36569:27:0;36578:4;-1:-1:-1;;;;;36569:27:0;;;;;;;;;;;36607:42;33963:2694;;;33840:2817;;;:::o;56270:501::-;2048:13;:11;:13::i;:::-;56359:58:::1;56369:42;56413:3;56359:9;:58::i;:::-;56428;56438:42;56482:3;56428:9;:58::i;:::-;56497;56507:42;56551:3;56497:9;:58::i;:::-;56566;56576:42;56620:3;56566:9;:58::i;:::-;56635;56645:42;56689:3;56635:9;:58::i;:::-;56705;56715:42;56759:3;56705:9;:58::i;:::-;56270:501::o:0;57102:320::-;2048:13;:11;:13::i;:::-;57244:7:::1;57265;2235:6:::0;;-1:-1:-1;;;;;2235:6:0;;2162:87;57265:7:::1;-1:-1:-1::0;;;;;57257:21:0::1;57286;57257:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57243:69;;;57327:2;57319:11;;;::::0;::::1;;57147:275;57102:320::o:0;36753:185::-;36891:39;36908:4;36914:2;36918:7;36891:39;;;;;;;;;;;;:16;:39::i;:::-;36753:185;;;:::o;55677:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57538:98::-;2048:13;:11;:13::i;:::-;57609:7:::1;:21;57619:11:::0;57609:7;:21:::1;:::i;:::-;;57538:98:::0;:::o;25111:152::-;25183:7;25226:27;25245:7;25226:18;:27::i;55590:80::-;;;;;;;:::i;20653:233::-;20725:7;-1:-1:-1;;;;;20749:19:0;;20745:60;;20777:28;;-1:-1:-1;;;20777:28:0;;;;;;;;;;;20745:60;-1:-1:-1;;;;;;20823:25:0;;;;;:18;:25;;;;;;14812:13;20823:55;;20653:233::o;2810:103::-;2048:13;:11;:13::i;:::-;2875:30:::1;2902:1;2875:18;:30::i;23894:104::-:0;23950:13;23983:7;23976:14;;;;;:::i;55782:480::-;2235:6;;-1:-1:-1;;;;;2235:6:0;55925:10;:21;55922:128;;56006:9;;55991:10;21029:7;21057:25;;;:18;:25;;14950:2;21057:25;;;;;55966:36;;21057:50;14812:13;21056:82;55966:8;:36;:::i;:::-;:49;;55958:80;;;;-1:-1:-1;;;55958:80:0;;8659:2:1;55958:80:0;;;8641:21:1;8698:2;8678:18;;;8671:30;-1:-1:-1;;;8717:18:1;;;8710:48;8775:18;;55958:80:0;;;;;;;;;56096:10;;19068:1;19743:12;19530:7;19727:13;56084:8;;19727:28;;-1:-1:-1;;19727:46:0;56068:24;;;;:::i;:::-;:38;;56060:73;;;;-1:-1:-1;;;56060:73:0;;9006:2:1;56060:73:0;;;8988:21:1;9045:2;9025:18;;;9018:30;-1:-1:-1;;;9064:18:1;;;9057:52;9126:18;;56060:73:0;8804:346:1;56060:73:0;56177:8;56166;;:19;;;;:::i;:::-;56152:9;:34;;56144:68;;;;-1:-1:-1;;;56144:68:0;;9530:2:1;56144:68:0;;;9512:21:1;9569:2;9549:18;;;9542:30;-1:-1:-1;;;9588:18:1;;;9581:51;9649:18;;56144:68:0;9328:345:1;56144:68:0;56223:31;56233:10;56245:8;56223:9;:31::i;30759:234::-;53697:10;30854:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30854:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30854:60:0;;;;;;;;;;30930:55;;540:41:1;;;30854:49:0;;53697:10;30930:55;;513:18:1;30930:55:0;;;;;;;30759:234;;:::o;37536:399::-;37703:31;37716:4;37722:2;37726:7;37703:12;:31::i;:::-;-1:-1:-1;;;;;37749:14:0;;;:19;37745:183;;37788:56;37819:4;37825:2;37829:7;37838:5;37788:30;:56::i;:::-;37783:145;;37872:40;;-1:-1:-1;;;37872:40:0;;;;;;;;;;;37783:145;37536:399;;;;:::o;56781:313::-;56846:13;56876:16;56884:7;56876;:16::i;:::-;56868:87;;;;-1:-1:-1;;;56868:87:0;;9880:2:1;56868:87:0;;;9862:21:1;9919:2;9899:18;;;9892:30;9958:34;9938:18;;;9931:62;10029:28;10009:18;;;10002:56;10075:19;;56868:87:0;9678:422:1;56868:87:0;56995:1;56977:7;56971:21;;;;;:::i;:::-;;;:25;:115;;;;;;;;;;;;;;;;;57032:7;57041:18;57051:7;57041:9;:18::i;:::-;57061:9;57015:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56964:122;56781:313;-1:-1:-1;;56781:313:0:o;3068:201::-;2048:13;:11;:13::i;:::-;-1:-1:-1;;;;;3157:22:0;::::1;3149:73;;;::::0;-1:-1:-1;;;3149:73:0;;11495:2:1;3149:73:0::1;::::0;::::1;11477:21:1::0;11534:2;11514:18;;;11507:30;11573:34;11553:18;;;11546:62;-1:-1:-1;;;11624:18:1;;;11617:36;11670:19;;3149:73:0::1;11293:402:1::0;3149:73:0::1;3233:28;3252:8;3233:18;:28::i;31572:282::-:0;31637:4;31693:7;19068:1;31674:26;;:66;;;;;31727:13;;31717:7;:23;31674:66;:153;;;;-1:-1:-1;;31778:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31778:44:0;:49;;31572:282::o;26266:1275::-;26333:7;26368;;19068:1;26417:23;26413:1061;;26470:13;;26463:4;:20;26459:1015;;;26508:14;26525:23;;;:17;:23;;;;;;;-1:-1:-1;;;26614:24:0;;:29;;26610:845;;27279:113;27286:6;27296:1;27286:11;27279:113;;-1:-1:-1;;;27357:6:0;27339:25;;;;:17;:25;;;;;;27279:113;;;27425:6;26266:1275;-1:-1:-1;;;26266:1275:0:o;26610:845::-;26485:989;26459:1015;27502:31;;-1:-1:-1;;;27502:31:0;;;;;;;;;;;2327:132;2235:6;;-1:-1:-1;;;;;2235:6:0;53697:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;11902:2:1;2383:68:0;;;11884:21:1;;;11921:18;;;11914:30;11980:34;11960:18;;;11953:62;12032:18;;2383:68:0;11700:356:1;47442:112:0;47519:27;47529:2;47533:8;47519:27;;;;;;;;;;;;:9;:27::i;3429:191::-;3522:6;;;-1:-1:-1;;;;;3539:17:0;;;-1:-1:-1;;;;;;3539:17:0;;;;;;;3572:40;;3522:6;;;3539:17;3522:6;;3572:40;;3503:16;;3572:40;3492:128;3429:191;:::o;40019:716::-;40203:88;;-1:-1:-1;;;40203:88:0;;40182:4;;-1:-1:-1;;;;;40203:45:0;;;;;:88;;53697:10;;40270:4;;40276:7;;40285:5;;40203:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40203:88:0;;;;;;;;-1:-1:-1;;40203:88:0;;;;;;;;;;;;:::i;:::-;;;40199:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40486:6;:13;40503:1;40486:18;40482:235;;40532:40;;-1:-1:-1;;;40532:40:0;;;;;;;;;;;40482:235;40675:6;40669:13;40660:6;40656:2;40652:15;40645:38;40199:529;-1:-1:-1;;;;;;40362:64:0;-1:-1:-1;;;40362:64:0;;-1:-1:-1;40199:529:0;40019:716;;;;;;:::o;53817:1582::-;54301:4;54295:11;;54308:4;54291:22;54387:17;;;;54291:22;54745:5;54727:428;54793:1;54788:3;54784:11;54777:18;;54964:2;54958:4;54954:13;54950:2;54946:22;54941:3;54933:36;55058:2;55048:13;;55115:25;54727:428;55115:25;-1:-1:-1;55185:13:0;;;-1:-1:-1;;55300:14:0;;;55362:19;;;55300:14;53817:1582;-1:-1:-1;53817:1582:0:o;46669:689::-;46800:19;46806:2;46810:8;46800:5;:19::i;:::-;-1:-1:-1;;;;;46861:14:0;;;:19;46857:483;;46901:11;46915:13;46963:14;;;46996:233;47027:62;47066:1;47070:2;47074:7;;;;;;47083:5;47027:30;:62::i;:::-;47022:167;;47125:40;;-1:-1:-1;;;47125:40:0;;;;;;;;;;;47022:167;47224:3;47216:5;:11;46996:233;;47311:3;47294:13;;:20;47290:34;;47316:8;;;47290:34;46882:458;;46669:689;;;:::o;41197:2720::-;41270:20;41293:13;;;41321;;;41317:44;;41343:18;;-1:-1:-1;;;41343:18:0;;;;;;;;;;;41317:44;-1:-1:-1;;;;;41849:22:0;;;;;;:18;:22;;;;14950:2;41849:22;;;:71;;41887:32;41875:45;;41849:71;;;42163:31;;;:17;:31;;;;;-1:-1:-1;28931:15:0;;28905:24;28901:46;28500:11;28475:23;28471:41;28468:52;28458:63;;42163:173;;42398:23;;;;42163:31;;41849:22;;43163:25;41849:22;;43016:335;43431:1;43417:12;43413:20;43371:346;43472:3;43463:7;43460:16;43371:346;;43690:7;43680:8;43677:1;43650:25;43647:1;43644;43639:59;43525:1;43512:15;43371:346;;;43375:77;43750:8;43762:1;43750:13;43746:45;;43772:19;;-1:-1:-1;;;43772:19:0;;;;;;;;;;;43746:45;43808:13;:19;-1:-1:-1;36753:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6114:545::-;6216:2;6211:3;6208:11;6205:448;;;6252:1;6277:5;6273:2;6266:17;6322:4;6318:2;6308:19;6392:2;6380:10;6376:19;6373:1;6369:27;6363:4;6359:38;6428:4;6416:10;6413:20;6410:47;;;-1:-1:-1;6451:4:1;6410:47;6506:2;6501:3;6497:12;6494:1;6490:20;6484:4;6480:31;6470:41;;6561:82;6579:2;6572:5;6569:13;6561:82;;;6624:17;;;6605:1;6594:13;6561:82;;6835:1352;6961:3;6955:10;6988:18;6980:6;6977:30;6974:56;;;7010:18;;:::i;:::-;7039:97;7129:6;7089:38;7121:4;7115:11;7089:38;:::i;:::-;7083:4;7039:97;:::i;:::-;7191:4;;7255:2;7244:14;;7272:1;7267:663;;;;7974:1;7991:6;7988:89;;;-1:-1:-1;8043:19:1;;;8037:26;7988:89;-1:-1:-1;;6792:1:1;6788:11;;;6784:24;6780:29;6770:40;6816:1;6812:11;;;6767:57;8090:81;;7237:944;;7267:663;6061:1;6054:14;;;6098:4;6085:18;;-1:-1:-1;;7303:20:1;;;7421:236;7435:7;7432:1;7429:14;7421:236;;;7524:19;;;7518:26;7503:42;;7616:27;;;;7584:1;7572:14;;;;7451:19;;7421:236;;;7425:3;7685:6;7676:7;7673:19;7670:201;;;7746:19;;;7740:26;-1:-1:-1;;7829:1:1;7825:14;;;7841:3;7821:24;7817:37;7813:42;7798:58;7783:74;;7670:201;-1:-1:-1;;;;;7917:1:1;7901:14;;;7897:22;7884:36;;-1:-1:-1;6835:1352:1:o;8192:127::-;8253:10;8248:3;8244:20;8241:1;8234:31;8284:4;8281:1;8274:15;8308:4;8305:1;8298:15;8324:128;8364:3;8395:1;8391:6;8388:1;8385:13;8382:39;;;8401:18;;:::i;:::-;-1:-1:-1;8437:9:1;;8324:128::o;9155:168::-;9195:7;9261:1;9257;9253:6;9249:14;9246:1;9243:21;9238:1;9231:9;9224:17;9220:45;9217:71;;;9268:18;;:::i;:::-;-1:-1:-1;9308:9:1;;9155:168::o;10105:722::-;10155:3;10196:5;10190:12;10225:36;10251:9;10225:36;:::i;:::-;10280:1;10297:18;;;10324:133;;;;10471:1;10466:355;;;;10290:531;;10324:133;-1:-1:-1;;10357:24:1;;10345:37;;10430:14;;10423:22;10411:35;;10402:45;;;-1:-1:-1;10324:133:1;;10466:355;10497:5;10494:1;10487:16;10526:4;10571:2;10568:1;10558:16;10596:1;10610:165;10624:6;10621:1;10618:13;10610:165;;;10702:14;;10689:11;;;10682:35;10745:16;;;;10639:10;;10610:165;;;10614:3;;;10804:6;10799:3;10795:16;10788:23;;10290:531;;;;;10105:722;;;;:::o;10832:456::-;11053:3;11081:38;11115:3;11107:6;11081:38;:::i;:::-;11148:6;11142:13;11164:52;11209:6;11205:2;11198:4;11190:6;11186:17;11164:52;:::i;:::-;11232:50;11274:6;11270:2;11266:15;11258:6;11232:50;:::i;:::-;11225:57;10832:456;-1:-1:-1;;;;;;;10832:456:1:o;12061:489::-;-1:-1:-1;;;;;12330:15:1;;;12312:34;;12382:15;;12377:2;12362:18;;12355:43;12429:2;12414:18;;12407:34;;;12477:3;12472:2;12457:18;;12450:31;;;12255:4;;12498:46;;12524:19;;12516:6;12498:46;:::i;:::-;12490:54;12061:489;-1:-1:-1;;;;;;12061:489:1:o;12555:249::-;12624:6;12677:2;12665:9;12656:7;12652:23;12648:32;12645:52;;;12693:1;12690;12683:12;12645:52;12725:9;12719:16;12744:30;12768:5;12744:30;:::i
Swarm Source
ipfs://73a417b371bae4664264fa841551c6078b3a7ca7bda83136903a3ed7541f6ffd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.