Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 55 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Mint | 17165535 | 1040 days ago | IN | 0 ETH | 0.00493262 | ||||
| Set Approval For... | 17145926 | 1042 days ago | IN | 0 ETH | 0.00176818 | ||||
| Mint | 17139870 | 1043 days ago | IN | 0 ETH | 0.00282458 | ||||
| Mint | 17139865 | 1043 days ago | IN | 0 ETH | 0.00293316 | ||||
| Mint | 17139860 | 1043 days ago | IN | 0 ETH | 0.00284116 | ||||
| Mint | 17139851 | 1043 days ago | IN | 0 ETH | 0.0027628 | ||||
| Mint | 17139845 | 1043 days ago | IN | 0 ETH | 0.00269271 | ||||
| Mint | 17139825 | 1043 days ago | IN | 0 ETH | 0.00272773 | ||||
| Mint | 17139823 | 1043 days ago | IN | 0 ETH | 0.00271159 | ||||
| Mint | 17139814 | 1043 days ago | IN | 0 ETH | 0.00268902 | ||||
| Mint | 17139806 | 1043 days ago | IN | 0 ETH | 0.0027278 | ||||
| Mint | 17139803 | 1043 days ago | IN | 0 ETH | 0.00286248 | ||||
| Mint | 17139745 | 1043 days ago | IN | 0 ETH | 0.002776 | ||||
| Mint | 17139744 | 1043 days ago | IN | 0 ETH | 0.00274407 | ||||
| Mint | 17139725 | 1043 days ago | IN | 0 ETH | 0.00312671 | ||||
| Mint | 17139717 | 1043 days ago | IN | 0 ETH | 0.00262866 | ||||
| Mint | 17139703 | 1043 days ago | IN | 0 ETH | 0.0024895 | ||||
| Mint | 17139692 | 1043 days ago | IN | 0 ETH | 0.00272186 | ||||
| Mint | 17139682 | 1043 days ago | IN | 0 ETH | 0.00281251 | ||||
| Mint | 17139675 | 1043 days ago | IN | 0 ETH | 0.00265593 | ||||
| Mint | 17139632 | 1043 days ago | IN | 0 ETH | 0.00296594 | ||||
| Mint | 17139605 | 1043 days ago | IN | 0 ETH | 0.00271029 | ||||
| Mint | 17133647 | 1044 days ago | IN | 0 ETH | 0.00253466 | ||||
| Mint | 17133641 | 1044 days ago | IN | 0 ETH | 0.00292936 | ||||
| Collect Reserves | 17128986 | 1045 days ago | IN | 0 ETH | 0.00258306 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Ethi
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-04-25
*/
// SPDX-License-Identifier: MIT
// ███████╗████████╗██╗ ██╗██╗
// ██╔════╝╚══██╔══╝██║ ██║██║
// █████╗ ██║ ███████║██║
// ██╔══╝ ██║ ██╔══██║██║
// ███████╗ ██║ ██║ ██║██║
// ╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/interfaces/IERC2981.sol
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface for the NFT Royalty Standard.
*
* A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
* support for royalty payments across all NFT marketplaces and ecosystem participants.
*
* _Available since v4.5._
*/
interface IERC2981 is IERC165 {
/**
* @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount);
}
// File: @openzeppelin/contracts/token/common/ERC2981.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
*
* Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
*
* Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
* fee is specified in basis points by default.
*
* IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
*
* _Available since v4.5._
*/
abstract contract ERC2981 is IERC2981, ERC165 {
struct RoyaltyInfo {
address receiver;
uint96 royaltyFraction;
}
RoyaltyInfo private _defaultRoyaltyInfo;
mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(IERC165, ERC165)
returns (bool)
{
return
interfaceId == type(IERC2981).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @inheritdoc IERC2981
*/
function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
public
view
virtual
override
returns (address, uint256)
{
RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];
if (royalty.receiver == address(0)) {
royalty = _defaultRoyaltyInfo;
}
uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) /
_feeDenominator();
return (royalty.receiver, royaltyAmount);
}
/**
* @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
* fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
* override.
*/
function _feeDenominator() internal pure virtual returns (uint96) {
return 10000;
}
/**
* @dev Sets the royalty information that all ids in this contract will default to.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setDefaultRoyalty(address receiver, uint96 feeNumerator)
internal
virtual
{
require(
feeNumerator <= _feeDenominator(),
"ERC2981: royalty fee will exceed salePrice"
);
require(receiver != address(0), "ERC2981: invalid receiver");
_defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Removes default royalty information.
*/
function _deleteDefaultRoyalty() internal virtual {
delete _defaultRoyaltyInfo;
}
/**
* @dev Sets the royalty information for a specific token id, overriding the global default.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setTokenRoyalty(
uint256 tokenId,
address receiver,
uint96 feeNumerator
) internal virtual {
require(
feeNumerator <= _feeDenominator(),
"ERC2981: royalty fee will exceed salePrice"
);
require(receiver != address(0), "ERC2981: Invalid parameters");
_tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Resets royalty information for the token id back to the global default.
*/
function _resetTokenRoyalty(uint256 tokenId) internal virtual {
delete _tokenRoyaltyInfo[tokenId];
}
}
// File: closedsea/src/OperatorFilterer.sol
pragma solidity ^0.8.4;
/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
/// @dev The default OpenSea operator blocklist subscription.
address internal constant _DEFAULT_SUBSCRIPTION =
0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
/// @dev The OpenSea operator filter registry.
address internal constant _OPERATOR_FILTER_REGISTRY =
0x000000000000AAeB6D7670E522A718067333cd4E;
/// @dev Registers the current contract to OpenSea's operator filter,
/// and subscribe to the default OpenSea operator blocklist.
/// Note: Will not revert nor update existing settings for repeated registration.
function _registerForOperatorFiltering() internal virtual {
_registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
}
/// @dev Registers the current contract to OpenSea's operator filter.
/// Note: Will not revert nor update existing settings for repeated registration.
function _registerForOperatorFiltering(
address subscriptionOrRegistrantToCopy,
bool subscribe
) internal virtual {
/// @solidity memory-safe-assembly
assembly {
let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.
// Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
subscriptionOrRegistrantToCopy := shr(
96,
shl(96, subscriptionOrRegistrantToCopy)
)
for {
} iszero(subscribe) {
} {
if iszero(subscriptionOrRegistrantToCopy) {
functionSelector := 0x4420e486 // `register(address)`.
break
}
functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
break
}
// Store the function selector.
mstore(0x00, shl(224, functionSelector))
// Store the `address(this)`.
mstore(0x04, address())
// Store the `subscriptionOrRegistrantToCopy`.
mstore(0x24, subscriptionOrRegistrantToCopy)
// Register into the registry.
if iszero(
call(
gas(),
_OPERATOR_FILTER_REGISTRY,
0,
0x00,
0x44,
0x00,
0x04
)
) {
// If the function selector has not been overwritten,
// it is an out-of-gas error.
if eq(shr(224, mload(0x00)), functionSelector) {
// To prevent gas under-estimation.
revert(0, 0)
}
}
// Restore the part of the free memory pointer that was overwritten,
// which is guaranteed to be zero, because of Solidity's memory size limits.
mstore(0x24, 0)
}
}
/// @dev Modifier to guard a function and revert if the caller is a blocked operator.
modifier onlyAllowedOperator(address from) virtual {
if (from != msg.sender) {
if (!_isPriorityOperator(msg.sender)) {
if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
}
}
_;
}
/// @dev Modifier to guard a function from approving a blocked operator..
modifier onlyAllowedOperatorApproval(address operator) virtual {
if (!_isPriorityOperator(operator)) {
if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
}
_;
}
/// @dev Helper function that reverts if the `operator` is blocked by the registry.
function _revertIfBlocked(address operator) private view {
/// @solidity memory-safe-assembly
assembly {
// Store the function selector of `isOperatorAllowed(address,address)`,
// shifted left by 6 bytes, which is enough for 8tb of memory.
// We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
mstore(0x00, 0xc6171134001122334455)
// Store the `address(this)`.
mstore(0x1a, address())
// Store the `operator`.
mstore(0x3a, operator)
// `isOperatorAllowed` always returns true if it does not revert.
if iszero(
staticcall(
gas(),
_OPERATOR_FILTER_REGISTRY,
0x16,
0x44,
0x00,
0x00
)
) {
// Bubble up the revert if the staticcall reverts.
returndatacopy(0x00, 0x00, returndatasize())
revert(0x00, returndatasize())
}
// We'll skip checking if `from` is inside the blacklist.
// Even though that can block transferring out of wrapper contracts,
// we don't want tokens to be stuck.
// Restore the part of the free memory pointer that was overwritten,
// which is guaranteed to be zero, if less than 8tb of memory is used.
mstore(0x3a, 0)
}
}
/// @dev For deriving contracts to override, so that operator filtering
/// can be turned on / off.
/// Returns true by default.
function _operatorFilteringEnabled() internal view virtual returns (bool) {
return true;
}
/// @dev For deriving contracts to override, so that preferred marketplaces can
/// skip operator filtering, helping users save gas.
/// Returns false for all inputs by default.
function _isPriorityOperator(address) internal view virtual returns (bool) {
return false;
}
}
// 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: erc721a/contracts/IERC721A.sol
// ERC721A Contracts v4.2.3
// 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 payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @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 payable;
/**
* @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 payable;
/**
* @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: erc721a/contracts/extensions/IERC721AQueryable.sol
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721AQueryable.
*/
interface IERC721AQueryable is IERC721A {
/**
* Invalid query range (`start` >= `stop`).
*/
error InvalidQueryRange();
/**
* @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
*
* If the `tokenId` is out of bounds:
*
* - `addr = address(0)`
* - `startTimestamp = 0`
* - `burned = false`
* - `extraData = 0`
*
* If the `tokenId` is burned:
*
* - `addr = <Address of owner before token was burned>`
* - `startTimestamp = <Timestamp when token was burned>`
* - `burned = true`
* - `extraData = <Extra data when token was burned>`
*
* Otherwise:
*
* - `addr = <Address of owner>`
* - `startTimestamp = <Timestamp of start of ownership>`
* - `burned = false`
* - `extraData = <Extra data at start of ownership>`
*/
function explicitOwnershipOf(uint256 tokenId)
external
view
returns (TokenOwnership memory);
/**
* @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
* See {ERC721AQueryable-explicitOwnershipOf}
*/
function explicitOwnershipsOf(uint256[] memory tokenIds)
external
view
returns (TokenOwnership[] memory);
/**
* @dev Returns an array of token IDs owned by `owner`,
* in the range [`start`, `stop`)
* (i.e. `start <= tokenId < stop`).
*
* This function allows for tokens to be queried if the collection
* grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
*
* Requirements:
*
* - `start < stop`
*/
function tokensOfOwnerIn(
address owner,
uint256 start,
uint256 stop
) external view returns (uint256[] memory);
/**
* @dev Returns an array of token IDs owned by `owner`.
*
* This function scans the ownership mapping and is O(`totalSupply`) in complexity.
* It is meant to be called off-chain.
*
* See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
* multiple smaller scans if the collection is large enough to cause
* an out-of-gas error (10K collections should be fine).
*/
function tokensOfOwner(address owner)
external
view
returns (uint256[] memory);
}
// File: erc721a/contracts/extensions/IERC721ABurnable.sol
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721ABurnable.
*/
interface IERC721ABurnable is IERC721A {
/**
* @dev Burns `tokenId`. See {ERC721A-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) external;
}
// File: erc721a/contracts/ERC721A.sol
// ERC721A Contracts v4.2.3
// 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 {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
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 0;
}
/**
* @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), ".json"))
: "";
}
/**
* @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
payable
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 payable 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 payable 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 payable 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`.
)
// The `iszero(eq(,))` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
// The compiler will optimize the `iszero` away for performance.
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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// 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)
}
}
}
// File: erc721a/contracts/extensions/ERC721AQueryable.sol
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @title ERC721AQueryable.
*
* @dev ERC721A subclass with convenience query functions.
*/
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
/**
* @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
*
* If the `tokenId` is out of bounds:
*
* - `addr = address(0)`
* - `startTimestamp = 0`
* - `burned = false`
* - `extraData = 0`
*
* If the `tokenId` is burned:
*
* - `addr = <Address of owner before token was burned>`
* - `startTimestamp = <Timestamp when token was burned>`
* - `burned = true`
* - `extraData = <Extra data when token was burned>`
*
* Otherwise:
*
* - `addr = <Address of owner>`
* - `startTimestamp = <Timestamp of start of ownership>`
* - `burned = false`
* - `extraData = <Extra data at start of ownership>`
*/
function explicitOwnershipOf(uint256 tokenId)
public
view
virtual
override
returns (TokenOwnership memory)
{
TokenOwnership memory ownership;
if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
return ownership;
}
ownership = _ownershipAt(tokenId);
if (ownership.burned) {
return ownership;
}
return _ownershipOf(tokenId);
}
/**
* @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
* See {ERC721AQueryable-explicitOwnershipOf}
*/
function explicitOwnershipsOf(uint256[] calldata tokenIds)
external
view
virtual
override
returns (TokenOwnership[] memory)
{
unchecked {
uint256 tokenIdsLength = tokenIds.length;
TokenOwnership[] memory ownerships = new TokenOwnership[](
tokenIdsLength
);
for (uint256 i; i != tokenIdsLength; ++i) {
ownerships[i] = explicitOwnershipOf(tokenIds[i]);
}
return ownerships;
}
}
/**
* @dev Returns an array of token IDs owned by `owner`,
* in the range [`start`, `stop`)
* (i.e. `start <= tokenId < stop`).
*
* This function allows for tokens to be queried if the collection
* grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
*
* Requirements:
*
* - `start < stop`
*/
function tokensOfOwnerIn(
address owner,
uint256 start,
uint256 stop
) external view virtual override returns (uint256[] memory) {
unchecked {
if (start >= stop) revert InvalidQueryRange();
uint256 tokenIdsIdx;
uint256 stopLimit = _nextTokenId();
// Set `start = max(start, _startTokenId())`.
if (start < _startTokenId()) {
start = _startTokenId();
}
// Set `stop = min(stop, stopLimit)`.
if (stop > stopLimit) {
stop = stopLimit;
}
uint256 tokenIdsMaxLength = balanceOf(owner);
// Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
// to cater for cases where `balanceOf(owner)` is too big.
if (start < stop) {
uint256 rangeLength = stop - start;
if (rangeLength < tokenIdsMaxLength) {
tokenIdsMaxLength = rangeLength;
}
} else {
tokenIdsMaxLength = 0;
}
uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
if (tokenIdsMaxLength == 0) {
return tokenIds;
}
// We need to call `explicitOwnershipOf(start)`,
// because the slot at `start` may not be initialized.
TokenOwnership memory ownership = explicitOwnershipOf(start);
address currOwnershipAddr;
// If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
// `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
if (!ownership.burned) {
currOwnershipAddr = ownership.addr;
}
for (
uint256 i = start;
i != stop && tokenIdsIdx != tokenIdsMaxLength;
++i
) {
ownership = _ownershipAt(i);
if (ownership.burned) {
continue;
}
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
tokenIds[tokenIdsIdx++] = i;
}
}
// Downsize the array to fit.
assembly {
mstore(tokenIds, tokenIdsIdx)
}
return tokenIds;
}
}
/**
* @dev Returns an array of token IDs owned by `owner`.
*
* This function scans the ownership mapping and is O(`totalSupply`) in complexity.
* It is meant to be called off-chain.
*
* See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
* multiple smaller scans if the collection is large enough to cause
* an out-of-gas error (10K collections should be fine).
*/
function tokensOfOwner(address owner)
external
view
virtual
override
returns (uint256[] memory)
{
unchecked {
uint256 tokenIdsIdx;
address currOwnershipAddr;
uint256 tokenIdsLength = balanceOf(owner);
uint256[] memory tokenIds = new uint256[](tokenIdsLength);
TokenOwnership memory ownership;
for (
uint256 i = _startTokenId();
tokenIdsIdx != tokenIdsLength;
++i
) {
ownership = _ownershipAt(i);
if (ownership.burned) {
continue;
}
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
tokenIds[tokenIdsIdx++] = i;
}
}
return tokenIds;
}
}
}
// File: erc721a/contracts/extensions/ERC721ABurnable.sol
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @title ERC721ABurnable.
*
* @dev ERC721A token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
/**
* @dev Burns `tokenId`. See {ERC721A-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual override {
_burn(tokenId, true);
}
}
// File: ethi.sol
pragma solidity ^0.8.18;
error MaxSupplyReached();
error WithdrawalFailed();
error WrongEtherAmount();
error InvalidMintAddress();
error ArrayLengthMismatch();
error MaxPerTransactionReached();
error MintFromContractNotAllowed();
contract Ethi is
Ownable,
ERC721A,
ERC2981,
ERC721ABurnable,
ERC721AQueryable,
OperatorFilterer
{
uint256 private constant MAX_SUPPLY = 5555;
uint256 private constant MAX_PER_TRANSACTION = 10;
uint256 private constant ADDITIONAL_MINT_PRICE = 0.0055 ether;
bool public mintPaused = true;
bool public operatorFilteringEnabled = true;
string tokenBaseUri =
"ipfs://QmVeA8ADYZ7A6TtpHy66aYcPLa9Xa7omQFySxGHH4wNCKT/";
constructor(address deployer) ERC721A("ETHI", "ETHI") {
_mint(deployer, 1);
_transferOwnership(deployer);
_registerForOperatorFiltering();
_setDefaultRoyalty(deployer, 500);
}
function mint(uint8 quantity) external payable {
require(!mintPaused, "Minting is paused");
require(_totalMinted() + quantity <= MAX_SUPPLY, "Max supply reached");
require(quantity <= MAX_PER_TRANSACTION, "Max per transaction reached");
require(msg.sender == tx.origin, "Mint from contract not allowed");
require(
numberMinted(msg.sender) + quantity <= MAX_PER_TRANSACTION,
"limit per wallet exceeded"
);
uint8 payForCount = quantity;
uint64 freeMintCount = _getAux(msg.sender);
if (freeMintCount < 1) {
payForCount = quantity - 1;
_setAux(msg.sender, 1);
}
if (payForCount > 0) {
if (msg.value < payForCount * ADDITIONAL_MINT_PRICE)
revert WrongEtherAmount();
}
_mint(msg.sender, quantity);
}
function numberMinted(address owner) public view returns (uint256) {
return _numberMinted(owner);
}
function batchTransferFrom(
address[] calldata recipients,
uint256[] calldata tokenIds
) external {
uint256 tokenIdsLength = tokenIds.length;
if (tokenIdsLength != recipients.length) revert ArrayLengthMismatch();
for (uint256 i = 0; i < tokenIdsLength; ) {
transferFrom(msg.sender, recipients[i], tokenIds[i]);
unchecked {
++i;
}
}
}
function _startTokenId() internal pure override returns (uint256) {
return 1;
}
function _baseURI() internal view override returns (string memory) {
return tokenBaseUri;
}
function freeMintedCount(address owner) external view returns (uint64) {
return _getAux(owner);
}
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC721A, IERC721A, ERC2981)
returns (bool)
{
return
ERC721A.supportsInterface(interfaceId) ||
ERC2981.supportsInterface(interfaceId);
}
function _operatorFilteringEnabled() internal view override returns (bool) {
return operatorFilteringEnabled;
}
function _isPriorityOperator(address operator)
internal
pure
override
returns (bool)
{
return operator == address(0x1E0049783F008A0085193E00003D00cd54003c71);
}
function setApprovalForAll(address operator, bool approved)
public
override(ERC721A, IERC721A)
onlyAllowedOperatorApproval(operator)
{
super.setApprovalForAll(operator, approved);
}
function approve(address operator, uint256 tokenId)
public
payable
override(ERC721A, IERC721A)
onlyAllowedOperatorApproval(operator)
{
super.approve(operator, tokenId);
}
function transferFrom(
address from,
address to,
uint256 tokenId
) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId, data);
}
function setDefaultRoyalty(address receiver, uint96 feeNumerator)
public
onlyOwner
{
_setDefaultRoyalty(receiver, feeNumerator);
}
function setOperatorFilteringEnabled(bool value) public onlyOwner {
operatorFilteringEnabled = value;
}
function setBaseURI(string calldata newBaseUri) external onlyOwner {
tokenBaseUri = newBaseUri;
}
function flipSale() external onlyOwner {
mintPaused = !mintPaused;
}
function claimEidi() external {}
function collectReserves(uint16 quantity) external onlyOwner {
require(_totalMinted() + quantity <= MAX_SUPPLY, "Max supply reached");
_mint(msg.sender, quantity);
}
function withdraw() public onlyOwner {
(bool success, ) = payable(owner()).call{value: address(this).balance}(
""
);
if (!success) {
revert WithdrawalFailed();
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"deployer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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"},{"inputs":[],"name":"WithdrawalFailed","type":"error"},{"inputs":[],"name":"WrongEtherAmount","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":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEidi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"uint8","name":"quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
600b805461ffff191661010117905560e0604052603660808181529062002bd160a039600c906200003190826200048d565b503480156200003f57600080fd5b5060405162002c2738038062002c27833981016040819052620000629162000559565b604051806040016040528060048152602001634554484960e01b815250604051806040016040528060048152602001634554484960e01b815250620000b6620000b06200011260201b60201c565b62000116565b6003620000c483826200048d565b506004620000d382826200048d565b506001808155620000e8925083915062000166565b620000f38162000116565b620000fd62000247565b6200010b816101f46200026a565b506200058b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60015460008290036200018c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b1783179055828401908390839060008051602062002c078339815191528180a4600183015b8181146200021b578083600060008051602062002c07833981519152600080a4600101620001f2565b50816000036200023d57604051622e076360e81b815260040160405180910390fd5b600155505b505050565b62000268733cc6cdda760b79bafa08df41ecfa224f810dceb660016200036f565b565b6127106001600160601b0382161115620002de5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003365760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620002d5565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6001600160a01b0390911690637d3e3dbe816200039f5782620003985750634420e4866200039f565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620003df578060005160e01c03620003df57600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200041457607f821691505b6020821081036200043557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024257600081815260208120601f850160051c81016020861015620004645750805b601f850160051c820191505b81811015620004855782815560010162000470565b505050505050565b81516001600160401b03811115620004a957620004a9620003e9565b620004c181620004ba8454620003ff565b846200043b565b602080601f831160018114620004f95760008415620004e05750858301515b600019600386901b1c1916600185901b17855562000485565b600085815260208120601f198616915b828110156200052a5788860151825594840194600190910190840162000509565b5085821015620005495787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200056c57600080fd5b81516001600160a01b03811681146200058457600080fd5b9392505050565b612636806200059b6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610601578063dc33e68114610621578063e985e9c514610641578063f2fde38b1461068a578063fb796e6c146106aa57600080fd5b8063a22cb46514610581578063b7c0b8e8146105a1578063b88d4fde146105c1578063c23dc68f146105d457600080fd5b80638da5cb5b116100e75780638da5cb5b146104ea5780639261e0ca1461050857806395d89b4114610514578063981332351461052957806399a2557a1461056157600080fd5b8063715018a6146104795780637ba5e6211461048e5780637e4831d3146104a35780638462151c146104bd57600080fd5b80632a55205a1161019b57806355f804b31161016a57806355f804b3146103d95780635bbb2177146103f95780636352211e146104265780636ecd23061461044657806370a082311461045957600080fd5b80632a55205a146103525780633ccfd60b1461039157806342842e0e146103a657806342966c68146103b957600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806314d38725146102d857806318160ddd146102f85780631b1f40191461031f57806323b872dd1461033f57600080fd5b806301ffc9a71461021457806304634d8d1461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611dc4565b6106c9565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611dfd565b6106e9565b005b34801561027757600080fd5b506102806106ff565b6040516102409190611e90565b34801561029957600080fd5b506102ad6102a8366004611ea3565b610791565b6040516001600160a01b039091168152602001610240565b6102696102d3366004611ebc565b6107d5565b3480156102e457600080fd5b506102696102f3366004611f2a565b61080b565b34801561030457600080fd5b5060025460015403600019015b604051908152602001610240565b34801561032b57600080fd5b5061026961033a366004611f95565b610890565b61026961034d366004611fb9565b610910565b34801561035e57600080fd5b5061037261036d366004611ff5565b610958565b604080516001600160a01b039093168352602083019190915201610240565b34801561039d57600080fd5b50610269610a06565b6102696103b4366004611fb9565b610a82565b3480156103c557600080fd5b506102696103d4366004611ea3565b610ac4565b3480156103e557600080fd5b506102696103f4366004612017565b610acf565b34801561040557600080fd5b50610419610414366004612088565b610ae4565b6040516102409190612105565b34801561043257600080fd5b506102ad610441366004611ea3565b610baf565b610269610454366004612147565b610bba565b34801561046557600080fd5b5061031161047436600461216a565b610e04565b34801561048557600080fd5b50610269610e52565b34801561049a57600080fd5b50610269610e66565b3480156104af57600080fd5b50600b546102349060ff1681565b3480156104c957600080fd5b506104dd6104d836600461216a565b610e82565b6040516102409190612185565b3480156104f657600080fd5b506000546001600160a01b03166102ad565b34801561026957600080fd5b34801561052057600080fd5b50610280610f8a565b34801561053557600080fd5b5061054961054436600461216a565b610f99565b6040516001600160401b039091168152602001610240565b34801561056d57600080fd5b506104dd61057c3660046121bd565b610fba565b34801561058d57600080fd5b5061026961059c366004612200565b611141565b3480156105ad57600080fd5b506102696105bc366004612233565b611172565b6102696105cf366004612264565b611194565b3480156105e057600080fd5b506105f46105ef366004611ea3565b6111de565b604051610240919061233f565b34801561060d57600080fd5b5061028061061c366004611ea3565b611266565b34801561062d57600080fd5b5061031161063c36600461216a565b6112e9565b34801561064d57600080fd5b5061023461065c36600461234d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069657600080fd5b506102696106a536600461216a565b611313565b3480156106b657600080fd5b50600b5461023490610100900460ff1681565b60006106d482611389565b806106e357506106e3826113d7565b92915050565b6106f16113fc565b6106fb8282611456565b5050565b60606003805461070e90612377565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90612377565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b600061079c82611553565b6107b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816107df81611588565b6107fc57600b54610100900460ff16156107fc576107fc816115aa565b61080683836115ee565b505050565b8083811461082c5760405163512509d360e11b815260040160405180910390fd5b60005b81811015610888576108803387878481811061084d5761084d6123b1565b9050602002016020810190610862919061216a565b868685818110610874576108746123b1565b90506020020135610910565b60010161082f565b505050505050565b6108986113fc565b6115b38161ffff166108ad6001546000190190565b6108b791906123dd565b11156108ff5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064015b60405180910390fd5b61090d338261ffff1661168e565b50565b826001600160a01b03811633146109475761092a33611588565b61094757600b54610100900460ff161561094757610947336115aa565b610952848484611768565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109cd5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109ec906001600160601b0316876123f0565b6109f69190612407565b91519350909150505b9250929050565b610a0e6113fc565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610a5b576040519150601f19603f3d011682016040523d82523d6000602084013e610a60565b606091505b505090508061090d576040516327fcd9d160e01b815260040160405180910390fd5b826001600160a01b0381163314610ab957610a9c33611588565b610ab957600b54610100900460ff1615610ab957610ab9336115aa565b6109528484846118f5565b61090d816001611910565b610ad76113fc565b600c61080682848361246f565b6060816000816001600160401b03811115610b0157610b0161224e565b604051908082528060200260200182016040528015610b5357816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610b1f5790505b50905060005b828114610ba657610b81868683818110610b7557610b756123b1565b905060200201356111de565b828281518110610b9357610b936123b1565b6020908102919091010152600101610b59565b50949350505050565b60006106e382611a49565b600b5460ff1615610c015760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016108f6565b6115b38160ff16610c156001546000190190565b610c1f91906123dd565b1115610c625760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016108f6565b600a8160ff161115610cb65760405162461bcd60e51b815260206004820152601b60248201527f4d617820706572207472616e73616374696f6e2072656163686564000000000060448201526064016108f6565b333214610d055760405162461bcd60e51b815260206004820152601e60248201527f4d696e742066726f6d20636f6e7472616374206e6f7420616c6c6f776564000060448201526064016108f6565b600a8160ff16610d14336112e9565b610d1e91906123dd565b1115610d6c5760405162461bcd60e51b815260206004820152601960248201527f6c696d6974207065722077616c6c65742065786365656465640000000000000060448201526064016108f6565b33600090815260066020526040902054819060c01c6001811015610dba57610d9560018461252e565b33600090815260066020526040902080546001600160c01b0316600160c01b17905591505b60ff821615610df757610dd766138a388a43c00060ff84166123f0565b341015610df7576040516331fc877f60e01b815260040160405180910390fd5b610806338460ff1661168e565b60006001600160a01b038216610e2d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b610e5a6113fc565b610e646000611ab8565b565b610e6e6113fc565b600b805460ff19811660ff90911615179055565b60606000806000610e9285610e04565b90506000816001600160401b03811115610eae57610eae61224e565b604051908082528060200260200182016040528015610ed7578160200160208202803683370190505b509050610f0460408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610f7e57610f1781611b08565b91508160400151610f765781516001600160a01b031615610f3757815194505b876001600160a01b0316856001600160a01b031603610f765780838780600101985081518110610f6957610f696123b1565b6020026020010181815250505b600101610f07565b50909695505050505050565b60606004805461070e90612377565b6001600160a01b03811660009081526006602052604081205460c01c6106e3565b6060818310610fdc57604051631960ccad60e11b815260040160405180910390fd5b600080610fe860015490565b90506001851015610ff857600194505b80841115611004578093505b600061100f87610e04565b90508486101561102e5785850381811015611028578091505b50611032565b5060005b6000816001600160401b0381111561104c5761104c61224e565b604051908082528060200260200182016040528015611075578160200160208202803683370190505b5090508160000361108b57935061113a92505050565b6000611096886111de565b9050600081604001516110a7575080515b885b8881141580156110b95750848714155b1561112e576110c781611b08565b925082604001516111265782516001600160a01b0316156110e757825191505b8a6001600160a01b0316826001600160a01b0316036111265780848880600101995081518110611119576111196123b1565b6020026020010181815250505b6001016110a9565b50505092835250909150505b9392505050565b8161114b81611588565b61116857600b54610100900460ff161561116857611168816115aa565b6108068383611b44565b61117a6113fc565b600b80549115156101000261ff0019909216919091179055565b836001600160a01b03811633146111cb576111ae33611588565b6111cb57600b54610100900460ff16156111cb576111cb336115aa565b6111d785858585611bb0565b5050505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061123757506001548310155b156112425792915050565b61124b83611b08565b905080604001511561125d5792915050565b61113a83611bf4565b606061127182611553565b61128e57604051630a14c4b560e41b815260040160405180910390fd5b6000611298611c29565b905080516000036112b8576040518060200160405280600081525061113a565b806112c284611c38565b6040516020016112d3929190612547565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260066020526040808220546001600160401b03911c166106e3565b61131b6113fc565b6001600160a01b0381166113805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f6565b61090d81611ab8565b60006301ffc9a760e01b6001600160e01b0319831614806113ba57506380ac58cd60e01b6001600160e01b03198316145b806106e35750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b14806106e357506106e382611389565b6000546001600160a01b03163314610e645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f6565b6127106001600160601b03821611156114c45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016108f6565b6001600160a01b03821661151a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016108f6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b600081600111158015611567575060015482105b80156106e3575050600090815260056020526040902054600160e01b161590565b6001600160a01b0316731e0049783f008a0085193e00003d00cd54003c711490565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6115e6573d6000803e3d6000fd5b6000603a5250565b60006115f982610baf565b9050336001600160a01b0382161461163257611615813361065c565b611632576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60015460008290036116b35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083906000805160206125e18339815191528180a4600183015b81811461173e57808360006000805160206125e1833981519152600080a4600101611718565b508160000361175f57604051622e076360e81b815260040160405180910390fd5b60015550505050565b600061177382611a49565b9050836001600160a01b0316816001600160a01b0316146117a65760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546117d28187335b6001600160a01b039081169116811491141790565b6117fd576117e0863361065c565b6117fd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661182457604051633a954ecd60e21b815260040160405180910390fd5b801561182f57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036118c1576001840160008181526005602052604081205490036118bf5760015481146118bf5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206125e183398151915260405160405180910390a4610888565b61080683838360405180602001604052806000815250611194565b600061191b83611a49565b90508060008061193986600090815260076020526040902080549091565b9150915084156119795761194e8184336117bd565b6119795761195c833361065c565b61197957604051632ce44b5f60e11b815260040160405180910390fd5b801561198457600082555b6001600160a01b038316600081815260066020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260056020526040812091909155600160e11b85169003611a1257600186016000818152600560205260408120549003611a10576001548114611a105760008181526005602052604090208590555b505b60405186906000906001600160a01b038616906000805160206125e1833981519152908390a4505060028054600101905550505050565b60008180600111611a9f57600154811015611a9f5760008181526005602052604081205490600160e01b82169003611a9d575b8060000361113a575060001901600081815260056020526040902054611a7c565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600560205260409020546106e390611c7c565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bbb848484610910565b6001600160a01b0383163b1561095257611bd784848484611cc3565b610952576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160808101825260008082526020820181905291810182905260608101919091526106e3611c2483611a49565b611c7c565b6060600c805461070e90612377565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611c525750819003601f19909101908152919050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cf8903390899088908890600401612586565b6020604051808303816000875af1925050508015611d33575060408051601f3d908101601f19168201909252611d30918101906125c3565b60015b611d91573d808015611d61576040519150601f19603f3d011682016040523d82523d6000602084013e611d66565b606091505b508051600003611d89576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b03198116811461090d57600080fd5b600060208284031215611dd657600080fd5b813561113a81611dae565b80356001600160a01b0381168114611df857600080fd5b919050565b60008060408385031215611e1057600080fd5b611e1983611de1565b915060208301356001600160601b0381168114611e3557600080fd5b809150509250929050565b60005b83811015611e5b578181015183820152602001611e43565b50506000910152565b60008151808452611e7c816020860160208601611e40565b601f01601f19169290920160200192915050565b60208152600061113a6020830184611e64565b600060208284031215611eb557600080fd5b5035919050565b60008060408385031215611ecf57600080fd5b611ed883611de1565b946020939093013593505050565b60008083601f840112611ef857600080fd5b5081356001600160401b03811115611f0f57600080fd5b6020830191508360208260051b85010111156109ff57600080fd5b60008060008060408587031215611f4057600080fd5b84356001600160401b0380821115611f5757600080fd5b611f6388838901611ee6565b90965094506020870135915080821115611f7c57600080fd5b50611f8987828801611ee6565b95989497509550505050565b600060208284031215611fa757600080fd5b813561ffff8116811461113a57600080fd5b600080600060608486031215611fce57600080fd5b611fd784611de1565b9250611fe560208501611de1565b9150604084013590509250925092565b6000806040838503121561200857600080fd5b50508035926020909101359150565b6000806020838503121561202a57600080fd5b82356001600160401b038082111561204157600080fd5b818501915085601f83011261205557600080fd5b81358181111561206457600080fd5b86602082850101111561207657600080fd5b60209290920196919550909350505050565b6000806020838503121561209b57600080fd5b82356001600160401b038111156120b157600080fd5b6120bd85828601611ee6565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610f7e576121348385516120c9565b9284019260809290920191600101612121565b60006020828403121561215957600080fd5b813560ff8116811461113a57600080fd5b60006020828403121561217c57600080fd5b61113a82611de1565b6020808252825182820181905260009190848201906040850190845b81811015610f7e578351835292840192918401916001016121a1565b6000806000606084860312156121d257600080fd5b6121db84611de1565b95602085013595506040909401359392505050565b80358015158114611df857600080fd5b6000806040838503121561221357600080fd5b61221c83611de1565b915061222a602084016121f0565b90509250929050565b60006020828403121561224557600080fd5b61113a826121f0565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561227a57600080fd5b61228385611de1565b935061229160208601611de1565b92506040850135915060608501356001600160401b03808211156122b457600080fd5b818701915087601f8301126122c857600080fd5b8135818111156122da576122da61224e565b604051601f8201601f19908116603f011681019083821181831017156123025761230261224e565b816040528281528a602084870101111561231b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b608081016106e382846120c9565b6000806040838503121561236057600080fd5b61236983611de1565b915061222a60208401611de1565b600181811c9082168061238b57607f821691505b6020821081036123ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106e3576106e36123c7565b80820281158282048414176106e3576106e36123c7565b60008261242457634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561080657600081815260208120601f850160051c810160208610156124505750805b601f850160051c820191505b818110156108885782815560010161245c565b6001600160401b038311156124865761248661224e565b61249a836124948354612377565b83612429565b6000601f8411600181146124ce57600085156124b65750838201355b600019600387901b1c1916600186901b1783556111d7565b600083815260209020601f19861690835b828110156124ff57868501358255602094850194600190920191016124df565b508682101561251c5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60ff82811682821603908111156106e3576106e36123c7565b60008351612559818460208801611e40565b83519083019061256d818360208801611e40565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b990830184611e64565b9695505050505050565b6000602082840312156125d557600080fd5b815161113a81611dae56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220734c2f42e8ec24679c59a37c02c74d8abb1e9daf7bd4041a3c65817e59b2fb3564736f6c63430008120033697066733a2f2f516d566541384144595a37413654747048793636615963504c61395861376f6d514679537847484834774e434b542fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000008f71d8a2c4418da8ee70b1742049d3e67c903c93
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610601578063dc33e68114610621578063e985e9c514610641578063f2fde38b1461068a578063fb796e6c146106aa57600080fd5b8063a22cb46514610581578063b7c0b8e8146105a1578063b88d4fde146105c1578063c23dc68f146105d457600080fd5b80638da5cb5b116100e75780638da5cb5b146104ea5780639261e0ca1461050857806395d89b4114610514578063981332351461052957806399a2557a1461056157600080fd5b8063715018a6146104795780637ba5e6211461048e5780637e4831d3146104a35780638462151c146104bd57600080fd5b80632a55205a1161019b57806355f804b31161016a57806355f804b3146103d95780635bbb2177146103f95780636352211e146104265780636ecd23061461044657806370a082311461045957600080fd5b80632a55205a146103525780633ccfd60b1461039157806342842e0e146103a657806342966c68146103b957600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806314d38725146102d857806318160ddd146102f85780631b1f40191461031f57806323b872dd1461033f57600080fd5b806301ffc9a71461021457806304634d8d1461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611dc4565b6106c9565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611dfd565b6106e9565b005b34801561027757600080fd5b506102806106ff565b6040516102409190611e90565b34801561029957600080fd5b506102ad6102a8366004611ea3565b610791565b6040516001600160a01b039091168152602001610240565b6102696102d3366004611ebc565b6107d5565b3480156102e457600080fd5b506102696102f3366004611f2a565b61080b565b34801561030457600080fd5b5060025460015403600019015b604051908152602001610240565b34801561032b57600080fd5b5061026961033a366004611f95565b610890565b61026961034d366004611fb9565b610910565b34801561035e57600080fd5b5061037261036d366004611ff5565b610958565b604080516001600160a01b039093168352602083019190915201610240565b34801561039d57600080fd5b50610269610a06565b6102696103b4366004611fb9565b610a82565b3480156103c557600080fd5b506102696103d4366004611ea3565b610ac4565b3480156103e557600080fd5b506102696103f4366004612017565b610acf565b34801561040557600080fd5b50610419610414366004612088565b610ae4565b6040516102409190612105565b34801561043257600080fd5b506102ad610441366004611ea3565b610baf565b610269610454366004612147565b610bba565b34801561046557600080fd5b5061031161047436600461216a565b610e04565b34801561048557600080fd5b50610269610e52565b34801561049a57600080fd5b50610269610e66565b3480156104af57600080fd5b50600b546102349060ff1681565b3480156104c957600080fd5b506104dd6104d836600461216a565b610e82565b6040516102409190612185565b3480156104f657600080fd5b506000546001600160a01b03166102ad565b34801561026957600080fd5b34801561052057600080fd5b50610280610f8a565b34801561053557600080fd5b5061054961054436600461216a565b610f99565b6040516001600160401b039091168152602001610240565b34801561056d57600080fd5b506104dd61057c3660046121bd565b610fba565b34801561058d57600080fd5b5061026961059c366004612200565b611141565b3480156105ad57600080fd5b506102696105bc366004612233565b611172565b6102696105cf366004612264565b611194565b3480156105e057600080fd5b506105f46105ef366004611ea3565b6111de565b604051610240919061233f565b34801561060d57600080fd5b5061028061061c366004611ea3565b611266565b34801561062d57600080fd5b5061031161063c36600461216a565b6112e9565b34801561064d57600080fd5b5061023461065c36600461234d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069657600080fd5b506102696106a536600461216a565b611313565b3480156106b657600080fd5b50600b5461023490610100900460ff1681565b60006106d482611389565b806106e357506106e3826113d7565b92915050565b6106f16113fc565b6106fb8282611456565b5050565b60606003805461070e90612377565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90612377565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b600061079c82611553565b6107b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816107df81611588565b6107fc57600b54610100900460ff16156107fc576107fc816115aa565b61080683836115ee565b505050565b8083811461082c5760405163512509d360e11b815260040160405180910390fd5b60005b81811015610888576108803387878481811061084d5761084d6123b1565b9050602002016020810190610862919061216a565b868685818110610874576108746123b1565b90506020020135610910565b60010161082f565b505050505050565b6108986113fc565b6115b38161ffff166108ad6001546000190190565b6108b791906123dd565b11156108ff5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064015b60405180910390fd5b61090d338261ffff1661168e565b50565b826001600160a01b03811633146109475761092a33611588565b61094757600b54610100900460ff161561094757610947336115aa565b610952848484611768565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109cd5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109ec906001600160601b0316876123f0565b6109f69190612407565b91519350909150505b9250929050565b610a0e6113fc565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610a5b576040519150601f19603f3d011682016040523d82523d6000602084013e610a60565b606091505b505090508061090d576040516327fcd9d160e01b815260040160405180910390fd5b826001600160a01b0381163314610ab957610a9c33611588565b610ab957600b54610100900460ff1615610ab957610ab9336115aa565b6109528484846118f5565b61090d816001611910565b610ad76113fc565b600c61080682848361246f565b6060816000816001600160401b03811115610b0157610b0161224e565b604051908082528060200260200182016040528015610b5357816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610b1f5790505b50905060005b828114610ba657610b81868683818110610b7557610b756123b1565b905060200201356111de565b828281518110610b9357610b936123b1565b6020908102919091010152600101610b59565b50949350505050565b60006106e382611a49565b600b5460ff1615610c015760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016108f6565b6115b38160ff16610c156001546000190190565b610c1f91906123dd565b1115610c625760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016108f6565b600a8160ff161115610cb65760405162461bcd60e51b815260206004820152601b60248201527f4d617820706572207472616e73616374696f6e2072656163686564000000000060448201526064016108f6565b333214610d055760405162461bcd60e51b815260206004820152601e60248201527f4d696e742066726f6d20636f6e7472616374206e6f7420616c6c6f776564000060448201526064016108f6565b600a8160ff16610d14336112e9565b610d1e91906123dd565b1115610d6c5760405162461bcd60e51b815260206004820152601960248201527f6c696d6974207065722077616c6c65742065786365656465640000000000000060448201526064016108f6565b33600090815260066020526040902054819060c01c6001811015610dba57610d9560018461252e565b33600090815260066020526040902080546001600160c01b0316600160c01b17905591505b60ff821615610df757610dd766138a388a43c00060ff84166123f0565b341015610df7576040516331fc877f60e01b815260040160405180910390fd5b610806338460ff1661168e565b60006001600160a01b038216610e2d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b610e5a6113fc565b610e646000611ab8565b565b610e6e6113fc565b600b805460ff19811660ff90911615179055565b60606000806000610e9285610e04565b90506000816001600160401b03811115610eae57610eae61224e565b604051908082528060200260200182016040528015610ed7578160200160208202803683370190505b509050610f0460408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610f7e57610f1781611b08565b91508160400151610f765781516001600160a01b031615610f3757815194505b876001600160a01b0316856001600160a01b031603610f765780838780600101985081518110610f6957610f696123b1565b6020026020010181815250505b600101610f07565b50909695505050505050565b60606004805461070e90612377565b6001600160a01b03811660009081526006602052604081205460c01c6106e3565b6060818310610fdc57604051631960ccad60e11b815260040160405180910390fd5b600080610fe860015490565b90506001851015610ff857600194505b80841115611004578093505b600061100f87610e04565b90508486101561102e5785850381811015611028578091505b50611032565b5060005b6000816001600160401b0381111561104c5761104c61224e565b604051908082528060200260200182016040528015611075578160200160208202803683370190505b5090508160000361108b57935061113a92505050565b6000611096886111de565b9050600081604001516110a7575080515b885b8881141580156110b95750848714155b1561112e576110c781611b08565b925082604001516111265782516001600160a01b0316156110e757825191505b8a6001600160a01b0316826001600160a01b0316036111265780848880600101995081518110611119576111196123b1565b6020026020010181815250505b6001016110a9565b50505092835250909150505b9392505050565b8161114b81611588565b61116857600b54610100900460ff161561116857611168816115aa565b6108068383611b44565b61117a6113fc565b600b80549115156101000261ff0019909216919091179055565b836001600160a01b03811633146111cb576111ae33611588565b6111cb57600b54610100900460ff16156111cb576111cb336115aa565b6111d785858585611bb0565b5050505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061123757506001548310155b156112425792915050565b61124b83611b08565b905080604001511561125d5792915050565b61113a83611bf4565b606061127182611553565b61128e57604051630a14c4b560e41b815260040160405180910390fd5b6000611298611c29565b905080516000036112b8576040518060200160405280600081525061113a565b806112c284611c38565b6040516020016112d3929190612547565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260066020526040808220546001600160401b03911c166106e3565b61131b6113fc565b6001600160a01b0381166113805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f6565b61090d81611ab8565b60006301ffc9a760e01b6001600160e01b0319831614806113ba57506380ac58cd60e01b6001600160e01b03198316145b806106e35750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b14806106e357506106e382611389565b6000546001600160a01b03163314610e645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f6565b6127106001600160601b03821611156114c45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016108f6565b6001600160a01b03821661151a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016108f6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b600081600111158015611567575060015482105b80156106e3575050600090815260056020526040902054600160e01b161590565b6001600160a01b0316731e0049783f008a0085193e00003d00cd54003c711490565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6115e6573d6000803e3d6000fd5b6000603a5250565b60006115f982610baf565b9050336001600160a01b0382161461163257611615813361065c565b611632576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60015460008290036116b35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083906000805160206125e18339815191528180a4600183015b81811461173e57808360006000805160206125e1833981519152600080a4600101611718565b508160000361175f57604051622e076360e81b815260040160405180910390fd5b60015550505050565b600061177382611a49565b9050836001600160a01b0316816001600160a01b0316146117a65760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546117d28187335b6001600160a01b039081169116811491141790565b6117fd576117e0863361065c565b6117fd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661182457604051633a954ecd60e21b815260040160405180910390fd5b801561182f57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036118c1576001840160008181526005602052604081205490036118bf5760015481146118bf5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206125e183398151915260405160405180910390a4610888565b61080683838360405180602001604052806000815250611194565b600061191b83611a49565b90508060008061193986600090815260076020526040902080549091565b9150915084156119795761194e8184336117bd565b6119795761195c833361065c565b61197957604051632ce44b5f60e11b815260040160405180910390fd5b801561198457600082555b6001600160a01b038316600081815260066020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260056020526040812091909155600160e11b85169003611a1257600186016000818152600560205260408120549003611a10576001548114611a105760008181526005602052604090208590555b505b60405186906000906001600160a01b038616906000805160206125e1833981519152908390a4505060028054600101905550505050565b60008180600111611a9f57600154811015611a9f5760008181526005602052604081205490600160e01b82169003611a9d575b8060000361113a575060001901600081815260056020526040902054611a7c565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600560205260409020546106e390611c7c565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bbb848484610910565b6001600160a01b0383163b1561095257611bd784848484611cc3565b610952576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160808101825260008082526020820181905291810182905260608101919091526106e3611c2483611a49565b611c7c565b6060600c805461070e90612377565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611c525750819003601f19909101908152919050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cf8903390899088908890600401612586565b6020604051808303816000875af1925050508015611d33575060408051601f3d908101601f19168201909252611d30918101906125c3565b60015b611d91573d808015611d61576040519150601f19603f3d011682016040523d82523d6000602084013e611d66565b606091505b508051600003611d89576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b03198116811461090d57600080fd5b600060208284031215611dd657600080fd5b813561113a81611dae565b80356001600160a01b0381168114611df857600080fd5b919050565b60008060408385031215611e1057600080fd5b611e1983611de1565b915060208301356001600160601b0381168114611e3557600080fd5b809150509250929050565b60005b83811015611e5b578181015183820152602001611e43565b50506000910152565b60008151808452611e7c816020860160208601611e40565b601f01601f19169290920160200192915050565b60208152600061113a6020830184611e64565b600060208284031215611eb557600080fd5b5035919050565b60008060408385031215611ecf57600080fd5b611ed883611de1565b946020939093013593505050565b60008083601f840112611ef857600080fd5b5081356001600160401b03811115611f0f57600080fd5b6020830191508360208260051b85010111156109ff57600080fd5b60008060008060408587031215611f4057600080fd5b84356001600160401b0380821115611f5757600080fd5b611f6388838901611ee6565b90965094506020870135915080821115611f7c57600080fd5b50611f8987828801611ee6565b95989497509550505050565b600060208284031215611fa757600080fd5b813561ffff8116811461113a57600080fd5b600080600060608486031215611fce57600080fd5b611fd784611de1565b9250611fe560208501611de1565b9150604084013590509250925092565b6000806040838503121561200857600080fd5b50508035926020909101359150565b6000806020838503121561202a57600080fd5b82356001600160401b038082111561204157600080fd5b818501915085601f83011261205557600080fd5b81358181111561206457600080fd5b86602082850101111561207657600080fd5b60209290920196919550909350505050565b6000806020838503121561209b57600080fd5b82356001600160401b038111156120b157600080fd5b6120bd85828601611ee6565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610f7e576121348385516120c9565b9284019260809290920191600101612121565b60006020828403121561215957600080fd5b813560ff8116811461113a57600080fd5b60006020828403121561217c57600080fd5b61113a82611de1565b6020808252825182820181905260009190848201906040850190845b81811015610f7e578351835292840192918401916001016121a1565b6000806000606084860312156121d257600080fd5b6121db84611de1565b95602085013595506040909401359392505050565b80358015158114611df857600080fd5b6000806040838503121561221357600080fd5b61221c83611de1565b915061222a602084016121f0565b90509250929050565b60006020828403121561224557600080fd5b61113a826121f0565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561227a57600080fd5b61228385611de1565b935061229160208601611de1565b92506040850135915060608501356001600160401b03808211156122b457600080fd5b818701915087601f8301126122c857600080fd5b8135818111156122da576122da61224e565b604051601f8201601f19908116603f011681019083821181831017156123025761230261224e565b816040528281528a602084870101111561231b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b608081016106e382846120c9565b6000806040838503121561236057600080fd5b61236983611de1565b915061222a60208401611de1565b600181811c9082168061238b57607f821691505b6020821081036123ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106e3576106e36123c7565b80820281158282048414176106e3576106e36123c7565b60008261242457634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561080657600081815260208120601f850160051c810160208610156124505750805b601f850160051c820191505b818110156108885782815560010161245c565b6001600160401b038311156124865761248661224e565b61249a836124948354612377565b83612429565b6000601f8411600181146124ce57600085156124b65750838201355b600019600387901b1c1916600186901b1783556111d7565b600083815260209020601f19861690835b828110156124ff57868501358255602094850194600190920191016124df565b508682101561251c5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60ff82811682821603908111156106e3576106e36123c7565b60008351612559818460208801611e40565b83519083019061256d818360208801611e40565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b990830184611e64565b9695505050505050565b6000602082840312156125d557600080fd5b815161113a81611dae56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220734c2f42e8ec24679c59a37c02c74d8abb1e9daf7bd4041a3c65817e59b2fb3564736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008f71d8a2c4418da8ee70b1742049d3e67c903c93
-----Decoded View---------------
Arg [0] : deployer (address): 0x8F71d8a2C4418DA8EE70b1742049D3E67c903c93
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008f71d8a2c4418da8ee70b1742049d3e67c903c93
Deployed Bytecode Sourcemap
81622:5416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84175:301;;;;;;;;;;-1:-1:-1;84175:301:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;84175:301:0;;;;;;;;86054:167;;;;;;;;;;-1:-1:-1;86054:167:0;;;;;:::i;:::-;;:::i;:::-;;40384:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47331:268::-;;;;;;;;;;-1:-1:-1;47331:268:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2246:32:1;;;2228:51;;2216:2;2201:18;47331:268:0;2082:203:1;85075:225:0;;;;;;:::i;:::-;;:::i;83375:459::-;;;;;;;;;;-1:-1:-1;83375:459:0;;;;;:::i;:::-;;:::i;35957:323::-;;;;;;;;;;-1:-1:-1;36231:12:0;;83926:1;36215:13;:28;-1:-1:-1;;36215:46:0;35957:323;;;3845:25:1;;;3833:2;3818:18;35957:323:0;3699:177:1;86603:192:0;;;;;;;;;;-1:-1:-1;86603:192:0;;;;;:::i;:::-;;:::i;85308:224::-;;;;;;:::i;:::-;;:::i;5109:505::-;;;;;;;;;;-1:-1:-1;5109:505:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4936:32:1;;;4918:51;;5000:2;4985:18;;4978:34;;;;4891:18;5109:505:0;4744:274:1;86803:232:0;;;;;;;;;;;;;:::i;85540:::-;;;;;;:::i;:::-;;:::i;81258:94::-;;;;;;;;;;-1:-1:-1;81258:94:0;;;;;:::i;:::-;;:::i;86354:111::-;;;;;;;;;;-1:-1:-1;86354:111:0;;;;;:::i;:::-;;:::i;75763:560::-;;;;;;;;;;-1:-1:-1;75763:560:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41883:202::-;;;;;;;;;;-1:-1:-1;41883:202:0;;;;;:::i;:::-;;:::i;82339:907::-;;;;;;:::i;:::-;;:::i;37141:283::-;;;;;;;;;;-1:-1:-1;37141:283:0;;;;;:::i;:::-;;:::i;16791:103::-;;;;;;;;;;;;;:::i;86473:82::-;;;;;;;;;;;;;:::i;81931:29::-;;;;;;;;;;-1:-1:-1;81931:29:0;;;;;;;;79737:1016;;;;;;;;;;-1:-1:-1;79737:1016:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16143:87::-;;;;;;;;;;-1:-1:-1;16189:7:0;16216:6;-1:-1:-1;;;;;16216:6:0;16143:87;;86563:32;;;;;;;;;40560:104;;;;;;;;;;;;;:::i;84056:111::-;;;;;;;;;;-1:-1:-1;84056:111:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8407:31:1;;;8389:50;;8377:2;8362:18;84056:111:0;8245:200:1;76711:2579:0;;;;;;;;;;-1:-1:-1;76711:2579:0;;;;;:::i;:::-;;:::i;84840:227::-;;;;;;;;;;-1:-1:-1;84840:227:0;;;;;:::i;:::-;;:::i;86229:117::-;;;;;;;;;;-1:-1:-1;86229:117:0;;;;;:::i;:::-;;:::i;85780:266::-;;;;;;:::i;:::-;;:::i;75126:478::-;;;;;;;;;;-1:-1:-1;75126:478:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40770:424::-;;;;;;;;;;-1:-1:-1;40770:424:0;;;;;:::i;:::-;;:::i;83254:113::-;;;;;;;;;;-1:-1:-1;83254:113:0;;;;;:::i;:::-;;:::i;48362:214::-;;;;;;;;;;-1:-1:-1;48362:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;48533:25:0;;;48504:4;48533:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48362:214;17049:238;;;;;;;;;;-1:-1:-1;17049:238:0;;;;;:::i;:::-;;:::i;81967:43::-;;;;;;;;;;-1:-1:-1;81967:43:0;;;;;;;;;;;84175:301;84333:4;84375:38;84401:11;84375:25;:38::i;:::-;:93;;;;84430:38;84456:11;84430:25;:38::i;:::-;84355:113;84175:301;-1:-1:-1;;84175:301:0:o;86054:167::-;16029:13;:11;:13::i;:::-;86171:42:::1;86190:8;86200:12;86171:18;:42::i;:::-;86054:167:::0;;:::o;40384:100::-;40438:13;40471:5;40464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40384:100;:::o;47331:268::-;47452:7;47482:16;47490:7;47482;:16::i;:::-;47477:64;;47507:34;;-1:-1:-1;;;47507:34:0;;;;;;;;;;;47477:64;-1:-1:-1;47561:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;47561:30:0;;47331:268::o;85075:225::-;85234:8;11657:29;11677:8;11657:19;:29::i;:::-;11652:122;;84577:24;;;;;;;11703:59;;;11736:26;11753:8;11736:16;:26::i;:::-;85260:32:::1;85274:8;85284:7;85260:13;:32::i;:::-;85075:225:::0;;;:::o;83375:459::-;83532:8;83564:35;;;83560:69;;83608:21;;-1:-1:-1;;;83608:21:0;;;;;;;;;;;83560:69;83647:9;83642:185;83666:14;83662:1;:18;83642:185;;;83699:52;83712:10;83724;;83735:1;83724:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;83739:8;;83748:1;83739:11;;;;;;;:::i;:::-;;;;;;;83699:12;:52::i;:::-;83797:3;;83642:185;;;;83496:338;83375:459;;;;:::o;86603:192::-;16029:13;:11;:13::i;:::-;81794:4:::1;86700:8;86683:25;;:14;83926:1:::0;36624:13;-1:-1:-1;;36624:31:0;;36378:296;86683:14:::1;:25;;;;:::i;:::-;:39;;86675:70;;;::::0;-1:-1:-1;;;86675:70:0;;12178:2:1;86675:70:0::1;::::0;::::1;12160:21:1::0;12217:2;12197:18;;;12190:30;-1:-1:-1;;;12236:18:1;;;12229:48;12294:18;;86675:70:0::1;;;;;;;;;86760:27;86766:10;86778:8;86760:27;;:5;:27::i;:::-;86603:192:::0;:::o;85308:224::-;85470:4;-1:-1:-1;;;;;11292:18:0;;11300:10;11292:18;11288:184;;11332:31;11352:10;11332:19;:31::i;:::-;11327:134;;84577:24;;;;;;;11384:61;;;11417:28;11434:10;11417:16;:28::i;:::-;85487:37:::1;85506:4;85512:2;85516:7;85487:18;:37::i;:::-;85308:224:::0;;;;:::o;5109:505::-;5251:7;5314:27;;;:17;:27;;;;;;;;5285:56;;;;;;;;;-1:-1:-1;;;;;5285:56:0;;;;;-1:-1:-1;;;5285:56:0;;;-1:-1:-1;;;;;5285:56:0;;;;;;;;5251:7;;5354:92;;-1:-1:-1;5405:29:0;;;;;;;;;5415:19;5405:29;-1:-1:-1;;;;;5405:29:0;;;;-1:-1:-1;;;5405:29:0;;-1:-1:-1;;;;;5405:29:0;;;;;5354:92;5496:23;;;;5458:21;;5980:5;;5483:36;;-1:-1:-1;;;;;5483:36:0;:10;:36;:::i;:::-;5482:71;;;;:::i;:::-;5574:16;;;-1:-1:-1;5458:95:0;;-1:-1:-1;;5109:505:0;;;;;;:::o;86803:232::-;16029:13;:11;:13::i;:::-;86852:12:::1;16216:6:::0;;86870:79:::1;::::0;-1:-1:-1;;;;;16216:6:0;;;;86899:21:::1;::::0;86852:12;86870:79;86852:12;86870:79;86899:21;16216:6;86870:79:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86851:98;;;86967:7;86962:66;;86998:18;;-1:-1:-1::0;;;86998:18:0::1;;;;;;;;;;;85540:232:::0;85706:4;-1:-1:-1;;;;;11292:18:0;;11300:10;11292:18;11288:184;;11332:31;11352:10;11332:19;:31::i;:::-;11327:134;;84577:24;;;;;;;11384:61;;;11417:28;11434:10;11417:16;:28::i;:::-;85723:41:::1;85746:4;85752:2;85756:7;85723:22;:41::i;81258:94::-:0;81324:20;81330:7;81339:4;81324:5;:20::i;86354:111::-;16029:13;:11;:13::i;:::-;86432:12:::1;:25;86447:10:::0;;86432:12;:25:::1;:::i;75763:560::-:0;75907:23;75998:8;75973:22;75998:8;-1:-1:-1;;;;;76065:68:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76065:68:0;;-1:-1:-1;;76065:68:0;;;;;;;;;;;;76028:105;;76153:9;76148:125;76169:14;76164:1;:19;76148:125;;76225:32;76245:8;;76254:1;76245:11;;;;;;;:::i;:::-;;;;;;;76225:19;:32::i;:::-;76209:10;76220:1;76209:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;76185:3;;76148:125;;;-1:-1:-1;76294:10:0;75763:560;-1:-1:-1;;;;75763:560:0:o;41883:202::-;42000:7;42048:27;42067:7;42048:18;:27::i;82339:907::-;82406:10;;;;82405:11;82397:41;;;;-1:-1:-1;;;82397:41:0;;15188:2:1;82397:41:0;;;15170:21:1;15227:2;15207:18;;;15200:30;-1:-1:-1;;;15246:18:1;;;15239:47;15303:18;;82397:41:0;14986:341:1;82397:41:0;81794:4;82474:8;82457:25;;:14;83926:1;36624:13;-1:-1:-1;;36624:31:0;;36378:296;82457:14;:25;;;;:::i;:::-;:39;;82449:70;;;;-1:-1:-1;;;82449:70:0;;12178:2:1;82449:70:0;;;12160:21:1;12217:2;12197:18;;;12190:30;-1:-1:-1;;;12236:18:1;;;12229:48;12294:18;;82449:70:0;11976:342:1;82449:70:0;81852:2;82538:8;:31;;;;82530:71;;;;-1:-1:-1;;;82530:71:0;;15534:2:1;82530:71:0;;;15516:21:1;15573:2;15553:18;;;15546:30;15612:29;15592:18;;;15585:57;15659:18;;82530:71:0;15332:351:1;82530:71:0;82620:10;82634:9;82620:23;82612:66;;;;-1:-1:-1;;;82612:66:0;;15890:2:1;82612:66:0;;;15872:21:1;15929:2;15909:18;;;15902:30;15968:32;15948:18;;;15941:60;16018:18;;82612:66:0;15688:354:1;82612:66:0;81852:2;82740:8;82713:35;;:24;82726:10;82713:12;:24::i;:::-;:35;;;;:::i;:::-;:58;;82691:133;;;;-1:-1:-1;;;82691:133:0;;16249:2:1;82691:133:0;;;16231:21:1;16288:2;16268:18;;;16261:30;16327:27;16307:18;;;16300:55;16372:18;;82691:133:0;16047:349:1;82691:133:0;82907:10;82837:17;38218:25;;;:18;:25;;;;;;82857:8;;31674:3;38218:40;82951:1;82935:17;;82931:113;;;82983:12;82994:1;82983:8;:12;:::i;:::-;83018:10;38527:14;38544:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;38757:32:0;-1:-1:-1;;;38756:76:0;38843:34;;82969:26;-1:-1:-1;83010:22:0;83060:15;;;;83056:143;;83108:35;81910:12;83108:35;;;;:::i;:::-;83096:9;:47;83092:95;;;83169:18;;-1:-1:-1;;;83169:18:0;;;;;;;;;;;83092:95;83211:27;83217:10;83229:8;83211:27;;:5;:27::i;37141:283::-;37258:7;-1:-1:-1;;;;;37287:19:0;;37283:60;;37315:28;;-1:-1:-1;;;37315:28:0;;;;;;;;;;;37283:60;-1:-1:-1;;;;;;37361:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;37361:55:0;;37141:283::o;16791:103::-;16029:13;:11;:13::i;:::-;16856:30:::1;16883:1;16856:18;:30::i;:::-;16791:103::o:0;86473:82::-;16029:13;:11;:13::i;:::-;86537:10:::1;::::0;;-1:-1:-1;;86523:24:0;::::1;86537:10;::::0;;::::1;86536:11;86523:24;::::0;;86473:82::o;79737:1016::-;79860:16;79919:19;79953:25;79993:22;80018:16;80028:5;80018:9;:16::i;:::-;79993:41;;80049:25;80091:14;-1:-1:-1;;;;;80077:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80077:29:0;;80049:57;;80121:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80121:31:0;83926:1;80167:538;80251:14;80236:11;:29;80167:538;;80334:15;80347:1;80334:12;:15::i;:::-;80322:27;;80372:9;:16;;;80413:8;80368:73;80463:14;;-1:-1:-1;;;;;80463:28:0;;80459:111;;80536:14;;;-1:-1:-1;80459:111:0;80613:5;-1:-1:-1;;;;;80592:26:0;:17;-1:-1:-1;;;;;80592:26:0;;80588:102;;80669:1;80643:8;80652:13;;;;;;80643:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;80588:102;80284:3;;80167:538;;;-1:-1:-1;80726:8:0;;79737:1016;-1:-1:-1;;;;;;79737:1016:0:o;40560:104::-;40616:13;40649:7;40642:14;;;;;:::i;84056:111::-;-1:-1:-1;;;;;38218:25:0;;84119:6;38218:25;;;:18;:25;;;;;;31674:3;38218:40;84145:14;38130:137;76711:2579;76854:16;76921:4;76912:5;:13;76908:45;;76934:19;;-1:-1:-1;;;76934:19:0;;;;;;;;;;;76908:45;76968:19;77002:17;77022:14;35726:13;;;35644:103;77022:14;77002:34;-1:-1:-1;83926:1:0;77114:5;:23;77110:87;;;83926:1;77158:23;;77110:87;77273:9;77266:4;:16;77262:73;;;77310:9;77303:16;;77262:73;77349:25;77377:16;77387:5;77377:9;:16::i;:::-;77349:44;;77571:4;77563:5;:12;77559:278;;;77618:12;;;77653:31;;;77649:111;;;77729:11;77709:31;;77649:111;77577:198;77559:278;;;-1:-1:-1;77820:1:0;77559:278;77851:25;77893:17;-1:-1:-1;;;;;77879:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77879:32:0;;77851:60;;77930:17;77951:1;77930:22;77926:78;;77980:8;-1:-1:-1;77973:15:0;;-1:-1:-1;;;77973:15:0;77926:78;78148:31;78182:26;78202:5;78182:19;:26::i;:::-;78148:60;;78223:25;78468:9;:16;;;78463:92;;-1:-1:-1;78525:14:0;;78463:92;78604:5;78569:544;78633:4;78628:1;:9;;:45;;;;;78656:17;78641:11;:32;;78628:45;78569:544;;;78742:15;78755:1;78742:12;:15::i;:::-;78730:27;;78780:9;:16;;;78821:8;78776:73;78871:14;;-1:-1:-1;;;;;78871:28:0;;78867:111;;78944:14;;;-1:-1:-1;78867:111:0;79021:5;-1:-1:-1;;;;;79000:26:0;:17;-1:-1:-1;;;;;79000:26:0;;78996:102;;79077:1;79051:8;79060:13;;;;;;79051:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;78996:102;78692:3;;78569:544;;;-1:-1:-1;;;79198:29:0;;;-1:-1:-1;79205:8:0;;-1:-1:-1;;76711:2579:0;;;;;;:::o;84840:227::-;84990:8;11657:29;11677:8;11657:19;:29::i;:::-;11652:122;;84577:24;;;;;;;11703:59;;;11736:26;11753:8;11736:16;:26::i;:::-;85016:43:::1;85040:8;85050;85016:23;:43::i;86229:117::-:0;16029:13;:11;:13::i;:::-;86306:24:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;86306:32:0;;::::1;::::0;;;::::1;::::0;;86229:117::o;85780:266::-;85974:4;-1:-1:-1;;;;;11292:18:0;;11300:10;11292:18;11288:184;;11332:31;11352:10;11332:19;:31::i;:::-;11327:134;;84577:24;;;;;;;11384:61;;;11417:28;11434:10;11417:16;:28::i;:::-;85991:47:::1;86014:4;86020:2;86024:7;86033:4;85991:22;:47::i;:::-;85780:266:::0;;;;;:::o;75126:478::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83926:1:0;75340:7;:25;:54;;;-1:-1:-1;35726:13:0;;75369:7;:25;;75340:54;75336:103;;;75418:9;75126:478;-1:-1:-1;;75126:478:0:o;75336:103::-;75461:21;75474:7;75461:12;:21::i;:::-;75449:33;;75497:9;:16;;;75493:65;;;75537:9;75126:478;-1:-1:-1;;75126:478:0:o;75493:65::-;75575:21;75588:7;75575:12;:21::i;40770:424::-;40888:13;40924:16;40932:7;40924;:16::i;:::-;40919:59;;40949:29;;-1:-1:-1;;;40949:29:0;;;;;;;;;;;40919:59;40991:21;41015:10;:8;:10::i;:::-;40991:34;;41062:7;41056:21;41081:1;41056:26;:130;;;;;;;;;;;;;;;;;41126:7;41135:18;41145:7;41135:9;:18::i;:::-;41109:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41036:150;40770:424;-1:-1:-1;;;40770:424:0:o;83254:113::-;-1:-1:-1;;;;;37608:25:0;;83312:7;37608:25;;;:18;:25;;31438:2;37608:25;;;;-1:-1:-1;;;;;37608:50:0;;37607:95;83339:20;37506:204;17049:238;16029:13;:11;:13::i;:::-;-1:-1:-1;;;;;17152:22:0;::::1;17130:110;;;::::0;-1:-1:-1;;;17130:110:0;;17427:2:1;17130:110:0::1;::::0;::::1;17409:21:1::0;17466:2;17446:18;;;17439:30;17505:34;17485:18;;;17478:62;-1:-1:-1;;;17556:18:1;;;17549:36;17602:19;;17130:110:0::1;17225:402:1::0;17130:110:0::1;17251:28;17270:8;17251:18;:28::i;39432:689::-:0;39562:4;-1:-1:-1;;;;;;;;;39891:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;39968:25:0;;;39891:102;:179;;;-1:-1:-1;;;;;;;;40045:25:0;-1:-1:-1;;;40045:25:0;;39432:689::o;4763:291::-;4910:4;-1:-1:-1;;;;;;4952:41:0;;-1:-1:-1;;;4952:41:0;;:94;;;5010:36;5034:11;5010:23;:36::i;16308:132::-;16189:7;16216:6;-1:-1:-1;;;;;16216:6:0;14753:10;16372:23;16364:68;;;;-1:-1:-1;;;16364:68:0;;17834:2:1;16364:68:0;;;17816:21:1;;;17853:18;;;17846:30;17912:34;17892:18;;;17885:62;17964:18;;16364:68:0;17632:356:1;6264:392:0;5980:5;-1:-1:-1;;;;;6404:33:0;;;;6382:125;;;;-1:-1:-1;;;6382:125:0;;18195:2:1;6382:125:0;;;18177:21:1;18234:2;18214:18;;;18207:30;18273:34;18253:18;;;18246:62;-1:-1:-1;;;18324:18:1;;;18317:40;18374:19;;6382:125:0;17993:406:1;6382:125:0;-1:-1:-1;;;;;6526:22:0;;6518:60;;;;-1:-1:-1;;;6518:60:0;;18606:2:1;6518:60:0;;;18588:21:1;18645:2;18625:18;;;18618:30;18684:27;18664:18;;;18657:55;18729:18;;6518:60:0;18404:349:1;6518:60:0;6613:35;;;;;;;;;-1:-1:-1;;;;;6613:35:0;;;;;;-1:-1:-1;;;;;6613:35:0;;;;;;;;;;-1:-1:-1;;;6591:57:0;;;;:19;:57;6264:392::o;48834:282::-;48899:4;48955:7;83926:1;48936:26;;:66;;;;;48989:13;;48979:7;:23;48936:66;:153;;;;-1:-1:-1;;49040:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;49040:44:0;:49;;48834:282::o;84617:215::-;-1:-1:-1;;;;;84761:63:0;84781:42;84761:63;;84617:215::o;11890:1536::-;12283:22;12277:4;12270:36;12376:9;12370:4;12363:23;12451:8;12445:4;12438:22;12773:4;12746;12719;12692;12644:25;12616:5;12583:213;12555:451;;12926:16;12920:4;12914;12899:44;12974:16;12968:4;12961:30;12555:451;13406:1;13400:4;13393:15;11890:1536;:::o;46723:449::-;46853:13;46869:16;46877:7;46869;:16::i;:::-;46853:32;-1:-1:-1;14753:10:0;-1:-1:-1;;;;;46902:28:0;;;46898:175;;46950:44;46967:5;14753:10;48362:214;:::i;46950:44::-;46945:128;;47022:35;;-1:-1:-1;;;47022:35:0;;;;;;;;;;;46945:128;47085:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;47085:35:0;-1:-1:-1;;;;;47085:35:0;;;;;;;;;47136:28;;47085:24;;47136:28;;;;;;;46842:330;46723:449;;:::o;58776:3021::-;58872:13;;58849:20;58900:13;;;58896:44;;58922:18;;-1:-1:-1;;;58922:18:0;;;;;;;;;;;58896:44;-1:-1:-1;;;;;59428:22:0;;;;;;:18;:22;;;;31438:2;59428:22;;;:105;;59500:32;59471:62;;59428:105;;;59776:31;;;:17;:31;;;;;-1:-1:-1;46012:15:0;;45986:24;45982:46;45535:11;45510:23;45506:41;45503:52;45458:112;;59776:194;;60032:23;;;;59776:31;;59428:22;;-1:-1:-1;;;;;;;;;;;59428:22:0;;60650:335;61311:1;61297:12;61293:20;61251:346;61352:3;61343:7;61340:16;61251:346;;61570:7;61560:8;61557:1;-1:-1:-1;;;;;;;;;;;61527:1:0;61524;61519:59;61405:1;61392:15;61251:346;;;61255:77;61630:8;61642:1;61630:13;61626:45;;61652:19;;-1:-1:-1;;;61652:19:0;;;;;;;;;;;61626:45;61688:13;:19;-1:-1:-1;85075:225:0;;;:::o;51102:3003::-;51244:27;51274;51293:7;51274:18;:27::i;:::-;51244:57;;51359:4;-1:-1:-1;;;;;51318:45:0;51334:19;-1:-1:-1;;;;;51318:45:0;;51314:99;;51385:28;;-1:-1:-1;;;51385:28:0;;;;;;;;;;;51314:99;51441:27;50210:24;;;:15;:24;;;;;50438:26;;51669:134;50438:26;51746:4;14753:10;51769:19;-1:-1:-1;;;;;49684:32:0;;;49528:28;;49813:20;;49835:30;;49810:56;;49225:659;51669:134;51650:287;;51833:43;51850:4;14753:10;48362:214;:::i;51833:43::-;51828:109;;51902:35;;-1:-1:-1;;;51902:35:0;;;;;;;;;;;51828:109;-1:-1:-1;;;;;51954:16:0;;51950:52;;51979:23;;-1:-1:-1;;;51979:23:0;;;;;;;;;;;51950:52;52151:15;52148:160;;;52291:1;52270:19;52263:30;52148:160;-1:-1:-1;;;;;52688:24:0;;;;;;;:18;:24;;;;;;52686:26;;-1:-1:-1;;52686:26:0;;;52757:22;;;;;;;;;52755:24;;-1:-1:-1;52755:24:0;;;45535:11;45510:23;45506:41;45458:112;-1:-1:-1;;;45458:112:0;53050:26;;;;:17;:26;;;;;:196;;;;-1:-1:-1;;;53366:47:0;;:52;;53362:627;;53471:1;53461:11;;53439:19;53594:30;;;:17;:30;;;;;;:35;;53590:384;;53732:13;;53717:11;:28;53713:242;;53879:30;;;;:17;:30;;;;;:52;;;53713:242;53420:569;53362:627;54036:7;54032:2;-1:-1:-1;;;;;54017:27:0;54026:4;-1:-1:-1;;;;;54017:27:0;-1:-1:-1;;;;;;;;;;;54017:27:0;;;;;;;;;54055:42;85308:224;54201:193;54347:39;54364:4;54370:2;54374:7;54347:39;;;;;;;;;;;;:16;:39::i;66361:3274::-;66441:27;66471;66490:7;66471:18;:27::i;:::-;66441:57;-1:-1:-1;66441:57:0;66511:12;;66670:35;66697:7;50099:27;50210:24;;;:15;:24;;;;;50438:26;;50210:24;;49997:485;66670:35;66576:129;;;;66722:13;66718:451;;;66861:150;66908:15;66946:4;14753:10;66973:19;14673:98;66861:150;66838:319;;67049:43;67066:4;14753:10;48362:214;:::i;67049:43::-;67044:113;;67122:35;;-1:-1:-1;;;67122:35:0;;;;;;;;;;;67044:113;67325:15;67322:160;;;67465:1;67444:19;67437:30;67322:160;-1:-1:-1;;;;;68084:24:0;;;;;;:18;:24;;;;;:60;;68112:32;68084:60;;;45535:11;45510:23;45506:41;45458:112;-1:-1:-1;;;45458:112:0;68382:26;;;;:17;:26;;;;;:226;;;;-1:-1:-1;;;68728:47:0;;:52;;68724:627;;68833:1;68823:11;;68801:19;68956:30;;;:17;:30;;;;;;:35;;68952:384;;69094:13;;69079:11;:28;69075:242;;69241:30;;;;:17;:30;;;;;:52;;;69075:242;68782:569;68724:627;69379:35;;69406:7;;69402:1;;-1:-1:-1;;;;;69379:35:0;;;-1:-1:-1;;;;;;;;;;;69379:35:0;69402:1;;69379:35;-1:-1:-1;;69602:12:0;:14;;;;;;-1:-1:-1;;;;66361:3274:0:o;43170:1307::-;43264:7;43304;;83926:1;43353:23;43349:1061;;43406:13;;43399:4;:20;43395:1015;;;43444:14;43461:23;;;:17;:23;;;;;;;-1:-1:-1;;;43550:24:0;;:29;;43546:845;;44215:113;44222:6;44232:1;44222:11;44215:113;;-1:-1:-1;;;44293:6:0;44275:25;;;;:17;:25;;;;;;44215:113;;43546:845;43421:989;43395:1015;44438:31;;-1:-1:-1;;;44438:31:0;;;;;;;;;;;17447:191;17521:16;17540:6;;-1:-1:-1;;;;;17557:17:0;;;-1:-1:-1;;;;;;17557:17:0;;;;;;17590:40;;17540:6;;;;;;;17590:40;;17521:16;17590:40;17510:128;17447:191;:::o;42577:202::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42746:24:0;;;;:17;:24;;;;;;42727:44;;:18;:44::i;47939:266::-;14753:10;48066:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;48066:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;48066:60:0;;;;;;;;;;48142:55;;540:41:1;;;48066:49:0;;14753:10;48142:55;;513:18:1;48142:55:0;;;;;;;47939:266;;:::o;54992:407::-;55167:31;55180:4;55186:2;55190:7;55167:12;:31::i;:::-;-1:-1:-1;;;;;55213:14:0;;;:19;55209:183;;55252:56;55283:4;55289:2;55293:7;55302:5;55252:30;:56::i;:::-;55247:145;;55336:40;;-1:-1:-1;;;55336:40:0;;;;;;;;;;;42274:207;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42426:47:0;42445:27;42464:7;42445:18;:27::i;:::-;42426:18;:47::i;83943:105::-;83995:13;84028:12;84021:19;;;;;:::i;72258:1786::-;72359:17;72798:4;72791;72785:11;72781:22;72890:1;72884:4;72877:15;72965:4;72962:1;72958:12;72951:19;;;73047:1;73042:3;73035:14;73151:3;73390:5;73372:428;73438:1;73433:3;73429:11;73422:18;;73609:2;73603:4;73599:13;73595:2;73591:22;73586:3;73578:36;73703:2;73693:13;;73760:25;73372:428;73760:25;-1:-1:-1;73830:13:0;;;-1:-1:-1;;73945:14:0;;;74007:19;;;73945:14;72258:1786;-1:-1:-1;72258:1786:0:o;44576:398::-;-1:-1:-1;;;;;;;;;;;;;44718:41:0;;;;31959:3;44804:33;;;-1:-1:-1;;;;;44770:68:0;-1:-1:-1;;;44770:68:0;-1:-1:-1;;;44868:24:0;;:29;;-1:-1:-1;;;44849:48:0;;;;32480:3;44937:28;;;;-1:-1:-1;;;44908:58:0;-1:-1:-1;44576:398:0:o;57483:831::-;57680:171;;-1:-1:-1;;;57680:171:0;;57646:4;;-1:-1:-1;;;;;57680:45:0;;;;;:171;;14753:10;;57782:4;;57805:7;;57831:5;;57680:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57680:171:0;;;;;;;;-1:-1:-1;;57680:171:0;;;;;;;;;;;;:::i;:::-;;;57663:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58065:6;:13;58082:1;58065:18;58061:235;;58111:40;;-1:-1:-1;;;58111:40:0;;;;;;;;;;;58061:235;58254:6;58248:13;58239:6;58235:2;58231:15;58224:38;57663:644;-1:-1:-1;;;;;;57924:81:0;-1:-1:-1;;;57924:81:0;;-1:-1:-1;57483:831: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:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:250::-;1226:1;1236:113;1250:6;1247:1;1244:13;1236:113;;;1326:11;;;1320:18;1307:11;;;1300:39;1272:2;1265:10;1236:113;;;-1:-1:-1;;1383:1:1;1365:16;;1358:27;1141:250::o;1396:271::-;1438:3;1476:5;1470:12;1503:6;1498:3;1491:19;1519:76;1588:6;1581:4;1576:3;1572:14;1565:4;1558:5;1554:16;1519:76;:::i;:::-;1649:2;1628:15;-1:-1:-1;;1624:29:1;1615:39;;;;1656:4;1611:50;;1396:271;-1:-1:-1;;1396:271:1:o;1672:220::-;1821:2;1810:9;1803:21;1784:4;1841:45;1882:2;1871:9;1867:18;1859:6;1841:45;:::i;1897:180::-;1956:6;2009:2;1997:9;1988:7;1984:23;1980:32;1977:52;;;2025:1;2022;2015:12;1977:52;-1:-1:-1;2048:23:1;;1897:180;-1:-1:-1;1897:180:1:o;2290:254::-;2358:6;2366;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;2458:29;2477:9;2458:29;:::i;:::-;2448:39;2534:2;2519:18;;;;2506:32;;-1:-1:-1;;;2290:254:1:o;2549:367::-;2612:8;2622:6;2676:3;2669:4;2661:6;2657:17;2653:27;2643:55;;2694:1;2691;2684:12;2643:55;-1:-1:-1;2717:20:1;;-1:-1:-1;;;;;2749:30:1;;2746:50;;;2792:1;2789;2782:12;2746:50;2829:4;2821:6;2817:17;2805:29;;2889:3;2882:4;2872:6;2869:1;2865:14;2857:6;2853:27;2849:38;2846:47;2843:67;;;2906:1;2903;2896:12;2921:773;3043:6;3051;3059;3067;3120:2;3108:9;3099:7;3095:23;3091:32;3088:52;;;3136:1;3133;3126:12;3088:52;3176:9;3163:23;-1:-1:-1;;;;;3246:2:1;3238:6;3235:14;3232:34;;;3262:1;3259;3252:12;3232:34;3301:70;3363:7;3354:6;3343:9;3339:22;3301:70;:::i;:::-;3390:8;;-1:-1:-1;3275:96:1;-1:-1:-1;3478:2:1;3463:18;;3450:32;;-1:-1:-1;3494:16:1;;;3491:36;;;3523:1;3520;3513:12;3491:36;;3562:72;3626:7;3615:8;3604:9;3600:24;3562:72;:::i;:::-;2921:773;;;;-1:-1:-1;3653:8:1;-1:-1:-1;;;;2921:773:1:o;3881:272::-;3939:6;3992:2;3980:9;3971:7;3967:23;3963:32;3960:52;;;4008:1;4005;3998:12;3960:52;4047:9;4034:23;4097:6;4090:5;4086:18;4079:5;4076:29;4066:57;;4119:1;4116;4109:12;4158:328;4235:6;4243;4251;4304:2;4292:9;4283:7;4279:23;4275:32;4272:52;;;4320:1;4317;4310:12;4272:52;4343:29;4362:9;4343:29;:::i;:::-;4333:39;;4391:38;4425:2;4414:9;4410:18;4391:38;:::i;:::-;4381:48;;4476:2;4465:9;4461:18;4448:32;4438:42;;4158:328;;;;;:::o;4491:248::-;4559:6;4567;4620:2;4608:9;4599:7;4595:23;4591:32;4588:52;;;4636:1;4633;4626:12;4588:52;-1:-1:-1;;4659:23:1;;;4729:2;4714:18;;;4701:32;;-1:-1:-1;4491:248:1:o;5023:592::-;5094:6;5102;5155:2;5143:9;5134:7;5130:23;5126:32;5123:52;;;5171:1;5168;5161:12;5123:52;5211:9;5198:23;-1:-1:-1;;;;;5281:2:1;5273:6;5270:14;5267:34;;;5297:1;5294;5287:12;5267:34;5335:6;5324:9;5320:22;5310:32;;5380:7;5373:4;5369:2;5365:13;5361:27;5351:55;;5402:1;5399;5392:12;5351:55;5442:2;5429:16;5468:2;5460:6;5457:14;5454:34;;;5484:1;5481;5474:12;5454:34;5529:7;5524:2;5515:6;5511:2;5507:15;5503:24;5500:37;5497:57;;;5550:1;5547;5540:12;5497:57;5581:2;5573:11;;;;;5603:6;;-1:-1:-1;5023:592:1;;-1:-1:-1;;;;5023:592:1:o;5620:437::-;5706:6;5714;5767:2;5755:9;5746:7;5742:23;5738:32;5735:52;;;5783:1;5780;5773:12;5735:52;5823:9;5810:23;-1:-1:-1;;;;;5848:6:1;5845:30;5842:50;;;5888:1;5885;5878:12;5842:50;5927:70;5989:7;5980:6;5969:9;5965:22;5927:70;:::i;:::-;6016:8;;5901:96;;-1:-1:-1;5620:437:1;-1:-1:-1;;;;5620:437:1:o;6062:349::-;6146:12;;-1:-1:-1;;;;;6142:38:1;6130:51;;6234:4;6223:16;;;6217:23;-1:-1:-1;;;;;6213:48:1;6197:14;;;6190:72;6325:4;6314:16;;;6308:23;6301:31;6294:39;6278:14;;;6271:63;6387:4;6376:16;;;6370:23;6395:8;6366:38;6350:14;;6343:62;6062:349::o;6416:722::-;6649:2;6701:21;;;6771:13;;6674:18;;;6793:22;;;6620:4;;6649:2;6872:15;;;;6846:2;6831:18;;;6620:4;6915:197;6929:6;6926:1;6923:13;6915:197;;;6978:52;7026:3;7017:6;7011:13;6978:52;:::i;:::-;7087:15;;;;7059:4;7050:14;;;;;6951:1;6944:9;6915:197;;7143:269;7200:6;7253:2;7241:9;7232:7;7228:23;7224:32;7221:52;;;7269:1;7266;7259:12;7221:52;7308:9;7295:23;7358:4;7351:5;7347:16;7340:5;7337:27;7327:55;;7378:1;7375;7368:12;7417:186;7476:6;7529:2;7517:9;7508:7;7504:23;7500:32;7497:52;;;7545:1;7542;7535:12;7497:52;7568:29;7587:9;7568:29;:::i;7608:632::-;7779:2;7831:21;;;7901:13;;7804:18;;;7923:22;;;7750:4;;7779:2;8002:15;;;;7976:2;7961:18;;;7750:4;8045:169;8059:6;8056:1;8053:13;8045:169;;;8120:13;;8108:26;;8189:15;;;;8154:12;;;;8081:1;8074:9;8045:169;;8450:322;8527:6;8535;8543;8596:2;8584:9;8575:7;8571:23;8567:32;8564:52;;;8612:1;8609;8602:12;8564:52;8635:29;8654:9;8635:29;:::i;:::-;8625:39;8711:2;8696:18;;8683:32;;-1:-1:-1;8762:2:1;8747:18;;;8734:32;;8450:322;-1:-1:-1;;;8450:322:1:o;8777:160::-;8842:20;;8898:13;;8891:21;8881:32;;8871:60;;8927:1;8924;8917:12;8942:254;9007:6;9015;9068:2;9056:9;9047:7;9043:23;9039:32;9036:52;;;9084:1;9081;9074:12;9036:52;9107:29;9126:9;9107:29;:::i;:::-;9097:39;;9155:35;9186:2;9175:9;9171:18;9155:35;:::i;:::-;9145:45;;8942:254;;;;;:::o;9201:180::-;9257:6;9310:2;9298:9;9289:7;9285:23;9281:32;9278:52;;;9326:1;9323;9316:12;9278:52;9349:26;9365:9;9349:26;:::i;9386:127::-;9447:10;9442:3;9438:20;9435:1;9428:31;9478:4;9475:1;9468:15;9502:4;9499:1;9492:15;9518:1138;9613:6;9621;9629;9637;9690:3;9678:9;9669:7;9665:23;9661:33;9658:53;;;9707:1;9704;9697:12;9658:53;9730:29;9749:9;9730:29;:::i;:::-;9720:39;;9778:38;9812:2;9801:9;9797:18;9778:38;:::i;:::-;9768:48;;9863:2;9852:9;9848:18;9835:32;9825:42;;9918:2;9907:9;9903:18;9890:32;-1:-1:-1;;;;;9982:2:1;9974:6;9971:14;9968:34;;;9998:1;9995;9988:12;9968:34;10036:6;10025:9;10021:22;10011:32;;10081:7;10074:4;10070:2;10066:13;10062:27;10052:55;;10103:1;10100;10093:12;10052:55;10139:2;10126:16;10161:2;10157;10154:10;10151:36;;;10167:18;;:::i;:::-;10242:2;10236:9;10210:2;10296:13;;-1:-1:-1;;10292:22:1;;;10316:2;10288:31;10284:40;10272:53;;;10340:18;;;10360:22;;;10337:46;10334:72;;;10386:18;;:::i;:::-;10426:10;10422:2;10415:22;10461:2;10453:6;10446:18;10501:7;10496:2;10491;10487;10483:11;10479:20;10476:33;10473:53;;;10522:1;10519;10512:12;10473:53;10578:2;10573;10569;10565:11;10560:2;10552:6;10548:15;10535:46;10623:1;10618:2;10613;10605:6;10601:15;10597:24;10590:35;10644:6;10634:16;;;;;;;9518:1138;;;;;;;:::o;10661:266::-;10857:3;10842:19;;10870:51;10846:9;10903:6;10870:51;:::i;10932:260::-;11000:6;11008;11061:2;11049:9;11040:7;11036:23;11032:32;11029:52;;;11077:1;11074;11067:12;11029:52;11100:29;11119:9;11100:29;:::i;:::-;11090:39;;11148:38;11182:2;11171:9;11167:18;11148:38;:::i;11197:380::-;11276:1;11272:12;;;;11319;;;11340:61;;11394:4;11386:6;11382:17;11372:27;;11340:61;11447:2;11439:6;11436:14;11416:18;11413:38;11410:161;;11493:10;11488:3;11484:20;11481:1;11474:31;11528:4;11525:1;11518:15;11556:4;11553:1;11546:15;11410:161;;11197:380;;;:::o;11582:127::-;11643:10;11638:3;11634:20;11631:1;11624:31;11674:4;11671:1;11664:15;11698:4;11695:1;11688:15;11714:127;11775:10;11770:3;11766:20;11763:1;11756:31;11806:4;11803:1;11796:15;11830:4;11827:1;11820:15;11846:125;11911:9;;;11932:10;;;11929:36;;;11945:18;;:::i;12323:168::-;12396:9;;;12427;;12444:15;;;12438:22;;12424:37;12414:71;;12465:18;;:::i;12496:217::-;12536:1;12562;12552:132;;12606:10;12601:3;12597:20;12594:1;12587:31;12641:4;12638:1;12631:15;12669:4;12666:1;12659:15;12552:132;-1:-1:-1;12698:9:1;;12496:217::o;13054:545::-;13156:2;13151:3;13148:11;13145:448;;;13192:1;13217:5;13213:2;13206:17;13262:4;13258:2;13248:19;13332:2;13320:10;13316:19;13313:1;13309:27;13303:4;13299:38;13368:4;13356:10;13353:20;13350:47;;;-1:-1:-1;13391:4:1;13350:47;13446:2;13441:3;13437:12;13434:1;13430:20;13424:4;13420:31;13410:41;;13501:82;13519:2;13512:5;13509:13;13501:82;;;13564:17;;;13545:1;13534:13;13501:82;;13775:1206;-1:-1:-1;;;;;13894:3:1;13891:27;13888:53;;;13921:18;;:::i;:::-;13950:94;14040:3;14000:38;14032:4;14026:11;14000:38;:::i;:::-;13994:4;13950:94;:::i;:::-;14070:1;14095:2;14090:3;14087:11;14112:1;14107:616;;;;14767:1;14784:3;14781:93;;;-1:-1:-1;14840:19:1;;;14827:33;14781:93;-1:-1:-1;;13732:1:1;13728:11;;;13724:24;13720:29;13710:40;13756:1;13752:11;;;13707:57;14887:78;;14080:895;;14107:616;13001:1;12994:14;;;13038:4;13025:18;;-1:-1:-1;;14143:17:1;;;14244:9;14266:229;14280:7;14277:1;14274:14;14266:229;;;14369:19;;;14356:33;14341:49;;14476:4;14461:20;;;;14429:1;14417:14;;;;14296:12;14266:229;;;14270:3;14523;14514:7;14511:16;14508:159;;;14647:1;14643:6;14637:3;14631;14628:1;14624:11;14620:21;14616:34;14612:39;14599:9;14594:3;14590:19;14577:33;14573:79;14565:6;14558:95;14508:159;;;14710:1;14704:3;14701:1;14697:11;14693:19;14687:4;14680:33;14080:895;;13775:1206;;;:::o;16401:151::-;16491:4;16484:12;;;16470;;;16466:31;;16509:14;;16506:40;;;16526:18;;:::i;16557:663::-;16837:3;16875:6;16869:13;16891:66;16950:6;16945:3;16938:4;16930:6;16926:17;16891:66;:::i;:::-;17020:13;;16979:16;;;;17042:70;17020:13;16979:16;17089:4;17077:17;;17042:70;:::i;:::-;-1:-1:-1;;;17134:20:1;;17163:22;;;17212:1;17201:13;;16557:663;-1:-1:-1;;;;16557:663:1:o;18758:489::-;-1:-1:-1;;;;;19027:15:1;;;19009:34;;19079:15;;19074:2;19059:18;;19052:43;19126:2;19111:18;;19104:34;;;19174:3;19169:2;19154:18;;19147:31;;;18952:4;;19195:46;;19221:19;;19213:6;19195:46;:::i;:::-;19187:54;18758:489;-1:-1:-1;;;;;;18758:489:1:o;19252:249::-;19321:6;19374:2;19362:9;19353:7;19349:23;19345:32;19342:52;;;19390:1;19387;19380:12;19342:52;19422:9;19416:16;19441:30;19465:5;19441:30;:::i
Swarm Source
ipfs://734c2f42e8ec24679c59a37c02c74d8abb1e9daf7bd4041a3c65817e59b2fb35
Loading...
Loading
Loading...
Loading
OVERVIEW
5555 Collection of Eidlings, Bringing $Ethi for all the Non Fungible Traders left in the market!$ethi claim for holders 24 hours after sell out.Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.