ERC-721
Overview
Max Total Supply
5,000 3GMAIPFP
Holders
1,625
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 3GMAIPFPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ThreeGMAIPFP
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.13; /** /$$$$$$ /$$$$$$ /$$ /$$ /$$__ $$ /$$__ $$| $$$ /$$$ |__/ \ $$| $$ \__/| $$$$ /$$$$ /$$$$$/| $$ /$$$$| $$ $$/$$ $$ |___ $$| $$|_ $$| $$ $$$| $$ /$$ \ $$| $$ \ $$| $$\ $ | $$ | $$$$$$/| $$$$$$/| $$ \/ | $$ \______/ \______/ |__/ |__/ ** Website https://3gm.dev/ ** Twitter https://twitter.com/3gmdev **/ // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } // ERC721A Contracts v4.1.0 // Creator: Chiru Labs // ERC721A Contracts v4.1.0 // Creator: Chiru Labs /** * @dev Interface of an ERC721A compliant contract. */ 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of 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 through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // 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`. * * 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 calldata data ) external; /** * @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 ) external; /** * @dev Transfers `tokenId` token 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 - _burnCounter - _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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @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 == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 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 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; } /** * @dev See {IERC721Metadata-tokenURI}. */ 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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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 { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool 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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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) } } } contract ThreeGMAIPFP is ERC721A, Ownable { string public baseURI = "ipfs://QmPezNm2TY145vbMA3W3yB9wdqacEmydzLUEhestQyTUCP/"; string public contractURI = "ipfs://QmYY2VkrWHdHvDgu8Y2R3X4TkiXhwJSSUxnMaKKwZoYG26"; uint256 constant public MAX_SUPPLY = 5000; uint256 public txLimit = 5; uint256 public walletLimit = 10; uint256 public price = 0.01 ether; bool public publicPaused = true; mapping(address => uint256) public walletMint; constructor() ERC721A("3GMAIPFP", "3GMAIPFP") {} function mint(uint256 _amountToMint) external payable { require(!publicPaused, "Public paused"); require(MAX_SUPPLY >= totalSupply() + _amountToMint, "Exceeds max supply"); require(_amountToMint > 0, "Not 0 mints"); require(_amountToMint <= txLimit, "Tx limit"); require(_amountToMint * price == msg.value, "Invalid funds provided"); address _caller = _msgSender(); require(tx.origin == _caller, "No contracts"); require(walletMint[_caller] + _amountToMint <= walletLimit, "Not allow to mint more"); unchecked { walletMint[_caller] += _amountToMint; } _safeMint(_caller, _amountToMint); } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function minted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function teamMint(address _to, uint256 _amount) external onlyOwner { _safeMint(_to, _amount); } function orderedMint(address[] calldata _to, uint256[] calldata _amount) external onlyOwner { require(_to.length == _amount.length, "DL"); for (uint256 i; i < _to.length; i++) { _safeMint(_to[i], _amount[i]); } } function togglePublic() external onlyOwner { publicPaused = !publicPaused; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setTxLimit(uint256 _limit) external onlyOwner { txLimit = _limit; } function setWalletLimit(uint256 _limit) external onlyOwner { walletLimit = _limit; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), ".json" ) ) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":[],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"orderedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWalletLimit","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526036608081815290620020a760a039805162000029916009916020909101906200014f565b50604051806060016040528060358152602001620020726035913980516200005a91600a916020909101906200014f565b506005600b55600a600c55662386f26fc10000600d55600e805460ff191660011790553480156200008a57600080fd5b50604080518082018252600880825267033474d41495046560c41b602080840182815285518087019096529285528401528151919291620000ce916002916200014f565b508051620000e49060039060208401906200014f565b5050600160005550620000f733620000fd565b62000231565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b6020821081036200022b57634e487b7160e01b600052602260045260246000fd5b50919050565b611e3180620002416000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105c9578063e8a3d485146105e9578063e985e9c5146105fe578063f1d5f51714610647578063f2fde38b1461066757600080fd5b8063a0712d6814610556578063a22cb46514610569578063add5a4fa14610589578063b88d4fde146105a957600080fd5b806391b7f5ed116100e757806391b7f5ed146104d6578063938e3d7b146104f657806395d89b4114610516578063981d87711461052b578063a035b1fe1461054057600080fd5b806370a0823114610463578063715018a61461048357806382d335be146104985780638da5cb5b146104b857600080fd5b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146103d85780635c85974f146103f85780636352211e146104185780636c0360eb146104385780636caae8321461044d57600080fd5b806332cb6b0c146103775780633c8463a11461038d5780633ccfd60b146103a357806342842e0e146103b857600080fd5b80630bb12bb8116101e25780630bb12bb8146102c55780631056ae31146102df57806318160ddd1461031a5780631e7269c51461033757806323b872dd1461035757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046117d5565b610687565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d9565b604051610240919061184a565b34801561027757600080fd5b5061028b61028636600461185d565b61076b565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611892565b6107af565b005b3480156102d157600080fd5b50600e546102349060ff1681565b3480156102eb57600080fd5b5061030c6102fa3660046118bc565b600f6020526000908152604090205481565b604051908152602001610240565b34801561032657600080fd5b50600154600054036000190161030c565b34801561034357600080fd5b5061030c6103523660046118bc565b61084f565b34801561036357600080fd5b506102c36103723660046118d7565b61087a565b34801561038357600080fd5b5061030c61138881565b34801561039957600080fd5b5061030c600c5481565b3480156103af57600080fd5b506102c3610a12565b3480156103c457600080fd5b506102c36103d33660046118d7565b610ad4565b3480156103e457600080fd5b506102c36103f336600461199f565b610af4565b34801561040457600080fd5b506102c361041336600461185d565b610b31565b34801561042457600080fd5b5061028b61043336600461185d565b610b60565b34801561044457600080fd5b5061025e610b6b565b34801561045957600080fd5b5061030c600b5481565b34801561046f57600080fd5b5061030c61047e3660046118bc565b610bf9565b34801561048f57600080fd5b506102c3610c48565b3480156104a457600080fd5b506102c36104b3366004611a34565b610c7e565b3480156104c457600080fd5b506008546001600160a01b031661028b565b3480156104e257600080fd5b506102c36104f136600461185d565b610d48565b34801561050257600080fd5b506102c361051136600461199f565b610d77565b34801561052257600080fd5b5061025e610db4565b34801561053757600080fd5b506102c3610dc3565b34801561054c57600080fd5b5061030c600d5481565b6102c361056436600461185d565b610e01565b34801561057557600080fd5b506102c3610584366004611aa0565b611047565b34801561059557600080fd5b506102c36105a4366004611892565b6110dc565b3480156105b557600080fd5b506102c36105c4366004611adc565b611110565b3480156105d557600080fd5b5061025e6105e436600461185d565b61115a565b3480156105f557600080fd5b5061025e611205565b34801561060a57600080fd5b50610234610619366004611b58565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065357600080fd5b506102c361066236600461185d565b611212565b34801561067357600080fd5b506102c36106823660046118bc565b611241565b60006301ffc9a760e01b6001600160e01b0319831614806106b857506380ac58cd60e01b6001600160e01b03198316145b806106d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106e890611b8b565b80601f016020809104026020016040519081016040528092919081815260200182805461071490611b8b565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b6000610776826112dc565b610793576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ba82610b60565b9050336001600160a01b038216146107f3576107d68133610619565b6107f3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106d3565b600061088582611311565b9050836001600160a01b0316816001600160a01b0316146108b85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610905576108e88633610619565b61090557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661092c57604051633a954ecd60e21b815260040160405180910390fd5b801561093757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109c9576001840160008181526004602052604081205490036109c75760005481146109c75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610a455760405162461bcd60e51b8152600401610a3c90611bc5565b60405180910390fd5b6040514790600090339083908381818185875af1925050503d8060008114610a89576040519150601f19603f3d011682016040523d82523d6000602084013e610a8e565b606091505b5050905080610ad05760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610a3c565b5050565b610aef83838360405180602001604052806000815250611110565b505050565b6008546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610a3c90611bc5565b8051610ad0906009906020840190611726565b6008546001600160a01b03163314610b5b5760405162461bcd60e51b8152600401610a3c90611bc5565b600b55565b60006106d382611311565b60098054610b7890611b8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba490611b8b565b8015610bf15780601f10610bc657610100808354040283529160200191610bf1565b820191906000526020600020905b815481529060010190602001808311610bd457829003601f168201915b505050505081565b60006001600160a01b038216610c22576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c725760405162461bcd60e51b8152600401610a3c90611bc5565b610c7c6000611387565b565b6008546001600160a01b03163314610ca85760405162461bcd60e51b8152600401610a3c90611bc5565b828114610cdc5760405162461bcd60e51b8152602060048201526002602482015261111360f21b6044820152606401610a3c565b60005b83811015610d4157610d2f858583818110610cfc57610cfc611bfa565b9050602002016020810190610d1191906118bc565b848484818110610d2357610d23611bfa565b905060200201356113d9565b80610d3981611c26565b915050610cdf565b5050505050565b6008546001600160a01b03163314610d725760405162461bcd60e51b8152600401610a3c90611bc5565b600d55565b6008546001600160a01b03163314610da15760405162461bcd60e51b8152600401610a3c90611bc5565b8051610ad090600a906020840190611726565b6060600380546106e890611b8b565b6008546001600160a01b03163314610ded5760405162461bcd60e51b8152600401610a3c90611bc5565b600e805460ff19811660ff90911615179055565b600e5460ff1615610e445760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b6044820152606401610a3c565b6001546000548291900360001901610e5c9190611c3f565b6113881015610ea25760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610a3c565b60008111610ee05760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610a3c565b600b54811115610f1d5760405162461bcd60e51b8152602060048201526008602482015267151e081b1a5b5a5d60c21b6044820152606401610a3c565b34600d5482610f2c9190611c57565b14610f725760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610a3c565b33328114610fb15760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610a3c565b600c546001600160a01b0382166000908152600f6020526040902054610fd8908490611c3f565b111561101f5760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610a3c565b6001600160a01b0381166000908152600f60205260409020805483019055610ad081836113d9565b336001600160a01b038316036110705760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111065760405162461bcd60e51b8152600401610a3c90611bc5565b610ad082826113d9565b61111b84848461087a565b6001600160a01b0383163b1561115457611137848484846113f3565b611154576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611165826112dc565b6111a95760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610a3c565b6000600980546111b890611b8b565b9050116111d457604051806020016040528060008152506106d3565b60096111df836114df565b6040516020016111f0929190611c92565b60405160208183030381529060405292915050565b600a8054610b7890611b8b565b6008546001600160a01b0316331461123c5760405162461bcd60e51b8152600401610a3c90611bc5565b600c55565b6008546001600160a01b0316331461126b5760405162461bcd60e51b8152600401610a3c90611bc5565b6001600160a01b0381166112d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b6112d981611387565b50565b6000816001111580156112f0575060005482105b80156106d3575050600090815260046020526040902054600160e01b161590565b6000818060011161136e5760005481101561136e5760008181526004602052604081205490600160e01b8216900361136c575b80600003611365575060001901600081815260046020526040902054611344565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ad08282604051806020016040528060008152506115e0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611428903390899088908890600401611d4c565b6020604051808303816000875af1925050508015611463575060408051601f3d908101601f1916820190925261146091810190611d89565b60015b6114c1573d808015611491576040519150601f19603f3d011682016040523d82523d6000602084013e611496565b606091505b5080516000036114b9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611530578061151a81611c26565b91506115299050600a83611dbc565b915061150a565b60008167ffffffffffffffff81111561154b5761154b611913565b6040519080825280601f01601f191660200182016040528015611575576020820181803683370190505b5090505b84156114d75761158a600183611dd0565b9150611597600a86611de7565b6115a2906030611c3f565b60f81b8183815181106115b7576115b7611bfa565b60200101906001600160f81b031916908160001a9053506115d9600a86611dbc565b9450611579565b6115ea8383611646565b6001600160a01b0383163b15610aef576000548281035b61161460008683806001019450866113f3565b611631576040516368d2bf6b60e11b815260040160405180910390fd5b818110611601578160005414610d4157600080fd5b6000546001600160a01b03831661166f57604051622e076360e81b815260040160405180910390fd5b816000036116905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116da5760005550505050565b82805461173290611b8b565b90600052602060002090601f016020900481019282611754576000855561179a565b82601f1061176d57805160ff191683800117855561179a565b8280016001018555821561179a579182015b8281111561179a57825182559160200191906001019061177f565b506117a69291506117aa565b5090565b5b808211156117a657600081556001016117ab565b6001600160e01b0319811681146112d957600080fd5b6000602082840312156117e757600080fd5b8135611365816117bf565b60005b8381101561180d5781810151838201526020016117f5565b838111156111545750506000910152565b600081518084526118368160208601602086016117f2565b601f01601f19169290920160200192915050565b602081526000611365602083018461181e565b60006020828403121561186f57600080fd5b5035919050565b80356001600160a01b038116811461188d57600080fd5b919050565b600080604083850312156118a557600080fd5b6118ae83611876565b946020939093013593505050565b6000602082840312156118ce57600080fd5b61136582611876565b6000806000606084860312156118ec57600080fd5b6118f584611876565b925061190360208501611876565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561194457611944611913565b604051601f8501601f19908116603f0116810190828211818310171561196c5761196c611913565b8160405280935085815286868601111561198557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119b157600080fd5b813567ffffffffffffffff8111156119c857600080fd5b8201601f810184136119d957600080fd5b6114d784823560208401611929565b60008083601f8401126119fa57600080fd5b50813567ffffffffffffffff811115611a1257600080fd5b6020830191508360208260051b8501011115611a2d57600080fd5b9250929050565b60008060008060408587031215611a4a57600080fd5b843567ffffffffffffffff80821115611a6257600080fd5b611a6e888389016119e8565b90965094506020870135915080821115611a8757600080fd5b50611a94878288016119e8565b95989497509550505050565b60008060408385031215611ab357600080fd5b611abc83611876565b915060208301358015158114611ad157600080fd5b809150509250929050565b60008060008060808587031215611af257600080fd5b611afb85611876565b9350611b0960208601611876565b925060408501359150606085013567ffffffffffffffff811115611b2c57600080fd5b8501601f81018713611b3d57600080fd5b611b4c87823560208401611929565b91505092959194509250565b60008060408385031215611b6b57600080fd5b611b7483611876565b9150611b8260208401611876565b90509250929050565b600181811c90821680611b9f57607f821691505b602082108103611bbf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611c3857611c38611c10565b5060010190565b60008219821115611c5257611c52611c10565b500190565b6000816000190483118215151615611c7157611c71611c10565b500290565b60008151611c888185602086016117f2565b9290920192915050565b600080845481600182811c915080831680611cae57607f831692505b60208084108203611ccd57634e487b7160e01b86526022600452602486fd5b818015611ce15760018114611cf257611d1f565b60ff19861689528489019650611d1f565b60008b81526020902060005b86811015611d175781548b820152908501908301611cfe565b505084890196505b505050505050611d43611d328286611c76565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7f9083018461181e565b9695505050505050565b600060208284031215611d9b57600080fd5b8151611365816117bf565b634e487b7160e01b600052601260045260246000fd5b600082611dcb57611dcb611da6565b500490565b600082821015611de257611de2611c10565b500390565b600082611df657611df6611da6565b50069056fea26469706673582212203211d97d9a62432334ffee24ab2aa9f3988126eb772a1da5d01455c3b8c927d664736f6c634300080d0033697066733a2f2f516d595932566b72574864487644677538593252335834546b695868774a535355786e4d614b4b775a6f59473236697066733a2f2f516d50657a4e6d32545931343576624d413357337942397764716163456d79647a4c5545686573745179545543502f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806370a0823111610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105c9578063e8a3d485146105e9578063e985e9c5146105fe578063f1d5f51714610647578063f2fde38b1461066757600080fd5b8063a0712d6814610556578063a22cb46514610569578063add5a4fa14610589578063b88d4fde146105a957600080fd5b806391b7f5ed116100e757806391b7f5ed146104d6578063938e3d7b146104f657806395d89b4114610516578063981d87711461052b578063a035b1fe1461054057600080fd5b806370a0823114610463578063715018a61461048357806382d335be146104985780638da5cb5b146104b857600080fd5b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146103d85780635c85974f146103f85780636352211e146104185780636c0360eb146104385780636caae8321461044d57600080fd5b806332cb6b0c146103775780633c8463a11461038d5780633ccfd60b146103a357806342842e0e146103b857600080fd5b80630bb12bb8116101e25780630bb12bb8146102c55780631056ae31146102df57806318160ddd1461031a5780631e7269c51461033757806323b872dd1461035757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046117d5565b610687565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d9565b604051610240919061184a565b34801561027757600080fd5b5061028b61028636600461185d565b61076b565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611892565b6107af565b005b3480156102d157600080fd5b50600e546102349060ff1681565b3480156102eb57600080fd5b5061030c6102fa3660046118bc565b600f6020526000908152604090205481565b604051908152602001610240565b34801561032657600080fd5b50600154600054036000190161030c565b34801561034357600080fd5b5061030c6103523660046118bc565b61084f565b34801561036357600080fd5b506102c36103723660046118d7565b61087a565b34801561038357600080fd5b5061030c61138881565b34801561039957600080fd5b5061030c600c5481565b3480156103af57600080fd5b506102c3610a12565b3480156103c457600080fd5b506102c36103d33660046118d7565b610ad4565b3480156103e457600080fd5b506102c36103f336600461199f565b610af4565b34801561040457600080fd5b506102c361041336600461185d565b610b31565b34801561042457600080fd5b5061028b61043336600461185d565b610b60565b34801561044457600080fd5b5061025e610b6b565b34801561045957600080fd5b5061030c600b5481565b34801561046f57600080fd5b5061030c61047e3660046118bc565b610bf9565b34801561048f57600080fd5b506102c3610c48565b3480156104a457600080fd5b506102c36104b3366004611a34565b610c7e565b3480156104c457600080fd5b506008546001600160a01b031661028b565b3480156104e257600080fd5b506102c36104f136600461185d565b610d48565b34801561050257600080fd5b506102c361051136600461199f565b610d77565b34801561052257600080fd5b5061025e610db4565b34801561053757600080fd5b506102c3610dc3565b34801561054c57600080fd5b5061030c600d5481565b6102c361056436600461185d565b610e01565b34801561057557600080fd5b506102c3610584366004611aa0565b611047565b34801561059557600080fd5b506102c36105a4366004611892565b6110dc565b3480156105b557600080fd5b506102c36105c4366004611adc565b611110565b3480156105d557600080fd5b5061025e6105e436600461185d565b61115a565b3480156105f557600080fd5b5061025e611205565b34801561060a57600080fd5b50610234610619366004611b58565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065357600080fd5b506102c361066236600461185d565b611212565b34801561067357600080fd5b506102c36106823660046118bc565b611241565b60006301ffc9a760e01b6001600160e01b0319831614806106b857506380ac58cd60e01b6001600160e01b03198316145b806106d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106e890611b8b565b80601f016020809104026020016040519081016040528092919081815260200182805461071490611b8b565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b6000610776826112dc565b610793576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ba82610b60565b9050336001600160a01b038216146107f3576107d68133610619565b6107f3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106d3565b600061088582611311565b9050836001600160a01b0316816001600160a01b0316146108b85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610905576108e88633610619565b61090557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661092c57604051633a954ecd60e21b815260040160405180910390fd5b801561093757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109c9576001840160008181526004602052604081205490036109c75760005481146109c75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610a455760405162461bcd60e51b8152600401610a3c90611bc5565b60405180910390fd5b6040514790600090339083908381818185875af1925050503d8060008114610a89576040519150601f19603f3d011682016040523d82523d6000602084013e610a8e565b606091505b5050905080610ad05760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610a3c565b5050565b610aef83838360405180602001604052806000815250611110565b505050565b6008546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610a3c90611bc5565b8051610ad0906009906020840190611726565b6008546001600160a01b03163314610b5b5760405162461bcd60e51b8152600401610a3c90611bc5565b600b55565b60006106d382611311565b60098054610b7890611b8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba490611b8b565b8015610bf15780601f10610bc657610100808354040283529160200191610bf1565b820191906000526020600020905b815481529060010190602001808311610bd457829003601f168201915b505050505081565b60006001600160a01b038216610c22576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c725760405162461bcd60e51b8152600401610a3c90611bc5565b610c7c6000611387565b565b6008546001600160a01b03163314610ca85760405162461bcd60e51b8152600401610a3c90611bc5565b828114610cdc5760405162461bcd60e51b8152602060048201526002602482015261111360f21b6044820152606401610a3c565b60005b83811015610d4157610d2f858583818110610cfc57610cfc611bfa565b9050602002016020810190610d1191906118bc565b848484818110610d2357610d23611bfa565b905060200201356113d9565b80610d3981611c26565b915050610cdf565b5050505050565b6008546001600160a01b03163314610d725760405162461bcd60e51b8152600401610a3c90611bc5565b600d55565b6008546001600160a01b03163314610da15760405162461bcd60e51b8152600401610a3c90611bc5565b8051610ad090600a906020840190611726565b6060600380546106e890611b8b565b6008546001600160a01b03163314610ded5760405162461bcd60e51b8152600401610a3c90611bc5565b600e805460ff19811660ff90911615179055565b600e5460ff1615610e445760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b6044820152606401610a3c565b6001546000548291900360001901610e5c9190611c3f565b6113881015610ea25760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610a3c565b60008111610ee05760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610a3c565b600b54811115610f1d5760405162461bcd60e51b8152602060048201526008602482015267151e081b1a5b5a5d60c21b6044820152606401610a3c565b34600d5482610f2c9190611c57565b14610f725760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610a3c565b33328114610fb15760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610a3c565b600c546001600160a01b0382166000908152600f6020526040902054610fd8908490611c3f565b111561101f5760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610a3c565b6001600160a01b0381166000908152600f60205260409020805483019055610ad081836113d9565b336001600160a01b038316036110705760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111065760405162461bcd60e51b8152600401610a3c90611bc5565b610ad082826113d9565b61111b84848461087a565b6001600160a01b0383163b1561115457611137848484846113f3565b611154576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611165826112dc565b6111a95760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610a3c565b6000600980546111b890611b8b565b9050116111d457604051806020016040528060008152506106d3565b60096111df836114df565b6040516020016111f0929190611c92565b60405160208183030381529060405292915050565b600a8054610b7890611b8b565b6008546001600160a01b0316331461123c5760405162461bcd60e51b8152600401610a3c90611bc5565b600c55565b6008546001600160a01b0316331461126b5760405162461bcd60e51b8152600401610a3c90611bc5565b6001600160a01b0381166112d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b6112d981611387565b50565b6000816001111580156112f0575060005482105b80156106d3575050600090815260046020526040902054600160e01b161590565b6000818060011161136e5760005481101561136e5760008181526004602052604081205490600160e01b8216900361136c575b80600003611365575060001901600081815260046020526040902054611344565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ad08282604051806020016040528060008152506115e0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611428903390899088908890600401611d4c565b6020604051808303816000875af1925050508015611463575060408051601f3d908101601f1916820190925261146091810190611d89565b60015b6114c1573d808015611491576040519150601f19603f3d011682016040523d82523d6000602084013e611496565b606091505b5080516000036114b9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611530578061151a81611c26565b91506115299050600a83611dbc565b915061150a565b60008167ffffffffffffffff81111561154b5761154b611913565b6040519080825280601f01601f191660200182016040528015611575576020820181803683370190505b5090505b84156114d75761158a600183611dd0565b9150611597600a86611de7565b6115a2906030611c3f565b60f81b8183815181106115b7576115b7611bfa565b60200101906001600160f81b031916908160001a9053506115d9600a86611dbc565b9450611579565b6115ea8383611646565b6001600160a01b0383163b15610aef576000548281035b61161460008683806001019450866113f3565b611631576040516368d2bf6b60e11b815260040160405180910390fd5b818110611601578160005414610d4157600080fd5b6000546001600160a01b03831661166f57604051622e076360e81b815260040160405180910390fd5b816000036116905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116da5760005550505050565b82805461173290611b8b565b90600052602060002090601f016020900481019282611754576000855561179a565b82601f1061176d57805160ff191683800117855561179a565b8280016001018555821561179a579182015b8281111561179a57825182559160200191906001019061177f565b506117a69291506117aa565b5090565b5b808211156117a657600081556001016117ab565b6001600160e01b0319811681146112d957600080fd5b6000602082840312156117e757600080fd5b8135611365816117bf565b60005b8381101561180d5781810151838201526020016117f5565b838111156111545750506000910152565b600081518084526118368160208601602086016117f2565b601f01601f19169290920160200192915050565b602081526000611365602083018461181e565b60006020828403121561186f57600080fd5b5035919050565b80356001600160a01b038116811461188d57600080fd5b919050565b600080604083850312156118a557600080fd5b6118ae83611876565b946020939093013593505050565b6000602082840312156118ce57600080fd5b61136582611876565b6000806000606084860312156118ec57600080fd5b6118f584611876565b925061190360208501611876565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561194457611944611913565b604051601f8501601f19908116603f0116810190828211818310171561196c5761196c611913565b8160405280935085815286868601111561198557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119b157600080fd5b813567ffffffffffffffff8111156119c857600080fd5b8201601f810184136119d957600080fd5b6114d784823560208401611929565b60008083601f8401126119fa57600080fd5b50813567ffffffffffffffff811115611a1257600080fd5b6020830191508360208260051b8501011115611a2d57600080fd5b9250929050565b60008060008060408587031215611a4a57600080fd5b843567ffffffffffffffff80821115611a6257600080fd5b611a6e888389016119e8565b90965094506020870135915080821115611a8757600080fd5b50611a94878288016119e8565b95989497509550505050565b60008060408385031215611ab357600080fd5b611abc83611876565b915060208301358015158114611ad157600080fd5b809150509250929050565b60008060008060808587031215611af257600080fd5b611afb85611876565b9350611b0960208601611876565b925060408501359150606085013567ffffffffffffffff811115611b2c57600080fd5b8501601f81018713611b3d57600080fd5b611b4c87823560208401611929565b91505092959194509250565b60008060408385031215611b6b57600080fd5b611b7483611876565b9150611b8260208401611876565b90509250929050565b600181811c90821680611b9f57607f821691505b602082108103611bbf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611c3857611c38611c10565b5060010190565b60008219821115611c5257611c52611c10565b500190565b6000816000190483118215151615611c7157611c71611c10565b500290565b60008151611c888185602086016117f2565b9290920192915050565b600080845481600182811c915080831680611cae57607f831692505b60208084108203611ccd57634e487b7160e01b86526022600452602486fd5b818015611ce15760018114611cf257611d1f565b60ff19861689528489019650611d1f565b60008b81526020902060005b86811015611d175781548b820152908501908301611cfe565b505084890196505b505050505050611d43611d328286611c76565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7f9083018461181e565b9695505050505050565b600060208284031215611d9b57600080fd5b8151611365816117bf565b634e487b7160e01b600052601260045260246000fd5b600082611dcb57611dcb611da6565b500490565b600082821015611de257611de2611c10565b500390565b600082611df657611df6611da6565b50069056fea26469706673582212203211d97d9a62432334ffee24ab2aa9f3988126eb772a1da5d01455c3b8c927d664736f6c634300080d0033
Deployed Bytecode Sourcemap
50754:3050:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20620:615;;;;;;;;;;-1:-1:-1;20620:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20620:615:0;;;;;;;;26267:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28213:204::-;;;;;;;;;;-1:-1:-1;28213:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;28213:204:0;1550:203:1;27761:386:0;;;;;;;;;;-1:-1:-1;27761:386:0;;;;;:::i;:::-;;:::i;:::-;;51145:31;;;;;;;;;;-1:-1:-1;51145:31:0;;;;;;;;51185:45;;;;;;;;;;-1:-1:-1;51185:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2532:25:1;;;2520:2;2505:18;51185:45:0;2386:177:1;19674:315:0;;;;;;;;;;-1:-1:-1;52082:1:0;19940:12;19727:7;19924:13;:28;-1:-1:-1;;19924:46:0;19674:315;;52099:109;;;;;;;;;;-1:-1:-1;52099:109:0;;;;;:::i;:::-;;:::i;37478:2800::-;;;;;;;;;;-1:-1:-1;37478:2800:0;;;;;:::i;:::-;;:::i;50982:41::-;;;;;;;;;;;;51019:4;50982:41;;51065:31;;;;;;;;;;;;;;;;52216:209;;;;;;;;;;;;;:::i;29103:185::-;;;;;;;;;;-1:-1:-1;29103:185:0;;;;;:::i;:::-;;:::i;53213:100::-;;;;;;;;;;-1:-1:-1;53213:100:0;;;;;:::i;:::-;;:::i;53009:90::-;;;;;;;;;;-1:-1:-1;53009:90:0;;;;;:::i;:::-;;:::i;26056:144::-;;;;;;;;;;-1:-1:-1;26056:144:0;;;;;:::i;:::-;;:::i;50805:80::-;;;;;;;;;;;;;:::i;51032:26::-;;;;;;;;;;;;;;;;21299:224;;;;;;;;;;-1:-1:-1;21299:224:0;;;;;:::i;:::-;;:::i;5342:103::-;;;;;;;;;;;;;:::i;52550:259::-;;;;;;;;;;-1:-1:-1;52550:259:0;;;;;:::i;:::-;;:::i;4691:87::-;;;;;;;;;;-1:-1:-1;4764:6:0;;-1:-1:-1;;;;;4764:6:0;4691:87;;52915:86;;;;;;;;;;-1:-1:-1;52915:86:0;;;;;:::i;:::-;;:::i;53321:116::-;;;;;;;;;;-1:-1:-1;53321:116:0;;;;;:::i;:::-;;:::i;26436:104::-;;;;;;;;;;;;;:::i;52817:90::-;;;;;;;;;;;;;:::i;51103:33::-;;;;;;;;;;;;;;;;51295:687;;;;;;:::i;:::-;;:::i;28489:308::-;;;;;;;;;;-1:-1:-1;28489:308:0;;;;;:::i;:::-;;:::i;52433:109::-;;;;;;;;;;-1:-1:-1;52433:109:0;;;;;:::i;:::-;;:::i;29359:399::-;;;;;;;;;;-1:-1:-1;29359:399:0;;;;;:::i;:::-;;:::i;53445:356::-;;;;;;;;;;-1:-1:-1;53445:356:0;;;;;:::i;:::-;;:::i;50892:83::-;;;;;;;;;;;;;:::i;28868:164::-;;;;;;;;;;-1:-1:-1;28868:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28989:25:0;;;28965:4;28989:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28868:164;53107:98;;;;;;;;;;-1:-1:-1;53107:98:0;;;;;:::i;:::-;;:::i;5600:201::-;;;;;;;;;;-1:-1:-1;5600:201:0;;;;;:::i;:::-;;:::i;20620:615::-;20705:4;-1:-1:-1;;;;;;;;;21005:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21082:25:0;;;21005:102;:179;;;-1:-1:-1;;;;;;;;;;21159:25:0;;;21005:179;20985:199;20620:615;-1:-1:-1;;20620:615:0:o;26267:100::-;26321:13;26354:5;26347:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26267:100;:::o;28213:204::-;28281:7;28306:16;28314:7;28306;:16::i;:::-;28301:64;;28331:34;;-1:-1:-1;;;28331:34:0;;;;;;;;;;;28301:64;-1:-1:-1;28385:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28385:24:0;;28213:204::o;27761:386::-;27834:13;27850:16;27858:7;27850;:16::i;:::-;27834:32;-1:-1:-1;48661:10:0;-1:-1:-1;;;;;27883:28:0;;;27879:175;;27931:44;27948:5;48661:10;28868:164;:::i;27931:44::-;27926:128;;28003:35;;-1:-1:-1;;;28003:35:0;;;;;;;;;;;27926:128;28066:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28066:29:0;-1:-1:-1;;;;;28066:29:0;;;;;;;;;28111:28;;28066:24;;28111:28;;;;;;;27823:324;27761:386;;:::o;52099:109::-;-1:-1:-1;;;;;21694:25:0;;52152:7;21694:25;;;:18;:25;;15991:2;21694:25;;;;15854:13;21694:49;;21693:80;52179:21;21605:176;37478:2800;37612:27;37642;37661:7;37642:18;:27::i;:::-;37612:57;;37727:4;-1:-1:-1;;;;;37686:45:0;37702:19;-1:-1:-1;;;;;37686:45:0;;37682:86;;37740:28;;-1:-1:-1;;;37740:28:0;;;;;;;;;;;37682:86;37782:27;36208:21;;;36035:15;36250:4;36243:36;36332:4;36316:21;;36422:26;;48661:10;37175:30;;;-1:-1:-1;;;;;36873:26:0;;37154:19;;;37151:55;37961:174;;38048:43;38065:4;48661:10;28868:164;:::i;38048:43::-;38043:92;;38100:35;;-1:-1:-1;;;38100:35:0;;;;;;;;;;;38043:92;-1:-1:-1;;;;;38152:16:0;;38148:52;;38177:23;;-1:-1:-1;;;38177:23:0;;;;;;;;;;;38148:52;38349:15;38346:160;;;38489:1;38468:19;38461:30;38346:160;-1:-1:-1;;;;;38884:24:0;;;;;;;:18;:24;;;;;;38882:26;;-1:-1:-1;;38882:26:0;;;38953:22;;;;;;;;;38951:24;;-1:-1:-1;38951:24:0;;;25955:11;25931:22;25927:40;25914:62;-1:-1:-1;;;25914:62:0;39246:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;39540:46:0;;:51;;39536:626;;39644:1;39634:11;;39612:19;39767:30;;;:17;:30;;;;;;:35;;39763:384;;39905:13;;39890:11;:28;39886:242;;40052:30;;;;:17;:30;;;;;:52;;;39886:242;39593:569;39536:626;40209:7;40205:2;-1:-1:-1;;;;;40190:27:0;40199:4;-1:-1:-1;;;;;40190:27:0;;;;;;;;;;;37601:2677;;;37478:2800;;;:::o;52216:209::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;;;;;;;;;52335:37:::1;::::0;52284:21:::1;::::0;52266:15:::1;::::0;48661:10;;52284:21;;52266:15;52335:37;52266:15;52335:37;52284:21;48661:10;52335:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52316:56;;;52391:7;52383:34;;;::::0;-1:-1:-1;;;52383:34:0;;7723:2:1;52383:34:0::1;::::0;::::1;7705:21:1::0;7762:2;7742:18;;;7735:30;-1:-1:-1;;;7781:18:1;;;7774:44;7835:18;;52383:34:0::1;7521:338:1::0;52383:34:0::1;52255:170;;52216:209::o:0;29103:185::-;29241:39;29258:4;29264:2;29268:7;29241:39;;;;;;;;;;;;:16;:39::i;:::-;29103:185;;;:::o;53213:100::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;53287:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;53009:90::-:0;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;53075:7:::1;:16:::0;53009:90::o;26056:144::-;26120:7;26163:27;26182:7;26163:18;:27::i;50805:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21299:224::-;21363:7;-1:-1:-1;;;;;21387:19:0;;21383:60;;21415:28;;-1:-1:-1;;;21415:28:0;;;;;;;;;;;21383:60;-1:-1:-1;;;;;;21461:25:0;;;;;:18;:25;;;;;;15854:13;21461:54;;21299:224::o;5342:103::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;5407:30:::1;5434:1;5407:18;:30::i;:::-;5342:103::o:0;52550:259::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;52661:28;;::::1;52653:43;;;::::0;-1:-1:-1;;;52653:43:0;;8066:2:1;52653:43:0::1;::::0;::::1;8048:21:1::0;8105:1;8085:18;;;8078:29;-1:-1:-1;;;8123:18:1;;;8116:32;8165:18;;52653:43:0::1;7864:325:1::0;52653:43:0::1;52714:9;52709:93;52725:14:::0;;::::1;52709:93;;;52761:29;52771:3;;52775:1;52771:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;52779:7;;52787:1;52779:10;;;;;;;:::i;:::-;;;;;;;52761:9;:29::i;:::-;52741:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52709:93;;;;52550:259:::0;;;;:::o;52915:86::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;52979:5:::1;:14:::0;52915:86::o;53321:116::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;53403:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;26436:104::-:0;26492:13;26525:7;26518:14;;;;;:::i;52817:90::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;52887:12:::1;::::0;;-1:-1:-1;;52871:28:0;::::1;52887:12;::::0;;::::1;52886:13;52871:28;::::0;;52817:90::o;51295:687::-;51369:12;;;;51368:13;51360:39;;;;-1:-1:-1;;;51360:39:0;;8800:2:1;51360:39:0;;;8782:21:1;8839:2;8819:18;;;8812:30;-1:-1:-1;;;8858:18:1;;;8851:43;8911:18;;51360:39:0;8598:337:1;51360:39:0;52082:1;19940:12;19727:7;19924:13;51448;;19924:28;;-1:-1:-1;;19924:46:0;51432:29;;;;:::i;:::-;51019:4;51418:43;;51410:74;;;;-1:-1:-1;;;51410:74:0;;9275:2:1;51410:74:0;;;9257:21:1;9314:2;9294:18;;;9287:30;-1:-1:-1;;;9333:18:1;;;9326:48;9391:18;;51410:74:0;9073:342:1;51410:74:0;51519:1;51503:13;:17;51495:41;;;;-1:-1:-1;;;51495:41:0;;9622:2:1;51495:41:0;;;9604:21:1;9661:2;9641:18;;;9634:30;-1:-1:-1;;;9680:18:1;;;9673:41;9731:18;;51495:41:0;9420:335:1;51495:41:0;51572:7;;51555:13;:24;;51547:45;;;;-1:-1:-1;;;51547:45:0;;9962:2:1;51547:45:0;;;9944:21:1;10001:1;9981:18;;;9974:29;-1:-1:-1;;;10019:18:1;;;10012:38;10067:18;;51547:45:0;9760:331:1;51547:45:0;51636:9;51627:5;;51611:13;:21;;;;:::i;:::-;:34;51603:69;;;;-1:-1:-1;;;51603:69:0;;10471:2:1;51603:69:0;;;10453:21:1;10510:2;10490:18;;;10483:30;-1:-1:-1;;;10529:18:1;;;10522:52;10591:18;;51603:69:0;10269:346:1;51603:69:0;48661:10;51734:9;:20;;51726:45;;;;-1:-1:-1;;;51726:45:0;;10822:2:1;51726:45:0;;;10804:21:1;10861:2;10841:18;;;10834:30;-1:-1:-1;;;10880:18:1;;;10873:42;10932:18;;51726:45:0;10620:336:1;51726:45:0;51829:11;;-1:-1:-1;;;;;51790:19:0;;;;;;:10;:19;;;;;;:35;;51812:13;;51790:35;:::i;:::-;:50;;51782:85;;;;-1:-1:-1;;;51782:85:0;;11163:2:1;51782:85:0;;;11145:21:1;11202:2;11182:18;;;11175:30;-1:-1:-1;;;11221:18:1;;;11214:52;11283:18;;51782:85:0;10961:346:1;51782:85:0;-1:-1:-1;;;;;51892:19:0;;;;;;:10;:19;;;;;:36;;;;;;51941:33;51903:7;51915:13;51941:9;:33::i;28489:308::-;48661:10;-1:-1:-1;;;;;28588:31:0;;;28584:61;;28628:17;;-1:-1:-1;;;28628:17:0;;;;;;;;;;;28584:61;48661:10;28658:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28658:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28658:60:0;;;;;;;;;;28734:55;;540:41:1;;;28658:49:0;;48661:10;28734:55;;513:18:1;28734:55:0;;;;;;;28489:308;;:::o;52433:109::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;52511:23:::1;52521:3;52526:7;52511:9;:23::i;29359:399::-:0;29526:31;29539:4;29545:2;29549:7;29526:12;:31::i;:::-;-1:-1:-1;;;;;29572:14:0;;;:19;29568:183;;29611:56;29642:4;29648:2;29652:7;29661:5;29611:30;:56::i;:::-;29606:145;;29695:40;;-1:-1:-1;;;29695:40:0;;;;;;;;;;;29606:145;29359:399;;;;:::o;53445:356::-;53511:13;53545:17;53553:8;53545:7;:17::i;:::-;53537:51;;;;-1:-1:-1;;;53537:51:0;;11514:2:1;53537:51:0;;;11496:21:1;11553:2;11533:18;;;11526:30;-1:-1:-1;;;11572:18:1;;;11565:51;11633:18;;53537:51:0;11312:345:1;53537:51:0;53630:1;53612:7;53606:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;53688:7;53712:26;53729:8;53712:16;:26::i;:::-;53655:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53599:194;53445:356;-1:-1:-1;;53445:356:0:o;50892:83::-;;;;;;;:::i;53107:98::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;53177:11:::1;:20:::0;53107:98::o;5600:201::-;4764:6;;-1:-1:-1;;;;;4764:6:0;48661:10;4911:23;4903:68;;;;-1:-1:-1;;;4903:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5689:22:0;::::1;5681:73;;;::::0;-1:-1:-1;;;5681:73:0;;13604:2:1;5681:73:0::1;::::0;::::1;13586:21:1::0;13643:2;13623:18;;;13616:30;13682:34;13662:18;;;13655:62;-1:-1:-1;;;13733:18:1;;;13726:36;13779:19;;5681:73:0::1;13402:402:1::0;5681:73:0::1;5765:28;5784:8;5765:18;:28::i;:::-;5600:201:::0;:::o;30013:273::-;30070:4;30126:7;52082:1;30107:26;;:66;;;;;30160:13;;30150:7;:23;30107:66;:152;;;;-1:-1:-1;;30211:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30211:43:0;:48;;30013:273::o;22973:1129::-;23040:7;23075;;52082:1;23124:23;23120:915;;23177:13;;23170:4;:20;23166:869;;;23215:14;23232:23;;;:17;:23;;;;;;;-1:-1:-1;;;23321:23:0;;:28;;23317:699;;23840:113;23847:6;23857:1;23847:11;23840:113;;-1:-1:-1;;;23918:6:0;23900:25;;;;:17;:25;;;;;;23840:113;;;23986:6;22973:1129;-1:-1:-1;;;22973:1129:0:o;23317:699::-;23192:843;23166:869;24063:31;;-1:-1:-1;;;24063:31:0;;;;;;;;;;;5961:191;6054:6;;;-1:-1:-1;;;;;6071:17:0;;;-1:-1:-1;;;;;;6071:17:0;;;;;;;6104:40;;6054:6;;;6071:17;6054:6;;6104:40;;6035:16;;6104:40;6024:128;5961:191;:::o;30370:104::-;30439:27;30449:2;30453:8;30439:27;;;;;;;;;;;;:9;:27::i;44229:716::-;44413:88;;-1:-1:-1;;;44413:88:0;;44392:4;;-1:-1:-1;;;;;44413:45:0;;;;;:88;;48661:10;;44480:4;;44486:7;;44495:5;;44413:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44413:88:0;;;;;;;;-1:-1:-1;;44413:88:0;;;;;;;;;;;;:::i;:::-;;;44409:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44696:6;:13;44713:1;44696:18;44692:235;;44742:40;;-1:-1:-1;;;44742:40:0;;;;;;;;;;;44692:235;44885:6;44879:13;44870:6;44866:2;44862:15;44855:38;44409:529;-1:-1:-1;;;;;;44572:64:0;-1:-1:-1;;;44572:64:0;;-1:-1:-1;44409:529:0;44229:716;;;;;;:::o;824:723::-;880:13;1101:5;1110:1;1101:10;1097:53;;-1:-1:-1;;1128:10:0;;;;;;;;;;;;-1:-1:-1;;;1128:10:0;;;;;824:723::o;1097:53::-;1175:5;1160:12;1216:78;1223:9;;1216:78;;1249:8;;;;:::i;:::-;;-1:-1:-1;1272:10:0;;-1:-1:-1;1280:2:0;1272:10;;:::i;:::-;;;1216:78;;;1304:19;1336:6;1326:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1326:17:0;;1304:39;;1354:154;1361:10;;1354:154;;1388:11;1398:1;1388:11;;:::i;:::-;;-1:-1:-1;1457:10:0;1465:2;1457:5;:10;:::i;:::-;1444:24;;:2;:24;:::i;:::-;1431:39;;1414:6;1421;1414:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1414:56:0;;;;;;;;-1:-1:-1;1485:11:0;1494:2;1485:11;;:::i;:::-;;;1354:154;;30890:681;31013:19;31019:2;31023:8;31013:5;:19::i;:::-;-1:-1:-1;;;;;31074:14:0;;;:19;31070:483;;31114:11;31128:13;31176:14;;;31209:233;31240:62;31279:1;31283:2;31287:7;;;;;;31296:5;31240:30;:62::i;:::-;31235:167;;31338:40;;-1:-1:-1;;;31338:40:0;;;;;;;;;;;31235:167;31437:3;31429:5;:11;31209:233;;31524:3;31507:13;;:20;31503:34;;31529:8;;;31844:1529;31909:20;31932:13;-1:-1:-1;;;;;31960:16:0;;31956:48;;31985:19;;-1:-1:-1;;;31985:19:0;;;;;;;;;;;31956:48;32019:8;32031:1;32019:13;32015:44;;32041:18;;-1:-1:-1;;;32041:18:0;;;;;;;;;;;32015:44;-1:-1:-1;;;;;32547:22:0;;;;;;:18;:22;;15991:2;32547:22;;:70;;32585:31;32573:44;;32547:70;;;25955:11;25931:22;25927:40;-1:-1:-1;27665:15:0;;27640:23;27636:45;25924:51;25914:62;32860:31;;;;:17;:31;;;;;:173;32878:12;33109:23;;;33147:101;33174:35;;33199:9;;;;;-1:-1:-1;;;;;33174:35:0;;;33191:1;;33174:35;;33191:1;;33174:35;33243:3;33233:7;:13;33147:101;;33264:13;:19;-1:-1:-1;29103:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2195:186::-;2254:6;2307:2;2295:9;2286:7;2282:23;2278:32;2275:52;;;2323:1;2320;2313:12;2275:52;2346:29;2365:9;2346:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:367::-;4189:8;4199:6;4253:3;4246:4;4238:6;4234:17;4230:27;4220:55;;4271:1;4268;4261:12;4220:55;-1:-1:-1;4294:20:1;;4337:18;4326:30;;4323:50;;;4369:1;4366;4359:12;4323:50;4406:4;4398:6;4394:17;4382:29;;4466:3;4459:4;4449:6;4446:1;4442:14;4434:6;4430:27;4426:38;4423:47;4420:67;;;4483:1;4480;4473:12;4420:67;4126:367;;;;;:::o;4498:773::-;4620:6;4628;4636;4644;4697:2;4685:9;4676:7;4672:23;4668:32;4665:52;;;4713:1;4710;4703:12;4665:52;4753:9;4740:23;4782:18;4823:2;4815:6;4812:14;4809:34;;;4839:1;4836;4829:12;4809:34;4878:70;4940:7;4931:6;4920:9;4916:22;4878:70;:::i;:::-;4967:8;;-1:-1:-1;4852:96:1;-1:-1:-1;5055:2:1;5040:18;;5027:32;;-1:-1:-1;5071:16:1;;;5068:36;;;5100:1;5097;5090:12;5068:36;;5139:72;5203:7;5192:8;5181:9;5177:24;5139:72;:::i;:::-;4498:773;;;;-1:-1:-1;5230:8:1;-1:-1:-1;;;;4498:773:1:o;5276:347::-;5341:6;5349;5402:2;5390:9;5381:7;5377:23;5373:32;5370:52;;;5418:1;5415;5408:12;5370:52;5441:29;5460:9;5441:29;:::i;:::-;5431:39;;5520:2;5509:9;5505:18;5492:32;5567:5;5560:13;5553:21;5546:5;5543:32;5533:60;;5589:1;5586;5579:12;5533:60;5612:5;5602:15;;;5276:347;;;;;:::o;5628:667::-;5723:6;5731;5739;5747;5800:3;5788:9;5779:7;5775:23;5771:33;5768:53;;;5817:1;5814;5807:12;5768:53;5840:29;5859:9;5840:29;:::i;:::-;5830:39;;5888:38;5922:2;5911:9;5907:18;5888:38;:::i;:::-;5878:48;;5973:2;5962:9;5958:18;5945:32;5935:42;;6028:2;6017:9;6013:18;6000:32;6055:18;6047:6;6044:30;6041:50;;;6087:1;6084;6077:12;6041:50;6110:22;;6163:4;6155:13;;6151:27;-1:-1:-1;6141:55:1;;6192:1;6189;6182:12;6141:55;6215:74;6281:7;6276:2;6263:16;6258:2;6254;6250:11;6215:74;:::i;:::-;6205:84;;;5628:667;;;;;;;:::o;6300:260::-;6368:6;6376;6429:2;6417:9;6408:7;6404:23;6400:32;6397:52;;;6445:1;6442;6435:12;6397:52;6468:29;6487:9;6468:29;:::i;:::-;6458:39;;6516:38;6550:2;6539:9;6535:18;6516:38;:::i;:::-;6506:48;;6300:260;;;;;:::o;6565:380::-;6644:1;6640:12;;;;6687;;;6708:61;;6762:4;6754:6;6750:17;6740:27;;6708:61;6815:2;6807:6;6804:14;6784:18;6781:38;6778:161;;6861:10;6856:3;6852:20;6849:1;6842:31;6896:4;6893:1;6886:15;6924:4;6921:1;6914:15;6778:161;;6565:380;;;:::o;6950:356::-;7152:2;7134:21;;;7171:18;;;7164:30;7230:34;7225:2;7210:18;;7203:62;7297:2;7282:18;;6950:356::o;8194:127::-;8255:10;8250:3;8246:20;8243:1;8236:31;8286:4;8283:1;8276:15;8310:4;8307:1;8300:15;8326:127;8387:10;8382:3;8378:20;8375:1;8368:31;8418:4;8415:1;8408:15;8442:4;8439:1;8432:15;8458:135;8497:3;8518:17;;;8515:43;;8538:18;;:::i;:::-;-1:-1:-1;8585:1:1;8574:13;;8458:135::o;8940:128::-;8980:3;9011:1;9007:6;9004:1;9001:13;8998:39;;;9017:18;;:::i;:::-;-1:-1:-1;9053:9:1;;8940:128::o;10096:168::-;10136:7;10202:1;10198;10194:6;10190:14;10187:1;10184:21;10179:1;10172:9;10165:17;10161:45;10158:71;;;10209:18;;:::i;:::-;-1:-1:-1;10249:9:1;;10096:168::o;11788:185::-;11830:3;11868:5;11862:12;11883:52;11928:6;11923:3;11916:4;11909:5;11905:16;11883:52;:::i;:::-;11951:16;;;;;11788:185;-1:-1:-1;;11788:185:1:o;12096:1301::-;12373:3;12402:1;12435:6;12429:13;12465:3;12487:1;12515:9;12511:2;12507:18;12497:28;;12575:2;12564:9;12560:18;12597;12587:61;;12641:4;12633:6;12629:17;12619:27;;12587:61;12667:2;12715;12707:6;12704:14;12684:18;12681:38;12678:165;;-1:-1:-1;;;12742:33:1;;12798:4;12795:1;12788:15;12828:4;12749:3;12816:17;12678:165;12859:18;12886:104;;;;13004:1;12999:320;;;;12852:467;;12886:104;-1:-1:-1;;12919:24:1;;12907:37;;12964:16;;;;-1:-1:-1;12886:104:1;;12999:320;11735:1;11728:14;;;11772:4;11759:18;;13094:1;13108:165;13122:6;13119:1;13116:13;13108:165;;;13200:14;;13187:11;;;13180:35;13243:16;;;;13137:10;;13108:165;;;13112:3;;13302:6;13297:3;13293:16;13286:23;;12852:467;;;;;;;13335:56;13360:30;13386:3;13378:6;13360:30;:::i;:::-;-1:-1:-1;;;12038:20:1;;12083:1;12074:11;;11978:113;13335:56;13328:63;12096:1301;-1:-1:-1;;;;;12096:1301:1:o;13809:500::-;-1:-1:-1;;;;;14078:15:1;;;14060:34;;14130:15;;14125:2;14110:18;;14103:43;14177:2;14162:18;;14155:34;;;14225:3;14220:2;14205:18;;14198:31;;;14003:4;;14246:57;;14283:19;;14275:6;14246:57;:::i;:::-;14238:65;13809:500;-1:-1:-1;;;;;;13809:500:1:o;14314:249::-;14383:6;14436:2;14424:9;14415:7;14411:23;14407:32;14404:52;;;14452:1;14449;14442:12;14404:52;14484:9;14478:16;14503:30;14527:5;14503:30;:::i;14568:127::-;14629:10;14624:3;14620:20;14617:1;14610:31;14660:4;14657:1;14650:15;14684:4;14681:1;14674:15;14700:120;14740:1;14766;14756:35;;14771:18;;:::i;:::-;-1:-1:-1;14805:9:1;;14700:120::o;14825:125::-;14865:4;14893:1;14890;14887:8;14884:34;;;14898:18;;:::i;:::-;-1:-1:-1;14935:9:1;;14825:125::o;14955:112::-;14987:1;15013;15003:35;;15018:18;;:::i;:::-;-1:-1:-1;15052:9:1;;14955:112::o
Swarm Source
ipfs://3211d97d9a62432334ffee24ab2aa9f3988126eb772a1da5d01455c3b8c927d6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.