Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 31 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Base URI | 15583223 | 1256 days ago | IN | 0 ETH | 0.00089814 | ||||
| Set Approval For... | 15436678 | 1279 days ago | IN | 0 ETH | 0.00024137 | ||||
| Set Approval For... | 15434414 | 1279 days ago | IN | 0 ETH | 0.00126141 | ||||
| Withdraw Money | 15434326 | 1279 days ago | IN | 0 ETH | 0.00062669 | ||||
| Public Mint | 15433829 | 1279 days ago | IN | 0.05 ETH | 0.00156622 | ||||
| Public Mint | 15433792 | 1279 days ago | IN | 0.003 ETH | 0.00081019 | ||||
| Owner Mint | 15433790 | 1279 days ago | IN | 0 ETH | 0.00776805 | ||||
| Owner Mint | 15433786 | 1279 days ago | IN | 0 ETH | 0.0072103 | ||||
| Owner Mint | 15433782 | 1279 days ago | IN | 0 ETH | 0.00618025 | ||||
| Owner Mint | 15433779 | 1279 days ago | IN | 0 ETH | 0.00824034 | ||||
| Owner Mint | 15433775 | 1279 days ago | IN | 0 ETH | 0.0072103 | ||||
| Owner Mint | 15433769 | 1279 days ago | IN | 0 ETH | 0.0072103 | ||||
| Owner Mint | 15433764 | 1279 days ago | IN | 0 ETH | 0.00927038 | ||||
| Owner Mint | 15433761 | 1279 days ago | IN | 0 ETH | 0.00927038 | ||||
| Owner Mint | 15433756 | 1279 days ago | IN | 0 ETH | 0.01133047 | ||||
| Owner Mint | 15433752 | 1279 days ago | IN | 0 ETH | 0.0072103 | ||||
| Owner Mint | 15433750 | 1279 days ago | IN | 0 ETH | 0.0072103 | ||||
| Set Base URI | 15433342 | 1280 days ago | IN | 0 ETH | 0.00035491 | ||||
| Set Base URI | 15433335 | 1280 days ago | IN | 0 ETH | 0.00028895 | ||||
| Set Base URI | 15429403 | 1280 days ago | IN | 0 ETH | 0.00120857 | ||||
| Owner Mint | 15427402 | 1280 days ago | IN | 0 ETH | 0.00515021 | ||||
| Owner Mint | 15427402 | 1280 days ago | IN | 0 ETH | 0.00515021 | ||||
| Owner Mint | 15427402 | 1280 days ago | IN | 0 ETH | 0.00515021 | ||||
| Owner Mint | 15427402 | 1280 days ago | IN | 0 ETH | 0.00515021 | ||||
| Owner Mint | 15427402 | 1280 days ago | IN | 0 ETH | 0.00515021 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
sudofrogs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-08-28
*/
// File: contracts/IERC721A.sol
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* checking first that contract recipients are aware of the ERC721 protocol
* to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move
* this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom}
* whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: contracts/ERC721A.sol
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// 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))) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Hook that is called before a set of serially-ordered token IDs
* are about to be transferred. This includes minting.
* And also called before burning one token.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token IDs
* have been transferred. This includes minting.
* And also called after one token has been burned.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 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: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// 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: contracts/sudofrogs.sol
pragma solidity ^0.8.4;
/**
* @title SUDOFROGS ERC721A
* DO NOT INTERACT WITH CONTRACT DIRECTLY IF YOU ARE NOT CERTAIN.
*/
contract sudofrogs is Ownable, ERC721A, ReentrancyGuard {
uint256 public immutable collectionSize;
uint256 private _price = 0.001 ether;
string public md5Integrity = "5273e6e4ad60f389f6c75212cb7886a5";
constructor(uint256 collectionSize_) ERC721A("sudofrogs", "SUDOFROGS") {
collectionSize = collectionSize_;
}
modifier callerIsUser() {
require(tx.origin == msg.sender, "The caller is another contract");
_;
}
function ownerMint(uint256 quantity)
external
onlyOwner
{
require(totalSupply() + quantity < 10000, "Owner can only mint for free when total supply < 10,000.");
_safeMint(msg.sender, quantity);
}
function publicMint(uint256 quantity)
external
payable
callerIsUser
{
require(msg.value >= _price * quantity, "Need to send more ETH.");
require(totalSupply() + quantity <= collectionSize, "Reached max supply");
_safeMint(msg.sender, quantity);
}
// metadata URI
string private _baseTokenURI;
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function setBaseURI(string calldata baseURI) external onlyOwner {
_baseTokenURI = baseURI;
}
function withdrawMoney() external onlyOwner nonReentrant {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed.");
}
function initializeOwnershipAt(uint256 index) external {
_initializeOwnershipAt(index);
}
function numberMinted(address owner) public view returns (uint256) {
return _numberMinted(owner);
}
function getOwnershipData(uint256 tokenId)
external
view
returns (TokenOwnership memory)
{
return _ownershipOf(tokenId);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","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":"index","type":"uint256"}],"name":"initializeOwnershipAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"md5Integrity","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405266038d7ea4c68000600a556040518060400160405280602081526020017f3532373365366534616436306633383966366337353231326362373838366135815250600b90805190602001906200005c9291906200024e565b503480156200006a57600080fd5b506040516200316838038062003168833981810160405281019062000090919062000315565b6040518060400160405280600981526020017f7375646f66726f677300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f5355444f46524f475300000000000000000000000000000000000000000000008152506200011c620001106200017d60201b60201c565b6200018560201b60201c565b8160039080519060200190620001349291906200024e565b5080600490805190602001906200014d9291906200024e565b506200015e6200024960201b60201c565b60018190555050506001600981905550806080818152505050620003d5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200025c9062000351565b90600052602060002090601f016020900481019282620002805760008555620002cc565b82601f106200029b57805160ff1916838001178555620002cc565b82800160010185558215620002cc579182015b82811115620002cb578251825591602001919060010190620002ae565b5b509050620002db9190620002df565b5090565b5b80821115620002fa576000816000905550600101620002e0565b5090565b6000815190506200030f81620003bb565b92915050565b6000602082840312156200032e576200032d620003b6565b5b60006200033e84828501620002fe565b91505092915050565b6000819050919050565b600060028204905060018216806200036a57607f821691505b6020821081141562000381576200038062000387565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003c68162000347565b8114620003d257600080fd5b50565b608051612d70620003f860003960008181610d0e0152610db00152612d706000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063ac4460021161008a578063dc33e68111610064578063dc33e6811461055f578063e985e9c51461059c578063f19e75d4146105d9578063f2fde38b1461060257610181565b8063ac446002146104e2578063b88d4fde146104f9578063c87b56dd1461052257610181565b8063715018a6146103e45780638da5cb5b146103fb5780639231ab2a1461042657806395d89b41146104635780639fb0d2f51461048e578063a22cb465146104b957610181565b80632db115441161013e57806353b1233d1161011857806353b1233d1461031857806355f804b3146103415780636352211e1461036a57806370a08231146103a757610181565b80632db11544146102a857806342842e0e146102c457806345c0f533146102ed57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612278565b61062b565b6040516101ba9190612688565b60405180910390f35b3480156101cf57600080fd5b506101d86106bd565b6040516101e591906126a3565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061231f565b61074f565b6040516102229190612621565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612238565b6107ce565b005b34801561026057600080fd5b50610269610912565b60405161027691906127e0565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612122565b610929565b005b6102c260048036038101906102bd919061231f565b610c4e565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612122565b610d8e565b005b3480156102f957600080fd5b50610302610dae565b60405161030f91906127e0565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061231f565b610dd2565b005b34801561034d57600080fd5b50610368600480360381019061036391906122d2565b610dde565b005b34801561037657600080fd5b50610391600480360381019061038c919061231f565b610dfc565b60405161039e9190612621565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906120b5565b610e0e565b6040516103db91906127e0565b60405180910390f35b3480156103f057600080fd5b506103f9610ec7565b005b34801561040757600080fd5b50610410610edb565b60405161041d9190612621565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061231f565b610f04565b60405161045a91906127c5565b60405180910390f35b34801561046f57600080fd5b50610478610f1c565b60405161048591906126a3565b60405180910390f35b34801561049a57600080fd5b506104a3610fae565b6040516104b091906126a3565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906121f8565b61103c565b005b3480156104ee57600080fd5b506104f7611147565b005b34801561050557600080fd5b50610520600480360381019061051b9190612175565b611254565b005b34801561052e57600080fd5b506105496004803603810190610544919061231f565b6112c7565b60405161055691906126a3565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906120b5565b611366565b60405161059391906127e0565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906120e2565b611378565b6040516105d09190612688565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061231f565b61140c565b005b34801561060e57600080fd5b50610629600480360381019061062491906120b5565b611477565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546106cc90612a28565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890612a28565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a826114fb565b610790576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d982610dfc565b90508073ffffffffffffffffffffffffffffffffffffffff166107fa61155a565b73ffffffffffffffffffffffffffffffffffffffff161461085d576108268161082161155a565b611378565b61085c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061091c611562565b6002546001540303905090565b600061093482611567565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109a784611635565b915091506109bd81876109b861155a565b61165c565b610a09576109d2866109cd61155a565b611378565b610a08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7d86868660016116a0565b8015610a8857600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b5685610b328888876116a6565b7c0200000000000000000000000000000000000000000000000000000000176116ce565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bde576000600185019050600060056000838152602001908152602001600020541415610bdc576001548114610bdb578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c4686868660016116f9565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390612705565b60405180910390fd5b80600a54610cca91906128f5565b341015610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390612785565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610d36610912565b610d40919061289f565b1115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906126e5565b60405180910390fd5b610d8b33826116ff565b50565b610da983838360405180602001604052806000815250611254565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610ddb8161171d565b50565b610de661175d565b8181600c9190610df7929190611e94565b505050565b6000610e0782611567565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e76576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ecf61175d565b610ed960006117db565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f0c611f1a565b610f158261189f565b9050919050565b606060048054610f2b90612a28565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5790612a28565b8015610fa45780601f10610f7957610100808354040283529160200191610fa4565b820191906000526020600020905b815481529060010190602001808311610f8757829003601f168201915b5050505050905090565b600b8054610fbb90612a28565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe790612a28565b80156110345780601f1061100957610100808354040283529160200191611034565b820191906000526020600020905b81548152906001019060200180831161101757829003601f168201915b505050505081565b806008600061104961155a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110f661155a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161113b9190612688565b60405180910390a35050565b61114f61175d565b60026009541415611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c906127a5565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516111c39061260c565b60006040518083038185875af1925050503d8060008114611200576040519150601f19603f3d011682016040523d82523d6000602084013e611205565b606091505b5050905080611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612765565b60405180910390fd5b506001600981905550565b61125f848484610929565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c15761128a848484846118bf565b6112c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112d2826114fb565b611308576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611312611a1f565b9050600081511415611333576040518060200160405280600081525061135e565b8061133d84611ab1565b60405160200161134e9291906125e8565b6040516020818303038152906040525b915050919050565b600061137182611b0a565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141461175d565b61271081611420610912565b61142a919061289f565b1061146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612725565b60405180910390fd5b61147433826116ff565b50565b61147f61175d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906126c5565b60405180910390fd5b6114f8816117db565b50565b600081611506611562565b11158015611515575060015482105b8015611553575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611576611562565b116115fe576001548110156115fd5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156115fb575b60008114156115f15760056000836001900393508381526020019081526020016000205490506115c6565b8092505050611630565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116bd868684611b61565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611719828260405180602001604052806000815250611b6a565b5050565b60006005600083815260200190815260200160002054141561175a5761174281611567565b60056000838152602001908152602001600020819055505b50565b611765611c08565b73ffffffffffffffffffffffffffffffffffffffff16611783610edb565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612745565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118a7611f1a565b6118b86118b383611567565b611c10565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118e561155a565b8786866040518563ffffffff1660e01b8152600401611907949392919061263c565b602060405180830381600087803b15801561192157600080fd5b505af192505050801561195257506040513d601f19601f8201168201806040525081019061194f91906122a5565b60015b6119cc573d8060008114611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b506000815114156119c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611a2e90612a28565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5a90612a28565b8015611aa75780601f10611a7c57610100808354040283529160200191611aa7565b820191906000526020600020905b815481529060010190602001808311611a8a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611af557600184039350600a81066030018453600a8104905080611af057611af5565b611aca565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b611b748383611cc6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c035760006001549050600083820390505b611bb560008683806001019450866118bf565b611beb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ba2578160015414611c0057600080fd5b50505b505050565b600033905090565b611c18611f1a565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600060015490506000821415611d08576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d1560008483856116a0565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8c83611d7d60008660006116a6565b611d8685611e84565b176116ce565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e2d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611df2565b506000821415611e69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611e7f60008483856116f9565b505050565b60006001821460e11b9050919050565b828054611ea090612a28565b90600052602060002090601f016020900481019282611ec25760008555611f09565b82601f10611edb57803560ff1916838001178555611f09565b82800160010185558215611f09579182015b82811115611f08578235825591602001919060010190611eed565b5b509050611f169190611f69565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115611f82576000816000905550600101611f6a565b5090565b6000611f99611f9484612820565b6127fb565b905082815260208101848484011115611fb557611fb4612b27565b5b611fc08482856129e6565b509392505050565b600081359050611fd781612cde565b92915050565b600081359050611fec81612cf5565b92915050565b60008135905061200181612d0c565b92915050565b60008151905061201681612d0c565b92915050565b600082601f83011261203157612030612b1d565b5b8135612041848260208601611f86565b91505092915050565b60008083601f8401126120605761205f612b1d565b5b8235905067ffffffffffffffff81111561207d5761207c612b18565b5b60208301915083600182028301111561209957612098612b22565b5b9250929050565b6000813590506120af81612d23565b92915050565b6000602082840312156120cb576120ca612b31565b5b60006120d984828501611fc8565b91505092915050565b600080604083850312156120f9576120f8612b31565b5b600061210785828601611fc8565b925050602061211885828601611fc8565b9150509250929050565b60008060006060848603121561213b5761213a612b31565b5b600061214986828701611fc8565b935050602061215a86828701611fc8565b925050604061216b868287016120a0565b9150509250925092565b6000806000806080858703121561218f5761218e612b31565b5b600061219d87828801611fc8565b94505060206121ae87828801611fc8565b93505060406121bf878288016120a0565b925050606085013567ffffffffffffffff8111156121e0576121df612b2c565b5b6121ec8782880161201c565b91505092959194509250565b6000806040838503121561220f5761220e612b31565b5b600061221d85828601611fc8565b925050602061222e85828601611fdd565b9150509250929050565b6000806040838503121561224f5761224e612b31565b5b600061225d85828601611fc8565b925050602061226e858286016120a0565b9150509250929050565b60006020828403121561228e5761228d612b31565b5b600061229c84828501611ff2565b91505092915050565b6000602082840312156122bb576122ba612b31565b5b60006122c984828501612007565b91505092915050565b600080602083850312156122e9576122e8612b31565b5b600083013567ffffffffffffffff81111561230757612306612b2c565b5b6123138582860161204a565b92509250509250929050565b60006020828403121561233557612334612b31565b5b6000612343848285016120a0565b91505092915050565b6123558161294f565b82525050565b6123648161294f565b82525050565b61237381612961565b82525050565b61238281612961565b82525050565b600061239382612851565b61239d8185612867565b93506123ad8185602086016129f5565b6123b681612b36565b840191505092915050565b60006123cc8261285c565b6123d68185612883565b93506123e68185602086016129f5565b6123ef81612b36565b840191505092915050565b60006124058261285c565b61240f8185612894565b935061241f8185602086016129f5565b80840191505092915050565b6000612438602683612883565b915061244382612b47565b604082019050919050565b600061245b601283612883565b915061246682612b96565b602082019050919050565b600061247e601e83612883565b915061248982612bbf565b602082019050919050565b60006124a1603883612883565b91506124ac82612be8565b604082019050919050565b60006124c4602083612883565b91506124cf82612c37565b602082019050919050565b60006124e7600083612878565b91506124f282612c60565b600082019050919050565b600061250a601083612883565b915061251582612c63565b602082019050919050565b600061252d601683612883565b915061253882612c8c565b602082019050919050565b6000612550601f83612883565b915061255b82612cb5565b602082019050919050565b60808201600082015161257c600085018261234c565b50602082015161258f60208501826125d9565b5060408201516125a2604085018261236a565b5060608201516125b560608501826125bb565b50505050565b6125c4816129b9565b82525050565b6125d3816129c8565b82525050565b6125e2816129d2565b82525050565b60006125f482856123fa565b915061260082846123fa565b91508190509392505050565b6000612617826124da565b9150819050919050565b6000602082019050612636600083018461235b565b92915050565b6000608082019050612651600083018761235b565b61265e602083018661235b565b61266b60408301856125ca565b818103606083015261267d8184612388565b905095945050505050565b600060208201905061269d6000830184612379565b92915050565b600060208201905081810360008301526126bd81846123c1565b905092915050565b600060208201905081810360008301526126de8161242b565b9050919050565b600060208201905081810360008301526126fe8161244e565b9050919050565b6000602082019050818103600083015261271e81612471565b9050919050565b6000602082019050818103600083015261273e81612494565b9050919050565b6000602082019050818103600083015261275e816124b7565b9050919050565b6000602082019050818103600083015261277e816124fd565b9050919050565b6000602082019050818103600083015261279e81612520565b9050919050565b600060208201905081810360008301526127be81612543565b9050919050565b60006080820190506127da6000830184612566565b92915050565b60006020820190506127f560008301846125ca565b92915050565b6000612805612816565b90506128118282612a5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561283b5761283a612ae9565b5b61284482612b36565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006128aa826129c8565b91506128b5836129c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128ea576128e9612a8b565b5b828201905092915050565b6000612900826129c8565b915061290b836129c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561294457612943612a8b565b5b828202905092915050565b600061295a82612999565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612a135780820151818401526020810190506129f8565b83811115612a22576000848401525b50505050565b60006002820490506001821680612a4057607f821691505b60208210811415612a5457612a53612aba565b5b50919050565b612a6382612b36565b810181811067ffffffffffffffff82111715612a8257612a81612ae9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e65722063616e206f6e6c79206d696e7420666f7220667265652077686560008201527f6e20746f74616c20737570706c79203c2031302c3030302e0000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612ce78161294f565b8114612cf257600080fd5b50565b612cfe81612961565b8114612d0957600080fd5b50565b612d158161296d565b8114612d2057600080fd5b50565b612d2c816129c8565b8114612d3757600080fd5b5056fea2646970667358221220018bcba82611e09fa1b3f66febb7ec897208a036ef1d1ffc8acc827c05b8bb4d64736f6c634300080700330000000000000000000000000000000000000000000000000000000000066b53
Deployed Bytecode
0x6080604052600436106101815760003560e01c8063715018a6116100d1578063ac4460021161008a578063dc33e68111610064578063dc33e6811461055f578063e985e9c51461059c578063f19e75d4146105d9578063f2fde38b1461060257610181565b8063ac446002146104e2578063b88d4fde146104f9578063c87b56dd1461052257610181565b8063715018a6146103e45780638da5cb5b146103fb5780639231ab2a1461042657806395d89b41146104635780639fb0d2f51461048e578063a22cb465146104b957610181565b80632db115441161013e57806353b1233d1161011857806353b1233d1461031857806355f804b3146103415780636352211e1461036a57806370a08231146103a757610181565b80632db11544146102a857806342842e0e146102c457806345c0f533146102ed57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612278565b61062b565b6040516101ba9190612688565b60405180910390f35b3480156101cf57600080fd5b506101d86106bd565b6040516101e591906126a3565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061231f565b61074f565b6040516102229190612621565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612238565b6107ce565b005b34801561026057600080fd5b50610269610912565b60405161027691906127e0565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612122565b610929565b005b6102c260048036038101906102bd919061231f565b610c4e565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612122565b610d8e565b005b3480156102f957600080fd5b50610302610dae565b60405161030f91906127e0565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061231f565b610dd2565b005b34801561034d57600080fd5b50610368600480360381019061036391906122d2565b610dde565b005b34801561037657600080fd5b50610391600480360381019061038c919061231f565b610dfc565b60405161039e9190612621565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906120b5565b610e0e565b6040516103db91906127e0565b60405180910390f35b3480156103f057600080fd5b506103f9610ec7565b005b34801561040757600080fd5b50610410610edb565b60405161041d9190612621565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061231f565b610f04565b60405161045a91906127c5565b60405180910390f35b34801561046f57600080fd5b50610478610f1c565b60405161048591906126a3565b60405180910390f35b34801561049a57600080fd5b506104a3610fae565b6040516104b091906126a3565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906121f8565b61103c565b005b3480156104ee57600080fd5b506104f7611147565b005b34801561050557600080fd5b50610520600480360381019061051b9190612175565b611254565b005b34801561052e57600080fd5b506105496004803603810190610544919061231f565b6112c7565b60405161055691906126a3565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906120b5565b611366565b60405161059391906127e0565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906120e2565b611378565b6040516105d09190612688565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061231f565b61140c565b005b34801561060e57600080fd5b50610629600480360381019061062491906120b5565b611477565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546106cc90612a28565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890612a28565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a826114fb565b610790576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d982610dfc565b90508073ffffffffffffffffffffffffffffffffffffffff166107fa61155a565b73ffffffffffffffffffffffffffffffffffffffff161461085d576108268161082161155a565b611378565b61085c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061091c611562565b6002546001540303905090565b600061093482611567565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109a784611635565b915091506109bd81876109b861155a565b61165c565b610a09576109d2866109cd61155a565b611378565b610a08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7d86868660016116a0565b8015610a8857600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b5685610b328888876116a6565b7c0200000000000000000000000000000000000000000000000000000000176116ce565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bde576000600185019050600060056000838152602001908152602001600020541415610bdc576001548114610bdb578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c4686868660016116f9565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390612705565b60405180910390fd5b80600a54610cca91906128f5565b341015610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390612785565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000066b5381610d36610912565b610d40919061289f565b1115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906126e5565b60405180910390fd5b610d8b33826116ff565b50565b610da983838360405180602001604052806000815250611254565b505050565b7f0000000000000000000000000000000000000000000000000000000000066b5381565b610ddb8161171d565b50565b610de661175d565b8181600c9190610df7929190611e94565b505050565b6000610e0782611567565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e76576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ecf61175d565b610ed960006117db565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f0c611f1a565b610f158261189f565b9050919050565b606060048054610f2b90612a28565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5790612a28565b8015610fa45780601f10610f7957610100808354040283529160200191610fa4565b820191906000526020600020905b815481529060010190602001808311610f8757829003601f168201915b5050505050905090565b600b8054610fbb90612a28565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe790612a28565b80156110345780601f1061100957610100808354040283529160200191611034565b820191906000526020600020905b81548152906001019060200180831161101757829003601f168201915b505050505081565b806008600061104961155a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110f661155a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161113b9190612688565b60405180910390a35050565b61114f61175d565b60026009541415611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c906127a5565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516111c39061260c565b60006040518083038185875af1925050503d8060008114611200576040519150601f19603f3d011682016040523d82523d6000602084013e611205565b606091505b5050905080611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612765565b60405180910390fd5b506001600981905550565b61125f848484610929565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c15761128a848484846118bf565b6112c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112d2826114fb565b611308576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611312611a1f565b9050600081511415611333576040518060200160405280600081525061135e565b8061133d84611ab1565b60405160200161134e9291906125e8565b6040516020818303038152906040525b915050919050565b600061137182611b0a565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141461175d565b61271081611420610912565b61142a919061289f565b1061146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612725565b60405180910390fd5b61147433826116ff565b50565b61147f61175d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906126c5565b60405180910390fd5b6114f8816117db565b50565b600081611506611562565b11158015611515575060015482105b8015611553575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611576611562565b116115fe576001548110156115fd5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156115fb575b60008114156115f15760056000836001900393508381526020019081526020016000205490506115c6565b8092505050611630565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116bd868684611b61565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611719828260405180602001604052806000815250611b6a565b5050565b60006005600083815260200190815260200160002054141561175a5761174281611567565b60056000838152602001908152602001600020819055505b50565b611765611c08565b73ffffffffffffffffffffffffffffffffffffffff16611783610edb565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612745565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118a7611f1a565b6118b86118b383611567565b611c10565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118e561155a565b8786866040518563ffffffff1660e01b8152600401611907949392919061263c565b602060405180830381600087803b15801561192157600080fd5b505af192505050801561195257506040513d601f19601f8201168201806040525081019061194f91906122a5565b60015b6119cc573d8060008114611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b506000815114156119c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611a2e90612a28565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5a90612a28565b8015611aa75780601f10611a7c57610100808354040283529160200191611aa7565b820191906000526020600020905b815481529060010190602001808311611a8a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611af557600184039350600a81066030018453600a8104905080611af057611af5565b611aca565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b611b748383611cc6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c035760006001549050600083820390505b611bb560008683806001019450866118bf565b611beb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ba2578160015414611c0057600080fd5b50505b505050565b600033905090565b611c18611f1a565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600060015490506000821415611d08576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d1560008483856116a0565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8c83611d7d60008660006116a6565b611d8685611e84565b176116ce565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e2d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611df2565b506000821415611e69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611e7f60008483856116f9565b505050565b60006001821460e11b9050919050565b828054611ea090612a28565b90600052602060002090601f016020900481019282611ec25760008555611f09565b82601f10611edb57803560ff1916838001178555611f09565b82800160010185558215611f09579182015b82811115611f08578235825591602001919060010190611eed565b5b509050611f169190611f69565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115611f82576000816000905550600101611f6a565b5090565b6000611f99611f9484612820565b6127fb565b905082815260208101848484011115611fb557611fb4612b27565b5b611fc08482856129e6565b509392505050565b600081359050611fd781612cde565b92915050565b600081359050611fec81612cf5565b92915050565b60008135905061200181612d0c565b92915050565b60008151905061201681612d0c565b92915050565b600082601f83011261203157612030612b1d565b5b8135612041848260208601611f86565b91505092915050565b60008083601f8401126120605761205f612b1d565b5b8235905067ffffffffffffffff81111561207d5761207c612b18565b5b60208301915083600182028301111561209957612098612b22565b5b9250929050565b6000813590506120af81612d23565b92915050565b6000602082840312156120cb576120ca612b31565b5b60006120d984828501611fc8565b91505092915050565b600080604083850312156120f9576120f8612b31565b5b600061210785828601611fc8565b925050602061211885828601611fc8565b9150509250929050565b60008060006060848603121561213b5761213a612b31565b5b600061214986828701611fc8565b935050602061215a86828701611fc8565b925050604061216b868287016120a0565b9150509250925092565b6000806000806080858703121561218f5761218e612b31565b5b600061219d87828801611fc8565b94505060206121ae87828801611fc8565b93505060406121bf878288016120a0565b925050606085013567ffffffffffffffff8111156121e0576121df612b2c565b5b6121ec8782880161201c565b91505092959194509250565b6000806040838503121561220f5761220e612b31565b5b600061221d85828601611fc8565b925050602061222e85828601611fdd565b9150509250929050565b6000806040838503121561224f5761224e612b31565b5b600061225d85828601611fc8565b925050602061226e858286016120a0565b9150509250929050565b60006020828403121561228e5761228d612b31565b5b600061229c84828501611ff2565b91505092915050565b6000602082840312156122bb576122ba612b31565b5b60006122c984828501612007565b91505092915050565b600080602083850312156122e9576122e8612b31565b5b600083013567ffffffffffffffff81111561230757612306612b2c565b5b6123138582860161204a565b92509250509250929050565b60006020828403121561233557612334612b31565b5b6000612343848285016120a0565b91505092915050565b6123558161294f565b82525050565b6123648161294f565b82525050565b61237381612961565b82525050565b61238281612961565b82525050565b600061239382612851565b61239d8185612867565b93506123ad8185602086016129f5565b6123b681612b36565b840191505092915050565b60006123cc8261285c565b6123d68185612883565b93506123e68185602086016129f5565b6123ef81612b36565b840191505092915050565b60006124058261285c565b61240f8185612894565b935061241f8185602086016129f5565b80840191505092915050565b6000612438602683612883565b915061244382612b47565b604082019050919050565b600061245b601283612883565b915061246682612b96565b602082019050919050565b600061247e601e83612883565b915061248982612bbf565b602082019050919050565b60006124a1603883612883565b91506124ac82612be8565b604082019050919050565b60006124c4602083612883565b91506124cf82612c37565b602082019050919050565b60006124e7600083612878565b91506124f282612c60565b600082019050919050565b600061250a601083612883565b915061251582612c63565b602082019050919050565b600061252d601683612883565b915061253882612c8c565b602082019050919050565b6000612550601f83612883565b915061255b82612cb5565b602082019050919050565b60808201600082015161257c600085018261234c565b50602082015161258f60208501826125d9565b5060408201516125a2604085018261236a565b5060608201516125b560608501826125bb565b50505050565b6125c4816129b9565b82525050565b6125d3816129c8565b82525050565b6125e2816129d2565b82525050565b60006125f482856123fa565b915061260082846123fa565b91508190509392505050565b6000612617826124da565b9150819050919050565b6000602082019050612636600083018461235b565b92915050565b6000608082019050612651600083018761235b565b61265e602083018661235b565b61266b60408301856125ca565b818103606083015261267d8184612388565b905095945050505050565b600060208201905061269d6000830184612379565b92915050565b600060208201905081810360008301526126bd81846123c1565b905092915050565b600060208201905081810360008301526126de8161242b565b9050919050565b600060208201905081810360008301526126fe8161244e565b9050919050565b6000602082019050818103600083015261271e81612471565b9050919050565b6000602082019050818103600083015261273e81612494565b9050919050565b6000602082019050818103600083015261275e816124b7565b9050919050565b6000602082019050818103600083015261277e816124fd565b9050919050565b6000602082019050818103600083015261279e81612520565b9050919050565b600060208201905081810360008301526127be81612543565b9050919050565b60006080820190506127da6000830184612566565b92915050565b60006020820190506127f560008301846125ca565b92915050565b6000612805612816565b90506128118282612a5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561283b5761283a612ae9565b5b61284482612b36565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006128aa826129c8565b91506128b5836129c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128ea576128e9612a8b565b5b828201905092915050565b6000612900826129c8565b915061290b836129c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561294457612943612a8b565b5b828202905092915050565b600061295a82612999565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612a135780820151818401526020810190506129f8565b83811115612a22576000848401525b50505050565b60006002820490506001821680612a4057607f821691505b60208210811415612a5457612a53612aba565b5b50919050565b612a6382612b36565b810181811067ffffffffffffffff82111715612a8257612a81612ae9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e65722063616e206f6e6c79206d696e7420666f7220667265652077686560008201527f6e20746f74616c20737570706c79203c2031302c3030302e0000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612ce78161294f565b8114612cf257600080fd5b50565b612cfe81612961565b8114612d0957600080fd5b50565b612d158161296d565b8114612d2057600080fd5b50565b612d2c816129c8565b8114612d3757600080fd5b5056fea2646970667358221220018bcba82611e09fa1b3f66febb7ec897208a036ef1d1ffc8acc827c05b8bb4d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000066b53
-----Decoded View---------------
Arg [0] : collectionSize_ (uint256): 420691
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000066b53
Deployed Bytecode Sourcemap
60133:1953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18354:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19256:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25739:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25180:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15007:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29378:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60870:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32291:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60196:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61683:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61370:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20649:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16191:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59137:103;;;;;;;;;;;;;:::i;:::-;;58489:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61915:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19432:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60285:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26297:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61484:191;;;;;;;;;;;;;:::i;:::-;;33074:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19642:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61794:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26688:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60616:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59395:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18354:639;18439:4;18778:10;18763:25;;:11;:25;;;;:102;;;;18855:10;18840:25;;:11;:25;;;;18763:102;:179;;;;18932:10;18917:25;;:11;:25;;;;18763:179;18743:199;;18354:639;;;:::o;19256:100::-;19310:13;19343:5;19336:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19256:100;:::o;25739:218::-;25815:7;25840:16;25848:7;25840;:16::i;:::-;25835:64;;25865:34;;;;;;;;;;;;;;25835:64;25919:15;:24;25935:7;25919:24;;;;;;;;;;;:30;;;;;;;;;;;;25912:37;;25739:218;;;:::o;25180:400::-;25261:13;25277:16;25285:7;25277;:16::i;:::-;25261:32;;25333:5;25310:28;;:19;:17;:19::i;:::-;:28;;;25306:175;;25358:44;25375:5;25382:19;:17;:19::i;:::-;25358:16;:44::i;:::-;25353:128;;25430:35;;;;;;;;;;;;;;25353:128;25306:175;25526:2;25493:15;:24;25509:7;25493:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25564:7;25560:2;25544:28;;25553:5;25544:28;;;;;;;;;;;;25250:330;25180:400;;:::o;15007:323::-;15068:7;15296:15;:13;:15::i;:::-;15281:12;;15265:13;;:28;:46;15258:53;;15007:323;:::o;29378:2817::-;29512:27;29542;29561:7;29542:18;:27::i;:::-;29512:57;;29627:4;29586:45;;29602:19;29586:45;;;29582:86;;29640:28;;;;;;;;;;;;;;29582:86;29682:27;29711:23;29738:35;29765:7;29738:26;:35::i;:::-;29681:92;;;;29873:68;29898:15;29915:4;29921:19;:17;:19::i;:::-;29873:24;:68::i;:::-;29868:180;;29961:43;29978:4;29984:19;:17;:19::i;:::-;29961:16;:43::i;:::-;29956:92;;30013:35;;;;;;;;;;;;;;29956:92;29868:180;30079:1;30065:16;;:2;:16;;;30061:52;;;30090:23;;;;;;;;;;;;;;30061:52;30126:43;30148:4;30154:2;30158:7;30167:1;30126:21;:43::i;:::-;30262:15;30259:160;;;30402:1;30381:19;30374:30;30259:160;30799:18;:24;30818:4;30799:24;;;;;;;;;;;;;;;;30797:26;;;;;;;;;;;;30868:18;:22;30887:2;30868:22;;;;;;;;;;;;;;;;30866:24;;;;;;;;;;;31190:146;31227:2;31276:45;31291:4;31297:2;31301:19;31276:14;:45::i;:::-;11406:8;31248:73;31190:18;:146::i;:::-;31161:17;:26;31179:7;31161:26;;;;;;;;;;;:175;;;;31507:1;11406:8;31456:19;:47;:52;31452:627;;;31529:19;31561:1;31551:7;:11;31529:33;;31718:1;31684:17;:30;31702:11;31684:30;;;;;;;;;;;;:35;31680:384;;;31822:13;;31807:11;:28;31803:242;;32002:19;31969:17;:30;31987:11;31969:30;;;;;;;;;;;:52;;;;31803:242;31680:384;31510:569;31452:627;32126:7;32122:2;32107:27;;32116:4;32107:27;;;;;;;;;;;;32145:42;32166:4;32172:2;32176:7;32185:1;32145:20;:42::i;:::-;29501:2694;;;29378:2817;;;:::o;60870:310::-;60543:10;60530:23;;:9;:23;;;60522:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61011:8:::1;61002:6;;:17;;;;:::i;:::-;60989:9;:30;;60981:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61093:14;61081:8;61065:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;61057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;61141:31;61151:10;61163:8;61141:9;:31::i;:::-;60870:310:::0;:::o;32291:185::-;32429:39;32446:4;32452:2;32456:7;32429:39;;;;;;;;;;;;:16;:39::i;:::-;32291:185;;;:::o;60196:39::-;;;:::o;61683:103::-;61749:29;61772:5;61749:22;:29::i;:::-;61683:103;:::o;61370:106::-;58375:13;:11;:13::i;:::-;61461:7:::1;;61445:13;:23;;;;;;;:::i;:::-;;61370:106:::0;;:::o;20649:152::-;20721:7;20764:27;20783:7;20764:18;:27::i;:::-;20741:52;;20649:152;;;:::o;16191:233::-;16263:7;16304:1;16287:19;;:5;:19;;;16283:60;;;16315:28;;;;;;;;;;;;;;16283:60;10350:13;16361:18;:25;16380:5;16361:25;;;;;;;;;;;;;;;;:55;16354:62;;16191:233;;;:::o;59137:103::-;58375:13;:11;:13::i;:::-;59202:30:::1;59229:1;59202:18;:30::i;:::-;59137:103::o:0;58489:87::-;58535:7;58562:6;;;;;;;;;;;58555:13;;58489:87;:::o;61915:168::-;62008:21;;:::i;:::-;62054;62067:7;62054:12;:21::i;:::-;62047:28;;61915:168;;;:::o;19432:104::-;19488:13;19521:7;19514:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19432:104;:::o;60285:63::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26297:234::-;26444:8;26392:18;:39;26411:19;:17;:19::i;:::-;26392:39;;;;;;;;;;;;;;;:49;26432:8;26392:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26504:8;26468:55;;26483:19;:17;:19::i;:::-;26468:55;;;26514:8;26468:55;;;;;;:::i;:::-;;;;;;;;26297:234;;:::o;61484:191::-;58375:13;:11;:13::i;:::-;55414:1:::1;56012:7;;:19;;56004:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55414:1;56145:7;:18;;;;61553:12:::2;61571:10;:15;;61594:21;61571:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61552:68;;;61639:7;61631:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61541:134;55370:1:::1;56324:7;:22;;;;61484:191::o:0;33074:399::-;33241:31;33254:4;33260:2;33264:7;33241:12;:31::i;:::-;33305:1;33287:2;:14;;;:19;33283:183;;33326:56;33357:4;33363:2;33367:7;33376:5;33326:30;:56::i;:::-;33321:145;;33410:40;;;;;;;;;;;;;;33321:145;33283:183;33074:399;;;;:::o;19642:318::-;19715:13;19746:16;19754:7;19746;:16::i;:::-;19741:59;;19771:29;;;;;;;;;;;;;;19741:59;19813:21;19837:10;:8;:10::i;:::-;19813:34;;19890:1;19871:7;19865:21;:26;;:87;;;;;;;;;;;;;;;;;19918:7;19927:18;19937:7;19927:9;:18::i;:::-;19901:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19865:87;19858:94;;;19642:318;;;:::o;61794:113::-;61852:7;61879:20;61893:5;61879:13;:20::i;:::-;61872:27;;61794:113;;;:::o;26688:164::-;26785:4;26809:18;:25;26828:5;26809:25;;;;;;;;;;;;;;;:35;26835:8;26809:35;;;;;;;;;;;;;;;;;;;;;;;;;26802:42;;26688:164;;;;:::o;60616:246::-;58375:13;:11;:13::i;:::-;60746:5:::1;60735:8;60719:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;60711:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;60823:31;60833:10;60845:8;60823:9;:31::i;:::-;60616:246:::0;:::o;59395:201::-;58375:13;:11;:13::i;:::-;59504:1:::1;59484:22;;:8;:22;;;;59476:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59560:28;59579:8;59560:18;:28::i;:::-;59395:201:::0;:::o;27110:282::-;27175:4;27231:7;27212:15;:13;:15::i;:::-;:26;;:66;;;;;27265:13;;27255:7;:23;27212:66;:153;;;;;27364:1;11126:8;27316:17;:26;27334:7;27316:26;;;;;;;;;;;;:44;:49;27212:153;27192:173;;27110:282;;;:::o;49148:105::-;49208:7;49235:10;49228:17;;49148:105;:::o;14523:92::-;14579:7;14523:92;:::o;21804:1275::-;21871:7;21891:12;21906:7;21891:22;;21974:4;21955:15;:13;:15::i;:::-;:23;21951:1061;;22008:13;;22001:4;:20;21997:1015;;;22046:14;22063:17;:23;22081:4;22063:23;;;;;;;;;;;;22046:40;;22180:1;11126:8;22152:6;:24;:29;22148:845;;;22817:113;22834:1;22824:6;:11;22817:113;;;22877:17;:25;22895:6;;;;;;;22877:25;;;;;;;;;;;;22868:34;;22817:113;;;22963:6;22956:13;;;;;;22148:845;22023:989;21997:1015;21951:1061;23040:31;;;;;;;;;;;;;;21804:1275;;;;:::o;28273:485::-;28375:27;28404:23;28445:38;28486:15;:24;28502:7;28486:24;;;;;;;;;;;28445:65;;28663:18;28640:41;;28720:19;28714:26;28695:45;;28625:126;28273:485;;;:::o;27501:659::-;27650:11;27815:16;27808:5;27804:28;27795:37;;27975:16;27964:9;27960:32;27947:45;;28125:15;28114:9;28111:30;28103:5;28092:9;28089:20;28086:56;28076:66;;27501:659;;;;;:::o;34135:159::-;;;;;:::o;48457:311::-;48592:7;48612:16;11530:3;48638:19;:41;;48612:68;;11530:3;48706:31;48717:4;48723:2;48727:9;48706:10;:31::i;:::-;48698:40;;:62;;48691:69;;;48457:311;;;;;:::o;23627:450::-;23707:14;23875:16;23868:5;23864:28;23855:37;;24052:5;24038:11;24013:23;24009:41;24006:52;23999:5;23996:63;23986:73;;23627:450;;;;:::o;34959:158::-;;;;;:::o;42980:112::-;43057:27;43067:2;43071:8;43057:27;;;;;;;;;;;;:9;:27::i;:::-;42980:112;;:::o;21526:196::-;21633:1;21605:17;:24;21623:5;21605:24;;;;;;;;;;;;:29;21601:114;;;21678:25;21697:5;21678:18;:25::i;:::-;21651:17;:24;21669:5;21651:24;;;;;;;;;;;:52;;;;21601:114;21526:196;:::o;58654:132::-;58729:12;:10;:12::i;:::-;58718:23;;:7;:5;:7::i;:::-;:23;;;58710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58654:132::o;59756:191::-;59830:16;59849:6;;;;;;;;;;;59830:25;;59875:8;59866:6;;:17;;;;;;;;;;;;;;;;;;59930:8;59899:40;;59920:8;59899:40;;;;;;;;;;;;59819:128;59756:191;:::o;20990:166::-;21060:21;;:::i;:::-;21101:47;21120:27;21139:7;21120:18;:27::i;:::-;21101:18;:47::i;:::-;21094:54;;20990:166;;;:::o;35557:716::-;35720:4;35766:2;35741:45;;;35787:19;:17;:19::i;:::-;35808:4;35814:7;35823:5;35741:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35737:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36041:1;36024:6;:13;:18;36020:235;;;36070:40;;;;;;;;;;;;;;36020:235;36213:6;36207:13;36198:6;36194:2;36190:15;36183:38;35737:529;35910:54;;;35900:64;;;:6;:64;;;;35893:71;;;35557:716;;;;;;:::o;61248:114::-;61308:13;61341;61334:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61248:114;:::o;49355:1745::-;49420:17;49854:4;49847;49841:11;49837:22;49946:1;49940:4;49933:15;50021:4;50018:1;50014:12;50007:19;;50103:1;50098:3;50091:14;50207:3;50446:5;50428:428;50454:1;50428:428;;;50494:1;50489:3;50485:11;50478:18;;50665:2;50659:4;50655:13;50651:2;50647:22;50642:3;50634:36;50759:2;50753:4;50749:13;50741:21;;50826:4;50816:25;;50834:5;;50816:25;50428:428;;;50432:21;50895:3;50890;50886:13;51010:4;51005:3;51001:14;50994:21;;51075:6;51070:3;51063:19;49459:1634;;;49355:1745;;;:::o;16506:178::-;16567:7;10350:13;10488:2;16595:18;:25;16614:5;16595:25;;;;;;;;;;;;;;;;:50;;16594:82;16587:89;;16506:178;;;:::o;48158:147::-;48295:6;48158:147;;;;;:::o;42207:689::-;42338:19;42344:2;42348:8;42338:5;:19::i;:::-;42417:1;42399:2;:14;;;:19;42395:483;;42439:11;42453:13;;42439:27;;42485:13;42507:8;42501:3;:14;42485:30;;42534:233;42565:62;42604:1;42608:2;42612:7;;;;;;42621:5;42565:30;:62::i;:::-;42560:167;;42663:40;;;;;;;;;;;;;;42560:167;42762:3;42754:5;:11;42534:233;;42849:3;42832:13;;:20;42828:34;;42854:8;;;42828:34;42420:458;;42395:483;42207:689;;;:::o;57040:98::-;57093:7;57120:10;57113:17;;57040:98;:::o;23178:366::-;23244:31;;:::i;:::-;23321:6;23288:9;:14;;:41;;;;;;;;;;;11009:3;23374:6;:33;;23340:9;:24;;:68;;;;;;;;;;;23466:1;11126:8;23438:6;:24;:29;;23419:9;:16;;:48;;;;;;;;;;;11530:3;23507:6;:28;;23478:9;:19;;:58;;;;;;;;;;;23178:366;;;:::o;36735:2720::-;36808:20;36831:13;;36808:36;;36871:1;36859:8;:13;36855:44;;;36881:18;;;;;;;;;;;;;;36855:44;36912:61;36942:1;36946:2;36950:12;36964:8;36912:21;:61::i;:::-;37456:1;10488:2;37426:1;:26;;37425:32;37413:8;:45;37387:18;:22;37406:2;37387:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37735:139;37772:2;37826:33;37849:1;37853:2;37857:1;37826:14;:33::i;:::-;37793:30;37814:8;37793:20;:30::i;:::-;:66;37735:18;:139::i;:::-;37701:17;:31;37719:12;37701:31;;;;;;;;;;;:173;;;;37891:16;37922:11;37951:8;37936:12;:23;37922:37;;38472:16;38468:2;38464:25;38452:37;;38844:12;38804:8;38763:1;38701:25;38642:1;38581;38554:335;38969:1;38955:12;38951:20;38909:346;39010:3;39001:7;38998:16;38909:346;;39228:7;39218:8;39215:1;39188:25;39185:1;39182;39177:59;39063:1;39054:7;39050:15;39039:26;;38909:346;;;38913:77;39300:1;39288:8;:13;39284:45;;;39310:19;;;;;;;;;;;;;;39284:45;39362:3;39346:13;:19;;;;37161:2216;;39387:60;39416:1;39420:2;39424:12;39438:8;39387:20;:60::i;:::-;36797:2658;36735:2720;;:::o;24179:324::-;24249:14;24482:1;24472:8;24469:15;24443:24;24439:46;24429:56;;24179:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:99::-;7282:21;7297:5;7282:21;:::i;:::-;7277:3;7270:34;7211:99;;:::o;7316:109::-;7397:21;7412:5;7397:21;:::i;:::-;7392:3;7385:34;7316:109;;:::o;7431:360::-;7517:3;7545:38;7577:5;7545:38;:::i;:::-;7599:70;7662:6;7657:3;7599:70;:::i;:::-;7592:77;;7678:52;7723:6;7718:3;7711:4;7704:5;7700:16;7678:52;:::i;:::-;7755:29;7777:6;7755:29;:::i;:::-;7750:3;7746:39;7739:46;;7521:270;7431:360;;;;:::o;7797:364::-;7885:3;7913:39;7946:5;7913:39;:::i;:::-;7968:71;8032:6;8027:3;7968:71;:::i;:::-;7961:78;;8048:52;8093:6;8088:3;8081:4;8074:5;8070:16;8048:52;:::i;:::-;8125:29;8147:6;8125:29;:::i;:::-;8120:3;8116:39;8109:46;;7889:272;7797:364;;;;:::o;8167:377::-;8273:3;8301:39;8334:5;8301:39;:::i;:::-;8356:89;8438:6;8433:3;8356:89;:::i;:::-;8349:96;;8454:52;8499:6;8494:3;8487:4;8480:5;8476:16;8454:52;:::i;:::-;8531:6;8526:3;8522:16;8515:23;;8277:267;8167:377;;;;:::o;8550:366::-;8692:3;8713:67;8777:2;8772:3;8713:67;:::i;:::-;8706:74;;8789:93;8878:3;8789:93;:::i;:::-;8907:2;8902:3;8898:12;8891:19;;8550:366;;;:::o;8922:::-;9064:3;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9161:93;9250:3;9161:93;:::i;:::-;9279:2;9274:3;9270:12;9263:19;;8922:366;;;:::o;9294:::-;9436:3;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9533:93;9622:3;9533:93;:::i;:::-;9651:2;9646:3;9642:12;9635:19;;9294:366;;;:::o;9666:::-;9808:3;9829:67;9893:2;9888:3;9829:67;:::i;:::-;9822:74;;9905:93;9994:3;9905:93;:::i;:::-;10023:2;10018:3;10014:12;10007:19;;9666:366;;;:::o;10038:::-;10180:3;10201:67;10265:2;10260:3;10201:67;:::i;:::-;10194:74;;10277:93;10366:3;10277:93;:::i;:::-;10395:2;10390:3;10386:12;10379:19;;10038:366;;;:::o;10410:398::-;10569:3;10590:83;10671:1;10666:3;10590:83;:::i;:::-;10583:90;;10682:93;10771:3;10682:93;:::i;:::-;10800:1;10795:3;10791:11;10784:18;;10410:398;;;:::o;10814:366::-;10956:3;10977:67;11041:2;11036:3;10977:67;:::i;:::-;10970:74;;11053:93;11142:3;11053:93;:::i;:::-;11171:2;11166:3;11162:12;11155:19;;10814:366;;;:::o;11186:::-;11328:3;11349:67;11413:2;11408:3;11349:67;:::i;:::-;11342:74;;11425:93;11514:3;11425:93;:::i;:::-;11543:2;11538:3;11534:12;11527:19;;11186:366;;;:::o;11558:::-;11700:3;11721:67;11785:2;11780:3;11721:67;:::i;:::-;11714:74;;11797:93;11886:3;11797:93;:::i;:::-;11915:2;11910:3;11906:12;11899:19;;11558:366;;;:::o;12002:872::-;12159:4;12154:3;12150:14;12246:4;12239:5;12235:16;12229:23;12265:63;12322:4;12317:3;12313:14;12299:12;12265:63;:::i;:::-;12174:164;12430:4;12423:5;12419:16;12413:23;12449:61;12504:4;12499:3;12495:14;12481:12;12449:61;:::i;:::-;12348:172;12604:4;12597:5;12593:16;12587:23;12623:57;12674:4;12669:3;12665:14;12651:12;12623:57;:::i;:::-;12530:160;12777:4;12770:5;12766:16;12760:23;12796:61;12851:4;12846:3;12842:14;12828:12;12796:61;:::i;:::-;12700:167;12128:746;12002:872;;:::o;12880:105::-;12955:23;12972:5;12955:23;:::i;:::-;12950:3;12943:36;12880:105;;:::o;12991:118::-;13078:24;13096:5;13078:24;:::i;:::-;13073:3;13066:37;12991:118;;:::o;13115:105::-;13190:23;13207:5;13190:23;:::i;:::-;13185:3;13178:36;13115:105;;:::o;13226:435::-;13406:3;13428:95;13519:3;13510:6;13428:95;:::i;:::-;13421:102;;13540:95;13631:3;13622:6;13540:95;:::i;:::-;13533:102;;13652:3;13645:10;;13226:435;;;;;:::o;13667:379::-;13851:3;13873:147;14016:3;13873:147;:::i;:::-;13866:154;;14037:3;14030:10;;13667:379;;;:::o;14052:222::-;14145:4;14183:2;14172:9;14168:18;14160:26;;14196:71;14264:1;14253:9;14249:17;14240:6;14196:71;:::i;:::-;14052:222;;;;:::o;14280:640::-;14475:4;14513:3;14502:9;14498:19;14490:27;;14527:71;14595:1;14584:9;14580:17;14571:6;14527:71;:::i;:::-;14608:72;14676:2;14665:9;14661:18;14652:6;14608:72;:::i;:::-;14690;14758:2;14747:9;14743:18;14734:6;14690:72;:::i;:::-;14809:9;14803:4;14799:20;14794:2;14783:9;14779:18;14772:48;14837:76;14908:4;14899:6;14837:76;:::i;:::-;14829:84;;14280:640;;;;;;;:::o;14926:210::-;15013:4;15051:2;15040:9;15036:18;15028:26;;15064:65;15126:1;15115:9;15111:17;15102:6;15064:65;:::i;:::-;14926:210;;;;:::o;15142:313::-;15255:4;15293:2;15282:9;15278:18;15270:26;;15342:9;15336:4;15332:20;15328:1;15317:9;15313:17;15306:47;15370:78;15443:4;15434:6;15370:78;:::i;:::-;15362:86;;15142:313;;;;:::o;15461:419::-;15627:4;15665:2;15654:9;15650:18;15642:26;;15714:9;15708:4;15704:20;15700:1;15689:9;15685:17;15678:47;15742:131;15868:4;15742:131;:::i;:::-;15734:139;;15461:419;;;:::o;15886:::-;16052:4;16090:2;16079:9;16075:18;16067:26;;16139:9;16133:4;16129:20;16125:1;16114:9;16110:17;16103:47;16167:131;16293:4;16167:131;:::i;:::-;16159:139;;15886:419;;;:::o;16311:::-;16477:4;16515:2;16504:9;16500:18;16492:26;;16564:9;16558:4;16554:20;16550:1;16539:9;16535:17;16528:47;16592:131;16718:4;16592:131;:::i;:::-;16584:139;;16311:419;;;:::o;16736:::-;16902:4;16940:2;16929:9;16925:18;16917:26;;16989:9;16983:4;16979:20;16975:1;16964:9;16960:17;16953:47;17017:131;17143:4;17017:131;:::i;:::-;17009:139;;16736:419;;;:::o;17161:::-;17327:4;17365:2;17354:9;17350:18;17342:26;;17414:9;17408:4;17404:20;17400:1;17389:9;17385:17;17378:47;17442:131;17568:4;17442:131;:::i;:::-;17434:139;;17161:419;;;:::o;17586:::-;17752:4;17790:2;17779:9;17775:18;17767:26;;17839:9;17833:4;17829:20;17825:1;17814:9;17810:17;17803:47;17867:131;17993:4;17867:131;:::i;:::-;17859:139;;17586:419;;;:::o;18011:::-;18177:4;18215:2;18204:9;18200:18;18192:26;;18264:9;18258:4;18254:20;18250:1;18239:9;18235:17;18228:47;18292:131;18418:4;18292:131;:::i;:::-;18284:139;;18011:419;;;:::o;18436:::-;18602:4;18640:2;18629:9;18625:18;18617:26;;18689:9;18683:4;18679:20;18675:1;18664:9;18660:17;18653:47;18717:131;18843:4;18717:131;:::i;:::-;18709:139;;18436:419;;;:::o;18861:343::-;19014:4;19052:3;19041:9;19037:19;19029:27;;19066:131;19194:1;19183:9;19179:17;19170:6;19066:131;:::i;:::-;18861:343;;;;:::o;19210:222::-;19303:4;19341:2;19330:9;19326:18;19318:26;;19354:71;19422:1;19411:9;19407:17;19398:6;19354:71;:::i;:::-;19210:222;;;;:::o;19438:129::-;19472:6;19499:20;;:::i;:::-;19489:30;;19528:33;19556:4;19548:6;19528:33;:::i;:::-;19438:129;;;:::o;19573:75::-;19606:6;19639:2;19633:9;19623:19;;19573:75;:::o;19654:307::-;19715:4;19805:18;19797:6;19794:30;19791:56;;;19827:18;;:::i;:::-;19791:56;19865:29;19887:6;19865:29;:::i;:::-;19857:37;;19949:4;19943;19939:15;19931:23;;19654:307;;;:::o;19967:98::-;20018:6;20052:5;20046:12;20036:22;;19967:98;;;:::o;20071:99::-;20123:6;20157:5;20151:12;20141:22;;20071:99;;;:::o;20176:168::-;20259:11;20293:6;20288:3;20281:19;20333:4;20328:3;20324:14;20309:29;;20176:168;;;;:::o;20350:147::-;20451:11;20488:3;20473:18;;20350:147;;;;:::o;20503:169::-;20587:11;20621:6;20616:3;20609:19;20661:4;20656:3;20652:14;20637:29;;20503:169;;;;:::o;20678:148::-;20780:11;20817:3;20802:18;;20678:148;;;;:::o;20832:305::-;20872:3;20891:20;20909:1;20891:20;:::i;:::-;20886:25;;20925:20;20943:1;20925:20;:::i;:::-;20920:25;;21079:1;21011:66;21007:74;21004:1;21001:81;20998:107;;;21085:18;;:::i;:::-;20998:107;21129:1;21126;21122:9;21115:16;;20832:305;;;;:::o;21143:348::-;21183:7;21206:20;21224:1;21206:20;:::i;:::-;21201:25;;21240:20;21258:1;21240:20;:::i;:::-;21235:25;;21428:1;21360:66;21356:74;21353:1;21350:81;21345:1;21338:9;21331:17;21327:105;21324:131;;;21435:18;;:::i;:::-;21324:131;21483:1;21480;21476:9;21465:20;;21143:348;;;;:::o;21497:96::-;21534:7;21563:24;21581:5;21563:24;:::i;:::-;21552:35;;21497:96;;;:::o;21599:90::-;21633:7;21676:5;21669:13;21662:21;21651:32;;21599:90;;;:::o;21695:149::-;21731:7;21771:66;21764:5;21760:78;21749:89;;21695:149;;;:::o;21850:126::-;21887:7;21927:42;21920:5;21916:54;21905:65;;21850:126;;;:::o;21982:91::-;22018:7;22058:8;22051:5;22047:20;22036:31;;21982:91;;;:::o;22079:77::-;22116:7;22145:5;22134:16;;22079:77;;;:::o;22162:101::-;22198:7;22238:18;22231:5;22227:30;22216:41;;22162:101;;;:::o;22269:154::-;22353:6;22348:3;22343;22330:30;22415:1;22406:6;22401:3;22397:16;22390:27;22269:154;;;:::o;22429:307::-;22497:1;22507:113;22521:6;22518:1;22515:13;22507:113;;;22606:1;22601:3;22597:11;22591:18;22587:1;22582:3;22578:11;22571:39;22543:2;22540:1;22536:10;22531:15;;22507:113;;;22638:6;22635:1;22632:13;22629:101;;;22718:1;22709:6;22704:3;22700:16;22693:27;22629:101;22478:258;22429:307;;;:::o;22742:320::-;22786:6;22823:1;22817:4;22813:12;22803:22;;22870:1;22864:4;22860:12;22891:18;22881:81;;22947:4;22939:6;22935:17;22925:27;;22881:81;23009:2;23001:6;22998:14;22978:18;22975:38;22972:84;;;23028:18;;:::i;:::-;22972:84;22793:269;22742:320;;;:::o;23068:281::-;23151:27;23173:4;23151:27;:::i;:::-;23143:6;23139:40;23281:6;23269:10;23266:22;23245:18;23233:10;23230:34;23227:62;23224:88;;;23292:18;;:::i;:::-;23224:88;23332:10;23328:2;23321:22;23111:238;23068:281;;:::o;23355:180::-;23403:77;23400:1;23393:88;23500:4;23497:1;23490:15;23524:4;23521:1;23514:15;23541:180;23589:77;23586:1;23579:88;23686:4;23683:1;23676:15;23710:4;23707:1;23700:15;23727:180;23775:77;23772:1;23765:88;23872:4;23869:1;23862:15;23896:4;23893:1;23886:15;23913:117;24022:1;24019;24012:12;24036:117;24145:1;24142;24135:12;24159:117;24268:1;24265;24258:12;24282:117;24391:1;24388;24381:12;24405:117;24514:1;24511;24504:12;24528:117;24637:1;24634;24627:12;24651:102;24692:6;24743:2;24739:7;24734:2;24727:5;24723:14;24719:28;24709:38;;24651:102;;;:::o;24759:225::-;24899:34;24895:1;24887:6;24883:14;24876:58;24968:8;24963:2;24955:6;24951:15;24944:33;24759:225;:::o;24990:168::-;25130:20;25126:1;25118:6;25114:14;25107:44;24990:168;:::o;25164:180::-;25304:32;25300:1;25292:6;25288:14;25281:56;25164:180;:::o;25350:243::-;25490:34;25486:1;25478:6;25474:14;25467:58;25559:26;25554:2;25546:6;25542:15;25535:51;25350:243;:::o;25599:182::-;25739:34;25735:1;25727:6;25723:14;25716:58;25599:182;:::o;25787:114::-;;:::o;25907:166::-;26047:18;26043:1;26035:6;26031:14;26024:42;25907:166;:::o;26079:172::-;26219:24;26215:1;26207:6;26203:14;26196:48;26079:172;:::o;26257:181::-;26397:33;26393:1;26385:6;26381:14;26374:57;26257:181;:::o;26444:122::-;26517:24;26535:5;26517:24;:::i;:::-;26510:5;26507:35;26497:63;;26556:1;26553;26546:12;26497:63;26444:122;:::o;26572:116::-;26642:21;26657:5;26642:21;:::i;:::-;26635:5;26632:32;26622:60;;26678:1;26675;26668:12;26622:60;26572:116;:::o;26694:120::-;26766:23;26783:5;26766:23;:::i;:::-;26759:5;26756:34;26746:62;;26804:1;26801;26794:12;26746:62;26694:120;:::o;26820:122::-;26893:24;26911:5;26893:24;:::i;:::-;26886:5;26883:35;26873:63;;26932:1;26929;26922:12;26873:63;26820:122;:::o
Swarm Source
ipfs://018bcba82611e09fa1b3f66febb7ec897208a036ef1d1ffc8acc827c05b8bb4d
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.