Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,826 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24532731 | 9 days ago | IN | 0 ETH | 0.00000816 | ||||
| Set Approval For... | 24488497 | 15 days ago | IN | 0 ETH | 0.00000145 | ||||
| Set Approval For... | 24485619 | 16 days ago | IN | 0 ETH | 0.00001194 | ||||
| Set Approval For... | 24485617 | 16 days ago | IN | 0 ETH | 0.00001495 | ||||
| Set Approval For... | 24485611 | 16 days ago | IN | 0 ETH | 0.00001362 | ||||
| Set Approval For... | 24485605 | 16 days ago | IN | 0 ETH | 0.00001245 | ||||
| Set Approval For... | 24446533 | 21 days ago | IN | 0 ETH | 0.00000748 | ||||
| Set Approval For... | 24434698 | 23 days ago | IN | 0 ETH | 0.00000944 | ||||
| Set Approval For... | 24427920 | 24 days ago | IN | 0 ETH | 0.0000058 | ||||
| Set Approval For... | 24421957 | 25 days ago | IN | 0 ETH | 0.00001331 | ||||
| Set Approval For... | 24421910 | 25 days ago | IN | 0 ETH | 0.00000977 | ||||
| Set Approval For... | 24406502 | 27 days ago | IN | 0 ETH | 0.00000539 | ||||
| Set Approval For... | 24358088 | 34 days ago | IN | 0 ETH | 0.00000431 | ||||
| Set Approval For... | 24357672 | 34 days ago | IN | 0 ETH | 0.0000168 | ||||
| Set Approval For... | 24353422 | 34 days ago | IN | 0 ETH | 0.00000462 | ||||
| Set Approval For... | 24337407 | 37 days ago | IN | 0 ETH | 0.00000268 | ||||
| Set Approval For... | 24337354 | 37 days ago | IN | 0 ETH | 0.00000234 | ||||
| Set Approval For... | 24334199 | 37 days ago | IN | 0 ETH | 0.00005947 | ||||
| Set Approval For... | 24333759 | 37 days ago | IN | 0 ETH | 0.00001105 | ||||
| Set Approval For... | 24332877 | 37 days ago | IN | 0 ETH | 0.00000615 | ||||
| Set Approval For... | 24330926 | 37 days ago | IN | 0 ETH | 0.00000116 | ||||
| Safe Transfer Fr... | 24329381 | 38 days ago | IN | 0 ETH | 0.00000211 | ||||
| Set Approval For... | 24329205 | 38 days ago | IN | 0 ETH | 0.0000034 | ||||
| Set Approval For... | 24324997 | 38 days ago | IN | 0 ETH | 0.00002535 | ||||
| Safe Transfer Fr... | 24321730 | 39 days ago | IN | 0 ETH | 0.00000751 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Donkies
Compiler Version
v0.8.33+commit.64118f21
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2026-01-25
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.33;
/**
* @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();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* 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);
}
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
interface IERC2981 is IERC165 {
/// ERC165 bytes to add to interface array - set in parent contract
/// implementing this standard
///
/// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
/// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
/// _registerInterface(_INTERFACE_ID_ERC2981);
/// @notice Called with the sale price to determine how much royalty
// is owed and to whom.
/// @param _tokenId - the NFT asset queried for royalty information
/// @param _salePrice - the sale price of the NFT asset specified by _tokenId
/// @return receiver - address of who should be sent the royalty payment
/// @return royaltyAmount - the royalty payment amount for _salePrice
function royaltyInfo(
uint256 _tokenId,
uint256 _salePrice
) external view returns (
address receiver,
uint256 royaltyAmount
);
}
contract Donkies is IERC721A {
using SafeMath for uint256;
address private _owner;
function owner() public view returns(address){
return _owner;
}
mapping(address=>uint256) minted;
uint256 public constant MAX_SUPPLY = 1414;
uint256 public constant MAX_PER_WALLET = 2;
uint256 public constant MAX_FREE_PER_WALLET = 2;
uint256 public constant MAX_FREE = 1414;
uint256 public constant COST = 0.001 ether;
string private constant _name = "Donkies";
string private constant _symbol = "Donkies";
string private _baseURI = "bafybeicob7iu7dbolae3n2aj2ac3kplp2i3x2qcbxjj4pg73nrpngzsws4";
constructor() {
_owner = msg.sender;
}
function mint(uint256 amount) external payable{
address _caller = _msgSenderERC721A();
require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
require(amount*COST <= msg.value, "Value to Low");
//minted[msg.sender] += amount;
_mint(_caller, amount);
}
function freemint() external nob{
address _caller = _msgSenderERC721A();
uint256 amount = 1;
require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
require(totalSupply() + amount <= MAX_FREE, "Value to Low");
require(minted[_caller]+amount <= MAX_FREE_PER_WALLET, "Value to Low");
minted[_caller] += amount;
_mint(_caller, amount);
}
// Mask of an entry in packed address data.
uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
uint256 private constant BITPOS_NUMBER_MINTED = 64;
uint256 private constant BITPOS_NUMBER_BURNED = 128;
uint256 private constant BITPOS_AUX = 192;
uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
uint256 private constant BITPOS_START_TIMESTAMP = 160;
uint256 private constant BITMASK_BURNED = 1 << 224;
uint256 private constant BITPOS_NEXT_INITIALIZED = 225;
uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;
uint256 private _currentIndex = 0;
// 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`
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 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
function royaltyInfo(uint256, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount)
{
receiver = _owner;
royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price
}
function setData(string memory _base) external onlyOwner{
_baseURI = _base;
}
/**
* @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 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 override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to `_startTokenId()`
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC165-supportsInterface}.
*/
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: 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 == 0x2a55205a || // ERC Royalties
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (_addressToUint256(owner) == 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 auxillary 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);
}
/**
* 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 ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed is zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* 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;
}
/**
* Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
}
/**
* @dev Casts the address to uint256 without masking.
*/
function _addressToUint256(address value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev Casts the boolean to uint256 without branching.
*/
function _boolToUint256(bool value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = address(uint160(_packedOwnershipOf(tokenId)));
if (to == owner) revert();
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSenderERC721A()) revert ApproveToCaller();
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex;
}
/**
* @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.
*/
function _mint(address to, uint256 quantity) internal {
uint256 startTokenId = _currentIndex;
//if (_addressToUint256(to) == 0) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the balance and number minted.
_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] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
(_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
address approvedAddress = _tokenApprovals[tokenId];
bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
isApprovedForAll(from, _msgSenderERC721A()) ||
approvedAddress == _msgSenderERC721A());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
// Clear approvals from the previous owner.
if (_addressToUint256(approvedAddress) != 0) {
delete _tokenApprovals[tokenId];
}
// 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] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
BITMASK_NEXT_INITIALIZED;
// 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 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 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 returns (string memory ptr) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit),
// but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
// We will need 1 32-byte word to store the length,
// and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
ptr := add(mload(0x40), 128)
// Update the free memory pointer to allocate.
mstore(0x40, ptr)
// Cache the end of the memory to calculate the length later.
let end := ptr
// We write the string from the rightmost digit to the leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// Costs a bit more than early returning for the zero case,
// but cheaper in terms of deployment and overall runtime costs.
for {
// Initialize and perform the first pass without check.
let temp := value
// Move the pointer 1 byte leftwards to point to an empty character slot.
ptr := sub(ptr, 1)
// Write the character to the pointer. 48 is the ASCII index of '0'.
mstore8(ptr, add(48, mod(temp, 10)))
temp := div(temp, 10)
} temp {
// Keep dividing `temp` until zero.
temp := div(temp, 10)
} {
// Body of the for loop.
ptr := sub(ptr, 1)
mstore8(ptr, add(48, mod(temp, 10)))
}
let length := sub(end, ptr)
// Move the pointer 32 bytes leftwards to make room for the length.
ptr := sub(ptr, 32)
// Store the length.
mstore(ptr, length)
}
}
function teamMint(uint256 amount) external onlyOwner{
require(totalSupply() + amount < MAX_SUPPLY, "Must be below Max Supply");
_mint(msg.sender, amount);
}
modifier onlyOwner() {
require(_owner==msg.sender, "not Owner");
_;
}
modifier nob() {
require(tx.origin==msg.sender, "no Script");
_;
}
function withdraw() external onlyOwner {
uint256 balance = address(this).balance;
address payable recipient = payable(msg.sender);
recipient.call{value:balance, gas:30000}("");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_base","type":"string"}],"name":"setData","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e0604052603b60808181529061158060a03960029061001f90826100e9565b505f60035534801561002f575f5ffd5b505f80546001600160a01b031916331790556101a7565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061006e57607f821691505b60208210810361008c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156100e457828211156100e457805f5260205f20601f840160051c60208510156100bd57505f5b90810190601f840160051c035f5b818110156100e0575f838201556001016100cb565b5050505b505050565b81516001600160401b0381111561010257610102610046565b61011681610110845461005a565b84610092565b6020601f821160018114610148575f83156101315750848201515b5f19600385901b1c1916600184901b1784556101a0565b5f84815260208120601f198516915b828110156101775787850151825560209485019460019092019101610157565b508482101561019457868401515f19600387901b60f8161c191681555b505060018360011b0184555b5050505050565b6113cc806101b45f395ff3fe60806040526004361061017b575f3560e01c80636352211e116100cd578063a22cb46511610087578063c87b56dd11610062578063c87b56dd14610421578063e985e9c514610440578063ed6661c2146102f5578063f9cb63ac1461045f575f5ffd5b8063a22cb465146103c9578063b88d4fde146103e8578063bf8fbbd214610407575f5ffd5b80636352211e1461035c57806370a082311461037b5780638da5cb5b1461039a57806395d89b41146101b357806398710d1e14610243578063a0712d68146103b6575f5ffd5b806323b872dd1161013857806332cb6b0c1161011357806332cb6b0c146102f55780633ccfd60b1461030a57806342842e0e1461031e57806347064d6a1461033d575f5ffd5b806323b872dd146102795780632a55205a146102985780632fbba115146102d6575f5ffd5b806301ffc9a71461017f57806306fdde03146101b3578063081812fc146101eb578063095ea7b3146102225780630f2cdd6c1461024357806318160ddd14610265575b5f5ffd5b34801561018a575f5ffd5b5061019e610199366004610e79565b610473565b60405190151581526020015b60405180910390f35b3480156101be575f5ffd5b50604080518082019091526007815266446f6e6b69657360c81b60208201525b6040516101aa9190610ea0565b3480156101f6575f5ffd5b5061020a610205366004610ed5565b6104df565b6040516001600160a01b0390911681526020016101aa565b34801561022d575f5ffd5b5061024161023c366004610f07565b610523565b005b34801561024e575f5ffd5b50610257600281565b6040519081526020016101aa565b348015610270575f5ffd5b50600354610257565b348015610284575f5ffd5b50610241610293366004610f2f565b6105de565b3480156102a3575f5ffd5b506102b76102b2366004610f69565b6105ee565b604080516001600160a01b0390931683526020830191909152016101aa565b3480156102e1575f5ffd5b506102416102f0366004610ed5565b61061d565b348015610300575f5ffd5b5061025761058681565b348015610315575f5ffd5b506102416106c0565b348015610329575f5ffd5b50610241610338366004610f2f565b61073b565b348015610348575f5ffd5b50610241610357366004611014565b610755565b348015610367575f5ffd5b5061020a610376366004610ed5565b61078e565b348015610386575f5ffd5b50610257610395366004611061565b610798565b3480156103a5575f5ffd5b505f546001600160a01b031661020a565b6102416103c4366004610ed5565b6107de565b3480156103d4575f5ffd5b506102416103e336600461107a565b610869565b3480156103f3575f5ffd5b506102416104023660046110b3565b6108fd565b348015610412575f5ffd5b5061025766038d7ea4c6800081565b34801561042c575f5ffd5b506101de61043b366004610ed5565b61090e565b34801561044b575f5ffd5b5061019e61045a36600461112a565b610a12565b34801561046a575f5ffd5b50610241610a3f565b5f6301ffc9a760e01b6001600160e01b0319831614806104a357506380ac58cd60e01b6001600160e01b03198316145b806104be575063152a902d60e11b6001600160e01b03198316145b806104d95750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f6104eb826003541190565b610508576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61052d82610b7d565b9050806001600160a01b0316836001600160a01b03160361054c575f5ffd5b336001600160a01b03821614610583576105668133610a12565b610583576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105e9838383610bdf565b505050565b5f80546001600160a01b03169061271061060a846101f4611166565b610614919061117d565b90509250929050565b5f546001600160a01b0316331461064f5760405162461bcd60e51b81526004016106469061119c565b60405180910390fd5b6105868161065c60035490565b61066691906111bf565b106106b35760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652062656c6f77204d617820537570706c7900000000000000006044820152606401610646565b6106bd3382610d71565b50565b5f546001600160a01b031633146106e95760405162461bcd60e51b81526004016106469061119c565b6040514790339081906175309084905f818181858888f193505050503d805f811461072f576040519150601f19603f3d011682016040523d82523d5f602084013e610734565b606091505b5050505050565b6105e983838360405180602001604052805f8152506108fd565b5f546001600160a01b0316331461077e5760405162461bcd60e51b81526004016106469061119c565b600261078a8282611258565b5050565b5f6104d982610b7d565b5f815f036107b9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b33610586826107ec60035490565b6107f691906111bf565b111561082f5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610646565b3461084166038d7ea4c6800084611166565b111561085f5760405162461bcd60e51b815260040161064690611313565b61078a8183610d71565b336001600160a01b038316036108925760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610908848484610bdf565b50505050565b606061091b826003541190565b61093857604051630a14c4b560e41b815260040160405180910390fd5b5f60028054610946906111d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610972906111d2565b80156109bd5780601f10610994576101008083540402835291602001916109bd565b820191905f5260205f20905b8154815290600101906020018083116109a057829003601f168201915b5050505050905080515f036109e05760405180602001604052805f815250610a0b565b806109ea84610e2a565b6040516020016109fb929190611350565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b323314610a7a5760405162461bcd60e51b81526020600482015260096024820152681b9bc814d8dc9a5c1d60ba1b6044820152606401610646565b33600161058681610a8a60035490565b610a9491906111bf565b1115610acd5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610646565b61058681610ada60035490565b610ae491906111bf565b1115610b025760405162461bcd60e51b815260040161064690611313565b6001600160a01b0382165f90815260016020526040902054600290610b289083906111bf565b1115610b465760405162461bcd60e51b815260040161064690611313565b6001600160a01b0382165f9081526001602052604081208054839290610b6d9084906111bf565b9091555061078a90508282610d71565b5f81600354811015610bc6575f8181526004602052604081205490600160e01b82169003610bc4575b805f03610a0b57505f19015f81815260046020526040902054610ba6565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610be982610b7d565b9050836001600160a01b0316816001600160a01b031614610c1c5760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610c4b5750610c4b8633610a12565b80610c5e57506001600160a01b03821633145b905080610c7e57604051632ce44b5f60e11b815260040160405180910390fd5b8115610ca0575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d2757600184015f818152600460205260408120549003610d25576003548114610d25575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6003545f829003610d955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ddf5750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e6757600183039250600a81066030018353600a9004610e49565b50819003601f19909101908152919050565b5f60208284031215610e89575f5ffd5b81356001600160e01b031981168114610a0b575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610ee5575f5ffd5b5035919050565b80356001600160a01b0381168114610f02575f5ffd5b919050565b5f5f60408385031215610f18575f5ffd5b610f2183610eec565b946020939093013593505050565b5f5f5f60608486031215610f41575f5ffd5b610f4a84610eec565b9250610f5860208501610eec565b929592945050506040919091013590565b5f5f60408385031215610f7a575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610fb757610fb7610f89565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715610fe657610fe6610f89565b604052838152905080828401851015610ffd575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215611024575f5ffd5b813567ffffffffffffffff81111561103a575f5ffd5b8201601f8101841361104a575f5ffd5b61105984823560208401610f9d565b949350505050565b5f60208284031215611071575f5ffd5b610a0b82610eec565b5f5f6040838503121561108b575f5ffd5b61109483610eec565b9150602083013580151581146110a8575f5ffd5b809150509250929050565b5f5f5f5f608085870312156110c6575f5ffd5b6110cf85610eec565b93506110dd60208601610eec565b925060408501359150606085013567ffffffffffffffff8111156110ff575f5ffd5b8501601f8101871361110f575f5ffd5b61111e87823560208401610f9d565b91505092959194509250565b5f5f6040838503121561113b575f5ffd5b61114483610eec565b915061061460208401610eec565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104d9576104d9611152565b5f8261119757634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b808201808211156104d9576104d9611152565b600181811c908216806111e657607f821691505b60208210810361120457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156105e957828211156105e957805f5260205f20601f840160051c602085101561123557505f5b90810190601f840160051c035f5b81811015610d69575f83820155600101611243565b815167ffffffffffffffff81111561127257611272610f89565b6112868161128084546111d2565b8461120a565b6020601f8211600181146112b8575f83156112a15750848201515b5f19600385901b1c1916600184901b178455610734565b5f84815260208120601f198516915b828110156112e757878501518255602094850194600190920191016112c7565b508482101561130457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6020808252600c908201526b56616c756520746f204c6f7760a01b604082015260600190565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f61136b6007830185611339565b602f60f81b815261137f6001820185611339565b64173539b7b760d91b81526005019594505050505056fea2646970667358221220918cb8e63c9d9b6a4af7838fa2a1a532ccd3a671f18ddea8ddc66262e14a4a7b64736f6c6343000821003362616679626569636f623769753764626f6c6165336e32616a326163336b706c703269337832716362786a6a34706737336e72706e677a73777334
Deployed Bytecode
0x60806040526004361061017b575f3560e01c80636352211e116100cd578063a22cb46511610087578063c87b56dd11610062578063c87b56dd14610421578063e985e9c514610440578063ed6661c2146102f5578063f9cb63ac1461045f575f5ffd5b8063a22cb465146103c9578063b88d4fde146103e8578063bf8fbbd214610407575f5ffd5b80636352211e1461035c57806370a082311461037b5780638da5cb5b1461039a57806395d89b41146101b357806398710d1e14610243578063a0712d68146103b6575f5ffd5b806323b872dd1161013857806332cb6b0c1161011357806332cb6b0c146102f55780633ccfd60b1461030a57806342842e0e1461031e57806347064d6a1461033d575f5ffd5b806323b872dd146102795780632a55205a146102985780632fbba115146102d6575f5ffd5b806301ffc9a71461017f57806306fdde03146101b3578063081812fc146101eb578063095ea7b3146102225780630f2cdd6c1461024357806318160ddd14610265575b5f5ffd5b34801561018a575f5ffd5b5061019e610199366004610e79565b610473565b60405190151581526020015b60405180910390f35b3480156101be575f5ffd5b50604080518082019091526007815266446f6e6b69657360c81b60208201525b6040516101aa9190610ea0565b3480156101f6575f5ffd5b5061020a610205366004610ed5565b6104df565b6040516001600160a01b0390911681526020016101aa565b34801561022d575f5ffd5b5061024161023c366004610f07565b610523565b005b34801561024e575f5ffd5b50610257600281565b6040519081526020016101aa565b348015610270575f5ffd5b50600354610257565b348015610284575f5ffd5b50610241610293366004610f2f565b6105de565b3480156102a3575f5ffd5b506102b76102b2366004610f69565b6105ee565b604080516001600160a01b0390931683526020830191909152016101aa565b3480156102e1575f5ffd5b506102416102f0366004610ed5565b61061d565b348015610300575f5ffd5b5061025761058681565b348015610315575f5ffd5b506102416106c0565b348015610329575f5ffd5b50610241610338366004610f2f565b61073b565b348015610348575f5ffd5b50610241610357366004611014565b610755565b348015610367575f5ffd5b5061020a610376366004610ed5565b61078e565b348015610386575f5ffd5b50610257610395366004611061565b610798565b3480156103a5575f5ffd5b505f546001600160a01b031661020a565b6102416103c4366004610ed5565b6107de565b3480156103d4575f5ffd5b506102416103e336600461107a565b610869565b3480156103f3575f5ffd5b506102416104023660046110b3565b6108fd565b348015610412575f5ffd5b5061025766038d7ea4c6800081565b34801561042c575f5ffd5b506101de61043b366004610ed5565b61090e565b34801561044b575f5ffd5b5061019e61045a36600461112a565b610a12565b34801561046a575f5ffd5b50610241610a3f565b5f6301ffc9a760e01b6001600160e01b0319831614806104a357506380ac58cd60e01b6001600160e01b03198316145b806104be575063152a902d60e11b6001600160e01b03198316145b806104d95750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f6104eb826003541190565b610508576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61052d82610b7d565b9050806001600160a01b0316836001600160a01b03160361054c575f5ffd5b336001600160a01b03821614610583576105668133610a12565b610583576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105e9838383610bdf565b505050565b5f80546001600160a01b03169061271061060a846101f4611166565b610614919061117d565b90509250929050565b5f546001600160a01b0316331461064f5760405162461bcd60e51b81526004016106469061119c565b60405180910390fd5b6105868161065c60035490565b61066691906111bf565b106106b35760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652062656c6f77204d617820537570706c7900000000000000006044820152606401610646565b6106bd3382610d71565b50565b5f546001600160a01b031633146106e95760405162461bcd60e51b81526004016106469061119c565b6040514790339081906175309084905f818181858888f193505050503d805f811461072f576040519150601f19603f3d011682016040523d82523d5f602084013e610734565b606091505b5050505050565b6105e983838360405180602001604052805f8152506108fd565b5f546001600160a01b0316331461077e5760405162461bcd60e51b81526004016106469061119c565b600261078a8282611258565b5050565b5f6104d982610b7d565b5f815f036107b9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b33610586826107ec60035490565b6107f691906111bf565b111561082f5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610646565b3461084166038d7ea4c6800084611166565b111561085f5760405162461bcd60e51b815260040161064690611313565b61078a8183610d71565b336001600160a01b038316036108925760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610908848484610bdf565b50505050565b606061091b826003541190565b61093857604051630a14c4b560e41b815260040160405180910390fd5b5f60028054610946906111d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610972906111d2565b80156109bd5780601f10610994576101008083540402835291602001916109bd565b820191905f5260205f20905b8154815290600101906020018083116109a057829003601f168201915b5050505050905080515f036109e05760405180602001604052805f815250610a0b565b806109ea84610e2a565b6040516020016109fb929190611350565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b323314610a7a5760405162461bcd60e51b81526020600482015260096024820152681b9bc814d8dc9a5c1d60ba1b6044820152606401610646565b33600161058681610a8a60035490565b610a9491906111bf565b1115610acd5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610646565b61058681610ada60035490565b610ae491906111bf565b1115610b025760405162461bcd60e51b815260040161064690611313565b6001600160a01b0382165f90815260016020526040902054600290610b289083906111bf565b1115610b465760405162461bcd60e51b815260040161064690611313565b6001600160a01b0382165f9081526001602052604081208054839290610b6d9084906111bf565b9091555061078a90508282610d71565b5f81600354811015610bc6575f8181526004602052604081205490600160e01b82169003610bc4575b805f03610a0b57505f19015f81815260046020526040902054610ba6565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610be982610b7d565b9050836001600160a01b0316816001600160a01b031614610c1c5760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610c4b5750610c4b8633610a12565b80610c5e57506001600160a01b03821633145b905080610c7e57604051632ce44b5f60e11b815260040160405180910390fd5b8115610ca0575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d2757600184015f818152600460205260408120549003610d25576003548114610d25575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6003545f829003610d955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ddf5750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e6757600183039250600a81066030018353600a9004610e49565b50819003601f19909101908152919050565b5f60208284031215610e89575f5ffd5b81356001600160e01b031981168114610a0b575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610ee5575f5ffd5b5035919050565b80356001600160a01b0381168114610f02575f5ffd5b919050565b5f5f60408385031215610f18575f5ffd5b610f2183610eec565b946020939093013593505050565b5f5f5f60608486031215610f41575f5ffd5b610f4a84610eec565b9250610f5860208501610eec565b929592945050506040919091013590565b5f5f60408385031215610f7a575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610fb757610fb7610f89565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715610fe657610fe6610f89565b604052838152905080828401851015610ffd575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215611024575f5ffd5b813567ffffffffffffffff81111561103a575f5ffd5b8201601f8101841361104a575f5ffd5b61105984823560208401610f9d565b949350505050565b5f60208284031215611071575f5ffd5b610a0b82610eec565b5f5f6040838503121561108b575f5ffd5b61109483610eec565b9150602083013580151581146110a8575f5ffd5b809150509250929050565b5f5f5f5f608085870312156110c6575f5ffd5b6110cf85610eec565b93506110dd60208601610eec565b925060408501359150606085013567ffffffffffffffff8111156110ff575f5ffd5b8501601f8101871361110f575f5ffd5b61111e87823560208401610f9d565b91505092959194509250565b5f5f6040838503121561113b575f5ffd5b61114483610eec565b915061061460208401610eec565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104d9576104d9611152565b5f8261119757634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b808201808211156104d9576104d9611152565b600181811c908216806111e657607f821691505b60208210810361120457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156105e957828211156105e957805f5260205f20601f840160051c602085101561123557505f5b90810190601f840160051c035f5b81811015610d69575f83820155600101611243565b815167ffffffffffffffff81111561127257611272610f89565b6112868161128084546111d2565b8461120a565b6020601f8211600181146112b8575f83156112a15750848201515b5f19600385901b1c1916600184901b178455610734565b5f84815260208120601f198516915b828110156112e757878501518255602094850194600190920191016112c7565b508482101561130457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6020808252600c908201526b56616c756520746f204c6f7760a01b604082015260600190565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f61136b6007830185611339565b602f60f81b815261137f6001820185611339565b64173539b7b760d91b81526005019594505050505056fea2646970667358221220918cb8e63c9d9b6a4af7838fa2a1a532ccd3a671f18ddea8ddc66262e14a4a7b64736f6c63430008210033
Deployed Bytecode Sourcemap
16946:21228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21713:674;;;;;;;;;;-1:-1:-1;21713:674:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;21713:674:0;;;;;;;;25975:100;;;;;;;;;;-1:-1:-1;26062:5:0;;;;;;;;;;;;-1:-1:-1;;;26062:5:0;;;;25975:100;;;;;;;:::i;27640:204::-;;;;;;;;;;-1:-1:-1;27640:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1315:32:1;;;1297:51;;1285:2;1270:18;27640:204:0;1151:203:1;27123:451:0;;;;;;;;;;-1:-1:-1;27123:451:0;;;;;:::i;:::-;;:::i;:::-;;17219:42;;;;;;;;;;;;17260:1;17219:42;;;;;1988:25:1;;;1976:2;1961:18;17219:42:0;1842:177:1;20956:300:0;;;;;;;;;;-1:-1:-1;21206:13:0;;20956:300;;28526:190;;;;;;;;;;-1:-1:-1;28526:190:0;;;;;:::i;:::-;;:::i;19961:274::-;;;;;;;;;;-1:-1:-1;19961:274:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2946:32:1;;;2928:51;;3010:2;2995:18;;2988:34;;;;2901:18;19961:274:0;2754::1;37575:179:0;;;;;;;;;;-1:-1:-1;37575:179:0;;;;;:::i;:::-;;:::i;17171:41::-;;;;;;;;;;;;17208:4;17171:41;;37961:210;;;;;;;;;;;;;:::i;28787:205::-;;;;;;;;;;-1:-1:-1;28787:205:0;;;;;:::i;:::-;;:::i;20243:91::-;;;;;;;;;;-1:-1:-1;20243:91:0;;;;;:::i;:::-;;:::i;25764:144::-;;;;;;;;;;-1:-1:-1;25764:144:0;;;;;:::i;:::-;;:::i;22451:234::-;;;;;;;;;;-1:-1:-1;22451:234:0;;;;;:::i;:::-;;:::i;17047:77::-;;;;;;;;;;-1:-1:-1;17084:7:0;17110:6;-1:-1:-1;;;;;17110:6:0;17047:77;;17673:308;;;;;;:::i;:::-;;:::i;27916:::-;;;;;;;;;;-1:-1:-1;27916:308:0;;;;;:::i;:::-;;:::i;29063:227::-;;;;;;;;;;-1:-1:-1;29063:227:0;;;;;:::i;:::-;;:::i;17368:42::-;;;;;;;;;;;;17399:11;17368:42;;26260:339;;;;;;;;;;-1:-1:-1;26260:339:0;;;;;:::i;:::-;;:::i;28295:164::-;;;;;;;;;;-1:-1:-1;28295:164:0;;;;;:::i;:::-;;:::i;17989:409::-;;;;;;;;;;;;;:::i;21713:674::-;21798:4;-1:-1:-1;;;;;;;;;22098:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22175:25:0;;;22098:102;:179;;;-1:-1:-1;;;;;;;;;;22252:25:0;;;22098:179;:238;;;-1:-1:-1;;;;;;;;;;22311:25:0;;;22098:238;22078:258;21713:674;-1:-1:-1;;21713:674:0:o;27640:204::-;27708:7;27733:16;27741:7;29692:13;;-1:-1:-1;29682:23:0;29545:168;27733:16;27728:64;;27758:34;;-1:-1:-1;;;27758:34:0;;;;;;;;;;;27728:64;-1:-1:-1;27812:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27812:24:0;;27640:204::o;27123:451::-;27196:13;27228:27;27247:7;27228:18;:27::i;:::-;27196:61;;27278:5;-1:-1:-1;;;;;27272:11:0;:2;-1:-1:-1;;;;;27272:11:0;;27268:25;;27285:8;;;27268:25;35561:10;-1:-1:-1;;;;;27310:28:0;;;27306:175;;27358:44;27375:5;35561:10;28295:164;:::i;27358:44::-;27353:128;;27430:35;;-1:-1:-1;;;27430:35:0;;;;;;;;;;;27353:128;27493:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27493:29:0;-1:-1:-1;;;;;27493:29:0;;;;;;;;;27538:28;;27493:24;;27538:28;;;;;;;27185:389;27123:451;;:::o;28526:190::-;28680:28;28690:4;28696:2;28700:7;28680:9;:28::i;:::-;28526:190;;;:::o;19961:274::-;20060:16;20128:6;;-1:-1:-1;;;;;20128:6:0;;20181:5;20162:15;:9;20174:3;20162:15;:::i;:::-;20161:25;;;;:::i;:::-;20145:41;;19961:274;;;;;:::o;37575:179::-;37803:6;;-1:-1:-1;;;;;37803:6:0;37811:10;37803:18;37795:40;;;;-1:-1:-1;;;37795:40:0;;;;;;;:::i;:::-;;;;;;;;;17208:4:::1;37662:6;37646:13;21206::::0;;;20956:300;37646:13:::1;:22;;;;:::i;:::-;:35;37638:72;;;::::0;-1:-1:-1;;;37638:72:0;;7064:2:1;37638:72:0::1;::::0;::::1;7046:21:1::0;7103:2;7083:18;;;7076:30;7142:26;7122:18;;;7115:54;7186:18;;37638:72:0::1;6862:348:1::0;37638:72:0::1;37721:25;37727:10;37739:6;37721:5;:25::i;:::-;37575:179:::0;:::o;37961:210::-;37803:6;;-1:-1:-1;;;;;37803:6:0;37811:10;37803:18;37795:40;;;;-1:-1:-1;;;37795:40:0;;;;;;;:::i;:::-;38119:44:::1;::::0;38029:21:::1;::::0;38097:10:::1;::::0;;;38153:5:::1;::::0;38029:21;;38119:44:::1;::::0;;;38029:21;38097:10;38153:5;38119:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000:171;;37961:210::o:0;28787:205::-;28945:39;28962:4;28968:2;28972:7;28945:39;;;;;;;;;;;;:16;:39::i;20243:91::-;37803:6;;-1:-1:-1;;;;;37803:6:0;37811:10;37803:18;37795:40;;;;-1:-1:-1;;;37795:40:0;;;;;;;:::i;:::-;20310:8:::1;:16;20321:5:::0;20310:8;:16:::1;:::i;:::-;;20243:91:::0;:::o;25764:144::-;25828:7;25871:27;25890:7;25871:18;:27::i;22451:234::-;22515:7;22557:5;22567:1;22539:29;22535:70;;22577:28;;-1:-1:-1;;;22577:28:0;;;;;;;;;;;22535:70;-1:-1:-1;;;;;;22623:25:0;;;;;:18;:25;;;;;;18509:13;22623:54;;22451:234::o;17673:308::-;35561:10;17208:4;17804:6;17788:13;21206;;;20956:300;17788:13;:22;;;;:::i;:::-;:36;;17780:57;;;;-1:-1:-1;;;17780:57:0;;10310:2:1;17780:57:0;;;10292:21:1;10349:1;10329:18;;;10322:29;-1:-1:-1;;;10367:18:1;;;10360:38;10415:18;;17780:57:0;10108:331:1;17780:57:0;17871:9;17856:11;17399;17856:6;:11;:::i;:::-;:24;;17848:49;;;;-1:-1:-1;;;17848:49:0;;;;;;;:::i;:::-;17951:22;17957:7;17966:6;17951:5;:22::i;27916:308::-;35561:10;-1:-1:-1;;;;;28015:31:0;;;28011:61;;28055:17;;-1:-1:-1;;;28055:17:0;;;;;;;;;;;28011:61;35561:10;28085:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28085:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28085:60:0;;;;;;;;;;28161:55;;445:41:1;;;28085:49:0;;35561:10;28161:55;;418:18:1;28161:55:0;;;;;;;27916:308;;:::o;29063:227::-;29254:28;29264:4;29270:2;29274:7;29254:9;:28::i;:::-;29063:227;;;;:::o;26260:339::-;26333:13;26364:16;26372:7;29692:13;;-1:-1:-1;29682:23:0;29545:168;26364:16;26359:59;;26389:29;;-1:-1:-1;;;26389:29:0;;;;;;;;;;;26359:59;26429:21;26453:8;26429:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26485:7;26479:21;26504:1;26479:26;:112;;;;;;;;;;;;;;;;;26543:7;26557:18;26567:7;26557:9;:18::i;:::-;26515:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26479:112;26472:119;26260:339;-1:-1:-1;;;26260:339:0:o;28295:164::-;-1:-1:-1;;;;;28416:25:0;;;28392:4;28416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28295:164::o;17989:409::-;37898:9;37909:10;37898:21;37890:43;;;;-1:-1:-1;;;37890:43:0;;11928:2:1;37890:43:0;;;11910:21:1;11967:1;11947:18;;;11940:29;-1:-1:-1;;;11985:18:1;;;11978:39;12034:18;;37890:43:0;11726:332:1;37890:43:0;35561:10;18097:1:::1;17208:4;18097:1:::0;18119:13:::1;21206::::0;;;20956:300;18119:13:::1;:22;;;;:::i;:::-;:36;;18111:57;;;::::0;-1:-1:-1;;;18111:57:0;;10310:2:1;18111:57:0::1;::::0;::::1;10292:21:1::0;10349:1;10329:18;;;10322:29;-1:-1:-1;;;10367:18:1;;;10360:38;10415:18;;18111:57:0::1;10108:331:1::0;18111:57:0::1;17357:4;18203:6;18187:13;21206::::0;;;20956:300;18187:13:::1;:22;;;;:::i;:::-;:34;;18179:59;;;;-1:-1:-1::0;;;18179:59:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18257:15:0;::::1;;::::0;;;:6:::1;:15;::::0;;;;;17314:1:::1;::::0;18257:22:::1;::::0;18273:6;;18257:22:::1;:::i;:::-;:45;;18249:70;;;;-1:-1:-1::0;;;18249:70:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18332:15:0;::::1;;::::0;;;:6:::1;:15;::::0;;;;:25;;18351:6;;18332:15;:25:::1;::::0;18351:6;;18332:25:::1;:::i;:::-;::::0;;;-1:-1:-1;18368:22:0::1;::::0;-1:-1:-1;18374:7:0;18383:6;18368:5:::1;:22::i;23279:1129::-:0;23346:7;23381;23483:13;;23476:4;:20;23472:869;;;23521:14;23538:23;;;:17;:23;;;;;;;-1:-1:-1;;;23627:23:0;;:28;;23623:699;;24146:113;24153:6;24163:1;24153:11;24146:113;;-1:-1:-1;;;24224:6:0;24206:25;;;;:17;:25;;;;;;24146:113;;23623:699;23498:843;23472:869;24369:31;;-1:-1:-1;;;24369:31:0;;;;;;;;;;;31830:2561;31971:27;32001;32020:7;32001:18;:27::i;:::-;31971:57;;32086:4;-1:-1:-1;;;;;32045:45:0;32061:19;-1:-1:-1;;;;;32045:45:0;;32041:86;;32099:28;;-1:-1:-1;;;32099:28:0;;;;;;;;;;;32041:86;32140:23;32166:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32166:24:0;;;;32140:23;32229:27;;35561:10;32229:27;;:91;;-1:-1:-1;32277:43:0;32294:4;35561:10;28295:164;:::i;32277:43::-;32229:150;;;-1:-1:-1;;;;;;32341:38:0;;35561:10;32341:38;32229:150;32203:177;;32398:17;32393:66;;32424:35;;-1:-1:-1;;;32424:35:0;;;;;;;;;;;32393:66;32549:15;32531:39;32527:103;;32594:24;;;;:15;:24;;;;;32587:31;;-1:-1:-1;;;;;;32587:31:0;;;32527:103;-1:-1:-1;;;;;32997:24:0;;;;;;;:18;:24;;;;;;;;32995:26;;-1:-1:-1;;32995:26:0;;;33066:22;;;;;;;;33064:24;;-1:-1:-1;33064:24:0;;;33359:26;;;:17;:26;;;;;-1:-1:-1;;;33447:15:0;18813:3;33447:41;33405:84;;:128;;33359:174;;;33653:46;;:51;;33649:626;;33757:1;33747:11;;33725:19;33880:30;;;:17;:30;;;;;;:35;;33876:384;;34018:13;;34003:11;:28;33999:242;;34165:30;;;;:17;:30;;;;;:52;;;33999:242;33706:569;33649:626;34322:7;34318:2;-1:-1:-1;;;;;34303:27:0;34312:4;-1:-1:-1;;;;;34303:27:0;;;;;;;;;;;34341:42;31954:2437;;;31830:2561;;;:::o;29978:1596::-;30066:13;;30043:20;30165:13;;;30161:44;;30187:18;;-1:-1:-1;;;30187:18:0;;;;;;;;;;;30161:44;-1:-1:-1;;;;;30682:22:0;;;;;;:18;:22;;;;18577:2;30682:22;;;:70;;30720:31;30708:44;;30682:70;;;30995:31;;;:17;:31;;;;;31088:15;18813:3;31088:41;31046:84;;-1:-1:-1;31166:13:0;;18931:3;31151:56;31046:162;30995:213;;:31;31289:23;;;31329:111;31356:40;;31381:14;;;;;-1:-1:-1;;;;;31356:40:0;;;31373:1;;31356:40;;31373:1;;31356:40;31435:3;31420:12;:18;31329:111;;-1:-1:-1;31456:13:0;:28;28526:190;;;:::o;35685:1882::-;36156:4;36150:11;;36163:3;36146:21;;36237:17;;;;36909:11;;;36786:5;37043:2;37057;37047:13;;37039:22;36909:11;37026:36;37099:2;37089:13;;36683:661;37115:4;36683:661;;;37283:1;37278:3;37274:11;37267:18;;37327:2;37321:4;37317:13;37313:2;37309:22;37304:3;37296:36;37200:2;37190:13;;36683:661;;;-1:-1:-1;37367:13:0;;;-1:-1:-1;;37476:12:0;;;37530:19;;;37476:12;35685:1882;-1:-1:-1;35685:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:418;646:2;635:9;628:21;609:4;678:6;672:13;721:6;716:2;705:9;701:18;694:34;780:6;775:2;767:6;763:15;758:2;747:9;743:18;737:50;836:1;831:2;822:6;811:9;807:22;803:31;796:42;906:2;899;895:7;890:2;882:6;878:15;874:29;863:9;859:45;855:54;847:62;;;497:418;;;;:::o;920:226::-;979:6;1032:2;1020:9;1011:7;1007:23;1003:32;1000:52;;;1048:1;1045;1038:12;1000:52;-1:-1:-1;1093:23:1;;920:226;-1:-1:-1;920:226:1:o;1359:173::-;1427:20;;-1:-1:-1;;;;;1476:31:1;;1466:42;;1456:70;;1522:1;1519;1512:12;1456:70;1359:173;;;:::o;1537:300::-;1605:6;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1705:29;1724:9;1705:29;:::i;:::-;1695:39;1803:2;1788:18;;;;1775:32;;-1:-1:-1;;;1537:300:1:o;2024:374::-;2101:6;2109;2117;2170:2;2158:9;2149:7;2145:23;2141:32;2138:52;;;2186:1;2183;2176:12;2138:52;2209:29;2228:9;2209:29;:::i;:::-;2199:39;;2257:38;2291:2;2280:9;2276:18;2257:38;:::i;:::-;2024:374;;2247:48;;-1:-1:-1;;;2364:2:1;2349:18;;;;2336:32;;2024:374::o;2403:346::-;2471:6;2479;2532:2;2520:9;2511:7;2507:23;2503:32;2500:52;;;2548:1;2545;2538:12;2500:52;-1:-1:-1;;2593:23:1;;;2713:2;2698:18;;;2685:32;;-1:-1:-1;2403:346:1:o;3033:127::-;3094:10;3089:3;3085:20;3082:1;3075:31;3125:4;3122:1;3115:15;3149:4;3146:1;3139:15;3165:716;3230:5;3262:1;3286:18;3278:6;3275:30;3272:56;;;3308:18;;:::i;:::-;-1:-1:-1;3463:2:1;3457:9;-1:-1:-1;;3376:2:1;3355:15;;3351:29;;3521:2;3509:15;3505:29;3493:42;;3586:22;;;3565:18;3550:34;;3547:62;3544:88;;;3612:18;;:::i;:::-;3648:2;3641:22;3696;;;3681:6;-1:-1:-1;3681:6:1;3733:16;;;3730:25;-1:-1:-1;3727:45:1;;;3768:1;3765;3758:12;3727:45;3818:6;3813:3;3806:4;3798:6;3794:17;3781:44;3873:1;3866:4;3857:6;3849;3845:19;3841:30;3834:41;;3165:716;;;;;:::o;3886:451::-;3955:6;4008:2;3996:9;3987:7;3983:23;3979:32;3976:52;;;4024:1;4021;4014:12;3976:52;4064:9;4051:23;4097:18;4089:6;4086:30;4083:50;;;4129:1;4126;4119:12;4083:50;4152:22;;4205:4;4197:13;;4193:27;-1:-1:-1;4183:55:1;;4234:1;4231;4224:12;4183:55;4257:74;4323:7;4318:2;4305:16;4300:2;4296;4292:11;4257:74;:::i;:::-;4247:84;3886:451;-1:-1:-1;;;;3886:451:1:o;4342:186::-;4401:6;4454:2;4442:9;4433:7;4429:23;4425:32;4422:52;;;4470:1;4467;4460:12;4422:52;4493:29;4512:9;4493:29;:::i;4533:347::-;4598:6;4606;4659:2;4647:9;4638:7;4634:23;4630:32;4627:52;;;4675:1;4672;4665:12;4627:52;4698:29;4717:9;4698:29;:::i;:::-;4688:39;;4777:2;4766:9;4762:18;4749:32;4824:5;4817:13;4810:21;4803:5;4800:32;4790:60;;4846:1;4843;4836:12;4790:60;4869:5;4859:15;;;4533:347;;;;;:::o;4885:713::-;4980:6;4988;4996;5004;5057:3;5045:9;5036:7;5032:23;5028:33;5025:53;;;5074:1;5071;5064:12;5025:53;5097:29;5116:9;5097:29;:::i;:::-;5087:39;;5145:38;5179:2;5168:9;5164:18;5145:38;:::i;:::-;5135:48;-1:-1:-1;5252:2:1;5237:18;;5224:32;;-1:-1:-1;5331:2:1;5316:18;;5303:32;5358:18;5347:30;;5344:50;;;5390:1;5387;5380:12;5344:50;5413:22;;5466:4;5458:13;;5454:27;-1:-1:-1;5444:55:1;;5495:1;5492;5485:12;5444:55;5518:74;5584:7;5579:2;5566:16;5561:2;5557;5553:11;5518:74;:::i;:::-;5508:84;;;4885:713;;;;;;;:::o;5603:260::-;5671:6;5679;5732:2;5720:9;5711:7;5707:23;5703:32;5700:52;;;5748:1;5745;5738:12;5700:52;5771:29;5790:9;5771:29;:::i;:::-;5761:39;;5819:38;5853:2;5842:9;5838:18;5819:38;:::i;5868:127::-;5929:10;5924:3;5920:20;5917:1;5910:31;5960:4;5957:1;5950:15;5984:4;5981:1;5974:15;6000:168;6073:9;;;6104;;6121:15;;;6115:22;;6101:37;6091:71;;6142:18;;:::i;6173:217::-;6213:1;6239;6229:132;;6283:10;6278:3;6274:20;6271:1;6264:31;6318:4;6315:1;6308:15;6346:4;6343:1;6336:15;6229:132;-1:-1:-1;6375:9:1;;6173:217::o;6395:332::-;6597:2;6579:21;;;6636:1;6616:18;;;6609:29;-1:-1:-1;;;6669:2:1;6654:18;;6647:39;6718:2;6703:18;;6395:332::o;6732:125::-;6797:9;;;6818:10;;;6815:36;;;6831:18;;:::i;7425:380::-;7504:1;7500:12;;;;7547;;;7568:61;;7622:4;7614:6;7610:17;7600:27;;7568:61;7675:2;7667:6;7664:14;7644:18;7641:38;7638:161;;7721:10;7716:3;7712:20;7709:1;7702:31;7756:4;7753:1;7746:15;7784:4;7781:1;7774:15;7638:161;;7425:380;;;:::o;7936:692::-;8038:2;8033:3;8030:11;8027:595;;;8075:10;8070:3;8067:19;8064:548;;;8127:5;8124:1;8117:16;8175:4;8172:1;8162:18;8240:2;8228:10;8224:19;8221:1;8217:27;8279:4;8267:10;8264:20;8261:45;;;-1:-1:-1;8303:1:1;8261:45;8342:23;;;;8412:2;8403:12;;8400:1;8396:20;8392:39;8457:1;8475:123;8489:2;8486:1;8483:9;8475:123;;;8578:1;8557:19;;;8550:30;8507:1;8500:9;8475:123;;8804:1299;8930:3;8924:10;8957:18;8949:6;8946:30;8943:56;;;8979:18;;:::i;:::-;9008:97;9098:6;9058:38;9090:4;9084:11;9058:38;:::i;:::-;9052:4;9008:97;:::i;:::-;9154:4;9185:2;9174:14;;9202:1;9197:649;;;;9890:1;9907:6;9904:89;;;-1:-1:-1;9959:19:1;;;9953:26;9904:89;-1:-1:-1;;8761:1:1;8757:11;;;8753:24;8749:29;8739:40;8785:1;8781:11;;;8736:57;10006:81;;9167:930;;9197:649;7883:1;7876:14;;;7920:4;7907:18;;-1:-1:-1;;9233:20:1;;;9351:222;9365:7;9362:1;9359:14;9351:222;;;9447:19;;;9441:26;9426:42;;9554:4;9539:20;;;;9507:1;9495:14;;;;9381:12;9351:222;;;9355:3;9601:6;9592:7;9589:19;9586:201;;;9662:19;;;9656:26;-1:-1:-1;;9745:1:1;9741:14;;;9757:3;9737:24;9733:37;9729:42;9714:58;9699:74;;9586:201;-1:-1:-1;;;;9833:1:1;9817:14;;;9813:22;9800:36;;-1:-1:-1;8804:1299:1:o;10444:336::-;10646:2;10628:21;;;10685:2;10665:18;;;10658:30;-1:-1:-1;;;10719:2:1;10704:18;;10697:42;10771:2;10756:18;;10444:336::o;10785:212::-;10827:3;10865:5;10859:12;10909:6;10902:4;10895:5;10891:16;10886:3;10880:36;10971:1;10935:16;;10960:13;;;-1:-1:-1;10935:16:1;;10785:212;-1:-1:-1;10785:212:1:o;11002:719::-;-1:-1:-1;;;11509:3:1;11502:22;11484:3;11543:38;11578:1;11573:3;11569:11;11561:6;11543:38;:::i;:::-;-1:-1:-1;;;11597:2:1;11590:15;11624:37;11658:1;11654:2;11650:10;11642:6;11624:37;:::i;:::-;-1:-1:-1;;;11670:19:1;;11713:1;11705:10;;11002:719;-1:-1:-1;;;;;11002:719:1:o
Swarm Source
ipfs://918cb8e63c9d9b6a4af7838fa2a1a532ccd3a671f18ddea8ddc66262e14a4a7b
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 ]
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.