ERC-721
Overview
Max Total Supply
897 D.O.G.E
Holders
261
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 D.O.G.ELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DOGE
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-10 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.26; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract DOGE is IERC721A { using SafeMath for uint256; address private _owner; function owner() public view returns(address){ return _owner; } uint256 public constant MAX_SUPPLY = 3333; uint256 public constant MAX_FREE_PER_WALLET = 3; uint256 public constant COST = 0.0002 ether; string private constant _name = "D.O.G.E"; string private constant _symbol = "D.O.G.E"; string private _baseURI = "QmSfcFBaorbMJRfRYaD55a4eVV8FXCY3QfTqwW1WgVg7yS"; constructor() { _owner = msg.sender; _baseURI = "ipfs://bafybeied5l22xdssgeqzp6cu5bjyehqiakwu3eu5vhzkaq3c4arsxyxfwa"; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); _mint(_caller, amount); } function freemint() external nob{ address _caller = _msgSenderERC721A(); uint256 amount = MAX_FREE_PER_WALLET; if(totalSupply()>2200){ amount = 2; } require(totalSupply() + amount <= MAX_SUPPLY, "Freemint Sold Out"); require(_numberMinted(_caller) == 0, "First Mint used"); if(totalSupply()>2200){ nextPrime(); } _mint(_caller, amount); } uint256 public lastPrime = 1; uint runs = 1500; function nextPrime() public returns (uint256){ for (uint i; i < runs; i++){ lastPrime = i*i; } } // 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 tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI; return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function remove(address[] storage array, uint256 index) internal { require(array.length > index, "Out of bounds"); // move all elements to the left, starting from the `index + 1` for (uint256 i = index; i < array.length - 1; i++) { array[i] = array[i+1]; } array.pop(); // delete the last item } 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) } } bool public teamMintUsed = false; function teamMint() external onlyOwner{ require(teamMintUsed==false, "Used only Once"); teamMintUsed=true; _mint(msg.sender, 50); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastPrime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextPrime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052602e60808181529061159960a03960019061001f908261011e565b5060016002556105dc6003555f6004819055600955600c805460ff19169055348015610049575f80fd5b505f80546001600160a01b03191633179055604080516080810190915260428082526115c76020830139600190610080908261011e565b506101d8565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806100ae57607f821691505b6020821081036100cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561011957805f5260205f20601f840160051c810160208510156100f75750805b601f840160051c820191505b81811015610116575f8155600101610103565b50505b505050565b81516001600160401b0381111561013757610137610086565b61014b81610145845461009a565b846100d2565b6020601f82116001811461017d575f83156101665750848201515b5f19600385901b1c1916600184901b178455610116565b5f84815260208120601f198516915b828110156101ac578785015182556020948501946001909201910161018c565b50848210156101c957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6113b4806101e55f395ff3fe6080604052600436106101af575f3560e01c80638da5cb5b116100e7578063ba7a86b811610087578063c87b56dd11610062578063c87b56dd14610477578063e985e9c514610496578063f14695ae146104b5578063f9cb63ac146104d4575f80fd5b8063ba7a86b814610435578063ba9ddfcc14610449578063bf8fbbd21461045e575f80fd5b806398710d1e116100c257806398710d1e146103d0578063a0712d68146103e4578063a22cb465146103f7578063b88d4fde14610416575f80fd5b80638da5cb5b146103865780638ef1e259146103a257806395d89b41146101e7575f80fd5b80633ccfd60b116101525780634dd08f821161012d5780634dd08f821461031b5780636352211e1461033457806370a0823114610353578063748dc52214610372575f80fd5b80633ccfd60b146102c957806342842e0e146102dd57806347064d6a146102fc575f80fd5b8063095ea7b31161018d578063095ea7b31461025657806318160ddd1461027757806323b872dd1461029557806332cb6b0c146102b4575f80fd5b806301ffc9a7146101b357806306fdde03146101e7578063081812fc1461021f575b5f80fd5b3480156101be575f80fd5b506101d26101cd366004610ed0565b6104e8565b60405190151581526020015b60405180910390f35b3480156101f2575f80fd5b50604080518082019091526007815266442e4f2e472e4560c81b60208201525b6040516101de9190610ef7565b34801561022a575f80fd5b5061023e610239366004610f2c565b610539565b6040516001600160a01b0390911681526020016101de565b348015610261575f80fd5b50610275610270366004610f5e565b61057d565b005b348015610282575f80fd5b506004545b6040519081526020016101de565b3480156102a0575f80fd5b506102756102af366004610f86565b610638565b3480156102bf575f80fd5b50610287610d0581565b3480156102d4575f80fd5b50610275610648565b3480156102e8575f80fd5b506102756102f7366004610f86565b6106aa565b348015610307575f80fd5b5061027561031636600461104b565b6106c4565b348015610326575f80fd5b50600c546101d29060ff1681565b34801561033f575f80fd5b5061023e61034e366004610f2c565b6106f9565b34801561035e575f80fd5b5061028761036d366004611098565b610703565b34801561037d575f80fd5b50610287610749565b348015610391575f80fd5b505f546001600160a01b031661023e565b3480156103ad575f80fd5b506101d26103bc366004611098565b600a6020525f908152604090205460ff1681565b3480156103db575f80fd5b50610287600381565b6102756103f2366004610f2c565b61076f565b348015610402575f80fd5b506102756104113660046110b1565b610818565b348015610421575f80fd5b506102756104303660046110ea565b6108ac565b348015610440575f80fd5b506102756108bd565b348015610454575f80fd5b5061028760025481565b348015610469575f80fd5b5061028765b5e620f4800081565b348015610482575f80fd5b50610212610491366004610f2c565b610944565b3480156104a1575f80fd5b506101d26104b0366004611161565b610a48565b3480156104c0575f80fd5b5061023e6104cf366004610f2c565b610a75565b3480156104df575f80fd5b50610275610a9d565b5f6301ffc9a760e01b6001600160e01b03198316148061051857506380ac58cd60e01b6001600160e01b03198316145b806105335750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f610545826004541190565b610562576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f61058782610bd5565b9050806001600160a01b0316836001600160a01b0316036105a6575f80fd5b336001600160a01b038216146105dd576105c08133610a48565b6105dd576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610643838383610c37565b505050565b5f546001600160a01b0316331461067a5760405162461bcd60e51b815260040161067190611192565b60405180910390fd5b6040514790339082156108fc029083905f818181858888f193505050501580156106a6573d5f803e3d5ffd5b5050565b61064383838360405180602001604052805f8152506108ac565b5f546001600160a01b031633146106ed5760405162461bcd60e51b815260040161067190611192565b60016106a68282611238565b5f61053382610bd5565b5f815f03610724576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526006602052604090205467ffffffffffffffff1690565b5f805b60035481101561076b576107608180611307565b60025560010161074c565b5090565b33610d058261077d60045490565b610787919061131e565b11156107c05760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610671565b346107d165b5e620f4800084611307565b111561080e5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610671565b6106a68183610dc8565b336001600160a01b038316036108415760405163b06307db60e01b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108b7848484610c37565b50505050565b5f546001600160a01b031633146108e65760405162461bcd60e51b815260040161067190611192565b600c5460ff161561092a5760405162461bcd60e51b815260206004820152600e60248201526d55736564206f6e6c79204f6e636560901b6044820152606401610671565b600c805460ff19166001179055610942336032610dc8565b565b6060610951826004541190565b61096e57604051630a14c4b560e41b815260040160405180910390fd5b5f6001805461097c906111b5565b80601f01602080910402602001604051908101604052809291908181526020018280546109a8906111b5565b80156109f35780601f106109ca576101008083540402835291602001916109f3565b820191905f5260205f20905b8154815290600101906020018083116109d657829003601f168201915b5050505050905080515f03610a165760405180602001604052805f815250610a41565b80610a2084610e81565b604051602001610a31929190611348565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b600b8181548110610a84575f80fd5b5f918252602090912001546001600160a01b0316905081565b323314610ad85760405162461bcd60e51b81526020600482015260096024820152681b9bc814d8dc9a5c1d60ba1b6044820152606401610671565b336003610898610ae760045490565b1115610af1575060025b610d0581610afe60045490565b610b08919061131e565b1115610b4a5760405162461bcd60e51b8152602060048201526011602482015270119c99595b5a5b9d0814dbdb190813dd5d607a1b6044820152606401610671565b6001600160a01b0382165f90815260066020526040908190205467ffffffffffffffff911c1615610baf5760405162461bcd60e51b815260206004820152600f60248201526e119a5c9cdd08135a5b9d081d5cd959608a1b6044820152606401610671565b610898610bbb60045490565b1115610bcb57610bc9610749565b505b6106a68282610dc8565b5f81600454811015610c1e575f8181526005602052604081205490600160e01b82169003610c1c575b805f03610a4157505f19015f81815260056020526040902054610bfe565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610c4182610bd5565b9050836001600160a01b0316816001600160a01b031614610c745760405162a1148160e81b815260040160405180910390fd5b5f828152600760205260408120546001600160a01b0390811691908616331480610ca35750610ca38633610a48565b80610cb657506001600160a01b03821633145b905080610cd657604051632ce44b5f60e11b815260040160405180910390fd5b8115610cf8575f84815260076020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260066020908152604080832080545f1901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610d7f57600184015f818152600560205260408120549003610d7d576004548114610d7d575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6004545f829003610dec5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e365750600455505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ebe57600183039250600a81066030018353600a9004610ea0565b50819003601f19909101908152919050565b5f60208284031215610ee0575f80fd5b81356001600160e01b031981168114610a41575f80fd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610f3c575f80fd5b5035919050565b80356001600160a01b0381168114610f59575f80fd5b919050565b5f8060408385031215610f6f575f80fd5b610f7883610f43565b946020939093013593505050565b5f805f60608486031215610f98575f80fd5b610fa184610f43565b9250610faf60208501610f43565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f8067ffffffffffffffff841115610fee57610fee610fc0565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561101d5761101d610fc0565b604052838152905080828401851015611034575f80fd5b838360208301375f60208583010152509392505050565b5f6020828403121561105b575f80fd5b813567ffffffffffffffff811115611071575f80fd5b8201601f81018413611081575f80fd5b61109084823560208401610fd4565b949350505050565b5f602082840312156110a8575f80fd5b610a4182610f43565b5f80604083850312156110c2575f80fd5b6110cb83610f43565b9150602083013580151581146110df575f80fd5b809150509250929050565b5f805f80608085870312156110fd575f80fd5b61110685610f43565b935061111460208601610f43565b925060408501359150606085013567ffffffffffffffff811115611136575f80fd5b8501601f81018713611146575f80fd5b61115587823560208401610fd4565b91505092959194509250565b5f8060408385031215611172575f80fd5b61117b83610f43565b915061118960208401610f43565b90509250929050565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b600181811c908216806111c957607f821691505b6020821081036111e757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561064357805f5260205f20601f840160051c810160208510156112125750805b601f840160051c820191505b81811015611231575f815560010161121e565b5050505050565b815167ffffffffffffffff81111561125257611252610fc0565b6112668161126084546111b5565b846111ed565b6020601f821160018114611298575f83156112815750848201515b5f19600385901b1c1916600184901b178455611231565b5f84815260208120601f198516915b828110156112c757878501518255602094850194600190920191016112a7565b50848210156112e457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610533576105336112f3565b80820180821115610533576105336112f3565b5f81518060208401855e5f93019283525090919050565b5f6113538285611331565b602f60f81b81526113676001820185611331565b64173539b7b760d91b81526005019594505050505056fea2646970667358221220a0dae100f3ed75591a1cd4dc831ffa2e110358c8e23d7af0164885da21ae86a964736f6c634300081a0033516d5366634642616f72624d4a526652596144353561346556563846584359335166547177573157675667377953697066733a2f2f626166796265696564356c3232786473736765717a7036637535626a7965687169616b77753365753576687a6b6171336334617273787978667761
Deployed Bytecode
0x6080604052600436106101af575f3560e01c80638da5cb5b116100e7578063ba7a86b811610087578063c87b56dd11610062578063c87b56dd14610477578063e985e9c514610496578063f14695ae146104b5578063f9cb63ac146104d4575f80fd5b8063ba7a86b814610435578063ba9ddfcc14610449578063bf8fbbd21461045e575f80fd5b806398710d1e116100c257806398710d1e146103d0578063a0712d68146103e4578063a22cb465146103f7578063b88d4fde14610416575f80fd5b80638da5cb5b146103865780638ef1e259146103a257806395d89b41146101e7575f80fd5b80633ccfd60b116101525780634dd08f821161012d5780634dd08f821461031b5780636352211e1461033457806370a0823114610353578063748dc52214610372575f80fd5b80633ccfd60b146102c957806342842e0e146102dd57806347064d6a146102fc575f80fd5b8063095ea7b31161018d578063095ea7b31461025657806318160ddd1461027757806323b872dd1461029557806332cb6b0c146102b4575f80fd5b806301ffc9a7146101b357806306fdde03146101e7578063081812fc1461021f575b5f80fd5b3480156101be575f80fd5b506101d26101cd366004610ed0565b6104e8565b60405190151581526020015b60405180910390f35b3480156101f2575f80fd5b50604080518082019091526007815266442e4f2e472e4560c81b60208201525b6040516101de9190610ef7565b34801561022a575f80fd5b5061023e610239366004610f2c565b610539565b6040516001600160a01b0390911681526020016101de565b348015610261575f80fd5b50610275610270366004610f5e565b61057d565b005b348015610282575f80fd5b506004545b6040519081526020016101de565b3480156102a0575f80fd5b506102756102af366004610f86565b610638565b3480156102bf575f80fd5b50610287610d0581565b3480156102d4575f80fd5b50610275610648565b3480156102e8575f80fd5b506102756102f7366004610f86565b6106aa565b348015610307575f80fd5b5061027561031636600461104b565b6106c4565b348015610326575f80fd5b50600c546101d29060ff1681565b34801561033f575f80fd5b5061023e61034e366004610f2c565b6106f9565b34801561035e575f80fd5b5061028761036d366004611098565b610703565b34801561037d575f80fd5b50610287610749565b348015610391575f80fd5b505f546001600160a01b031661023e565b3480156103ad575f80fd5b506101d26103bc366004611098565b600a6020525f908152604090205460ff1681565b3480156103db575f80fd5b50610287600381565b6102756103f2366004610f2c565b61076f565b348015610402575f80fd5b506102756104113660046110b1565b610818565b348015610421575f80fd5b506102756104303660046110ea565b6108ac565b348015610440575f80fd5b506102756108bd565b348015610454575f80fd5b5061028760025481565b348015610469575f80fd5b5061028765b5e620f4800081565b348015610482575f80fd5b50610212610491366004610f2c565b610944565b3480156104a1575f80fd5b506101d26104b0366004611161565b610a48565b3480156104c0575f80fd5b5061023e6104cf366004610f2c565b610a75565b3480156104df575f80fd5b50610275610a9d565b5f6301ffc9a760e01b6001600160e01b03198316148061051857506380ac58cd60e01b6001600160e01b03198316145b806105335750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f610545826004541190565b610562576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f61058782610bd5565b9050806001600160a01b0316836001600160a01b0316036105a6575f80fd5b336001600160a01b038216146105dd576105c08133610a48565b6105dd576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610643838383610c37565b505050565b5f546001600160a01b0316331461067a5760405162461bcd60e51b815260040161067190611192565b60405180910390fd5b6040514790339082156108fc029083905f818181858888f193505050501580156106a6573d5f803e3d5ffd5b5050565b61064383838360405180602001604052805f8152506108ac565b5f546001600160a01b031633146106ed5760405162461bcd60e51b815260040161067190611192565b60016106a68282611238565b5f61053382610bd5565b5f815f03610724576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526006602052604090205467ffffffffffffffff1690565b5f805b60035481101561076b576107608180611307565b60025560010161074c565b5090565b33610d058261077d60045490565b610787919061131e565b11156107c05760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610671565b346107d165b5e620f4800084611307565b111561080e5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610671565b6106a68183610dc8565b336001600160a01b038316036108415760405163b06307db60e01b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108b7848484610c37565b50505050565b5f546001600160a01b031633146108e65760405162461bcd60e51b815260040161067190611192565b600c5460ff161561092a5760405162461bcd60e51b815260206004820152600e60248201526d55736564206f6e6c79204f6e636560901b6044820152606401610671565b600c805460ff19166001179055610942336032610dc8565b565b6060610951826004541190565b61096e57604051630a14c4b560e41b815260040160405180910390fd5b5f6001805461097c906111b5565b80601f01602080910402602001604051908101604052809291908181526020018280546109a8906111b5565b80156109f35780601f106109ca576101008083540402835291602001916109f3565b820191905f5260205f20905b8154815290600101906020018083116109d657829003601f168201915b5050505050905080515f03610a165760405180602001604052805f815250610a41565b80610a2084610e81565b604051602001610a31929190611348565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b600b8181548110610a84575f80fd5b5f918252602090912001546001600160a01b0316905081565b323314610ad85760405162461bcd60e51b81526020600482015260096024820152681b9bc814d8dc9a5c1d60ba1b6044820152606401610671565b336003610898610ae760045490565b1115610af1575060025b610d0581610afe60045490565b610b08919061131e565b1115610b4a5760405162461bcd60e51b8152602060048201526011602482015270119c99595b5a5b9d0814dbdb190813dd5d607a1b6044820152606401610671565b6001600160a01b0382165f90815260066020526040908190205467ffffffffffffffff911c1615610baf5760405162461bcd60e51b815260206004820152600f60248201526e119a5c9cdd08135a5b9d081d5cd959608a1b6044820152606401610671565b610898610bbb60045490565b1115610bcb57610bc9610749565b505b6106a68282610dc8565b5f81600454811015610c1e575f8181526005602052604081205490600160e01b82169003610c1c575b805f03610a4157505f19015f81815260056020526040902054610bfe565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610c4182610bd5565b9050836001600160a01b0316816001600160a01b031614610c745760405162a1148160e81b815260040160405180910390fd5b5f828152600760205260408120546001600160a01b0390811691908616331480610ca35750610ca38633610a48565b80610cb657506001600160a01b03821633145b905080610cd657604051632ce44b5f60e11b815260040160405180910390fd5b8115610cf8575f84815260076020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260066020908152604080832080545f1901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610d7f57600184015f818152600560205260408120549003610d7d576004548114610d7d575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6004545f829003610dec5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e365750600455505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ebe57600183039250600a81066030018353600a9004610ea0565b50819003601f19909101908152919050565b5f60208284031215610ee0575f80fd5b81356001600160e01b031981168114610a41575f80fd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610f3c575f80fd5b5035919050565b80356001600160a01b0381168114610f59575f80fd5b919050565b5f8060408385031215610f6f575f80fd5b610f7883610f43565b946020939093013593505050565b5f805f60608486031215610f98575f80fd5b610fa184610f43565b9250610faf60208501610f43565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f8067ffffffffffffffff841115610fee57610fee610fc0565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561101d5761101d610fc0565b604052838152905080828401851015611034575f80fd5b838360208301375f60208583010152509392505050565b5f6020828403121561105b575f80fd5b813567ffffffffffffffff811115611071575f80fd5b8201601f81018413611081575f80fd5b61109084823560208401610fd4565b949350505050565b5f602082840312156110a8575f80fd5b610a4182610f43565b5f80604083850312156110c2575f80fd5b6110cb83610f43565b9150602083013580151581146110df575f80fd5b809150509250929050565b5f805f80608085870312156110fd575f80fd5b61110685610f43565b935061111460208601610f43565b925060408501359150606085013567ffffffffffffffff811115611136575f80fd5b8501601f81018713611146575f80fd5b61115587823560208401610fd4565b91505092959194509250565b5f8060408385031215611172575f80fd5b61117b83610f43565b915061118960208401610f43565b90509250929050565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b600181811c908216806111c957607f821691505b6020821081036111e757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561064357805f5260205f20601f840160051c810160208510156112125750805b601f840160051c820191505b81811015611231575f815560010161121e565b5050505050565b815167ffffffffffffffff81111561125257611252610fc0565b6112668161126084546111b5565b846111ed565b6020601f821160018114611298575f83156112815750848201515b5f19600385901b1c1916600184901b178455611231565b5f84815260208120601f198516915b828110156112c757878501518255602094850194600190920191016112a7565b50848210156112e457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610533576105336112f3565b80820180821115610533576105336112f3565b5f81518060208401855e5f93019283525090919050565b5f6113538285611331565b602f60f81b81526113676001820185611331565b64173539b7b760d91b81526005019594505050505056fea2646970667358221220a0dae100f3ed75591a1cd4dc831ffa2e110358c8e23d7af0164885da21ae86a964736f6c634300081a0033
Deployed Bytecode Sourcemap
15531:22114:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20839:615;;;;;;;;;;-1:-1:-1;20839:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;20839:615:0;;;;;;;;25046:100;;;;;;;;;;-1:-1:-1;25133:5:0;;;;;;;;;;;;-1:-1:-1;;;25133:5:0;;;;25046:100;;;;;;;:::i;26702:204::-;;;;;;;;;;-1:-1:-1;26702:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1315:32:1;;;1297:51;;1285:2;1270:18;26702:204:0;1151:203:1;26185:451:0;;;;;;;;;;-1:-1:-1;26185:451:0;;;;;:::i;:::-;;:::i;:::-;;20082:300;;;;;;;;;;-1:-1:-1;20332:13:0;;20082:300;;;1988:25:1;;;1976:2;1961:18;20082:300:0;1842:177:1;27588:190:0;;;;;;;;;;-1:-1:-1;27588:190:0;;;;;:::i;:::-;;:::i;15714:41::-;;;;;;;;;;;;15751:4;15714:41;;37497:145;;;;;;;;;;;;;:::i;27849:205::-;;;;;;;;;;-1:-1:-1;27849:205:0;;;;;:::i;:::-;;:::i;19371:91::-;;;;;;;;;;-1:-1:-1;19371:91:0;;;;;:::i;:::-;;:::i;37088:32::-;;;;;;;;;;-1:-1:-1;37088:32:0;;;;;;;;24835:144;;;;;;;;;;-1:-1:-1;24835:144:0;;;;;:::i;:::-;;:::i;21518:234::-;;;;;;;;;;-1:-1:-1;21518:234:0;;;;;:::i;:::-;;:::i;16995:114::-;;;;;;;;;;;;;:::i;15629:77::-;;;;;;;;;;-1:-1:-1;15666:7:0;15692:6;-1:-1:-1;;;;;15692:6:0;15629:77;;30917:39;;;;;;;;;;-1:-1:-1;30917:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15762:47;;;;;;;;;;;;15808:1;15762:47;;16199:267;;;;;;:::i;:::-;;:::i;26978:308::-;;;;;;;;;;-1:-1:-1;26978:308:0;;;;;:::i;:::-;;:::i;28125:227::-;;;;;;;;;;-1:-1:-1;28125:227:0;;;;;:::i;:::-;;:::i;37127:163::-;;;;;;;;;;;;;:::i;16940:28::-;;;;;;;;;;;;;;;;15816:43;;;;;;;;;;;;15847:12;15816:43;;25333:328;;;;;;;;;;-1:-1:-1;25333:328:0;;;;;:::i;:::-;;:::i;27357:164::-;;;;;;;;;;-1:-1:-1;27357:164:0;;;;;:::i;:::-;;:::i;30963:22::-;;;;;;;;;;-1:-1:-1;30963:22:0;;;;;:::i;:::-;;:::i;16474:458::-;;;;;;;;;;;;;:::i;20839:615::-;20924:4;-1:-1:-1;;;;;;;;;21224:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21301:25:0;;;21224:102;:179;;;-1:-1:-1;;;;;;;;;;21378:25:0;;;21224:179;21204:199;20839:615;-1:-1:-1;;20839:615:0:o;26702:204::-;26770:7;26795:16;26803:7;28754:13;;-1:-1:-1;28744:23:0;28607:168;26795:16;26790:64;;26820:34;;-1:-1:-1;;;26820:34:0;;;;;;;;;;;26790:64;-1:-1:-1;26874:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26874:24:0;;26702:204::o;26185:451::-;26258:13;26290:27;26309:7;26290:18;:27::i;:::-;26258:61;;26340:5;-1:-1:-1;;;;;26334:11:0;:2;-1:-1:-1;;;;;26334:11:0;;26330:25;;26347:8;;;26330:25;35074:10;-1:-1:-1;;;;;26372:28:0;;;26368:175;;26420:44;26437:5;35074:10;27357:164;:::i;26420:44::-;26415:128;;26492:35;;-1:-1:-1;;;26492:35:0;;;;;;;;;;;26415:128;26555:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;26555:29:0;-1:-1:-1;;;;;26555:29:0;;;;;;;;;26600:28;;26555:24;;26600:28;;;;;;;26247:389;26185:451;;:::o;27588:190::-;27742:28;27752:4;27758:2;27762:7;27742:9;:28::i;:::-;27588:190;;;:::o;37497:145::-;37339:6;;-1:-1:-1;;;;;37339:6:0;37347:10;37339:18;37331:40;;;;-1:-1:-1;;;37331:40:0;;;;;;;:::i;:::-;;;;;;;;;37597:37:::1;::::0;37565:21:::1;::::0;37605:10:::1;::::0;37597:37;::::1;;;::::0;37565:21;;37547:15:::1;37597:37:::0;37547:15;37597:37;37565:21;37605:10;37597:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37536:106;37497:145::o:0;27849:205::-;28007:39;28024:4;28030:2;28034:7;28007:39;;;;;;;;;;;;:16;:39::i;19371:91::-;37339:6;;-1:-1:-1;;;;;37339:6:0;37347:10;37339:18;37331:40;;;;-1:-1:-1;;;37331:40:0;;;;;;;:::i;:::-;19438:8:::1;:16;19449:5:::0;19438:8;:16:::1;:::i;24835:144::-:0;24899:7;24942:27;24961:7;24942:18;:27::i;21518:234::-;21582:7;21624:5;21634:1;21606:29;21602:70;;21644:28;;-1:-1:-1;;;21644:28:0;;;;;;;;;;;21602:70;-1:-1:-1;;;;;;21690:25:0;;;;;:18;:25;;;;;;17222:13;21690:54;;21518:234::o;16995:114::-;17032:7;17056:6;17051:54;17068:4;;17064:1;:8;17051:54;;;17096:3;17098:1;;17096:3;:::i;:::-;17084:9;:15;17074:3;;17051:54;;;;16995:114;:::o;16199:267::-;35074:10;15751:4;16330:6;16314:13;20332;;;20082:300;16314:13;:22;;;;:::i;:::-;:36;;16306:57;;;;-1:-1:-1;;;16306:57:0;;8721:2:1;16306:57:0;;;8703:21:1;8760:1;8740:18;;;8733:29;-1:-1:-1;;;8778:18:1;;;8771:38;8826:18;;16306:57:0;8519:331:1;16306:57:0;16397:9;16382:11;15847:12;16382:6;:11;:::i;:::-;:24;;16374:49;;;;-1:-1:-1;;;16374:49:0;;9057:2:1;16374:49:0;;;9039:21:1;9096:2;9076:18;;;9069:30;-1:-1:-1;;;9115:18:1;;;9108:42;9167:18;;16374:49:0;8855:336:1;16374:49:0;16436:22;16442:7;16451:6;16436:5;:22::i;26978:308::-;35074:10;-1:-1:-1;;;;;27077:31:0;;;27073:61;;27117:17;;-1:-1:-1;;;27117:17:0;;;;;;;;;;;27073:61;35074:10;27147:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27147:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27147:60:0;;;;;;;;;;27223:55;;445:41:1;;;27147:49:0;;35074:10;27223:55;;418:18:1;27223:55:0;;;;;;;26978:308;;:::o;28125:227::-;28316:28;28326:4;28332:2;28336:7;28316:9;:28::i;:::-;28125:227;;;;:::o;37127:163::-;37339:6;;-1:-1:-1;;;;;37339:6:0;37347:10;37339:18;37331:40;;;;-1:-1:-1;;;37331:40:0;;;;;;;:::i;:::-;37184:12:::1;::::0;::::1;;:19;37176:46;;;::::0;-1:-1:-1;;;37176:46:0;;9398:2:1;37176:46:0::1;::::0;::::1;9380:21:1::0;9437:2;9417:18;;;9410:30;-1:-1:-1;;;9456:18:1;;;9449:44;9510:18;;37176:46:0::1;9196:338:1::0;37176:46:0::1;37233:12;:17:::0;;-1:-1:-1;;37233:17:0::1;37246:4;37233:17;::::0;;37261:21:::1;37267:10;37279:2;37261:5;:21::i;:::-;37127:163::o:0;25333:328::-;25406:13;25437:16;25445:7;28754:13;;-1:-1:-1;28744:23:0;28607:168;25437:16;25432:59;;25462:29;;-1:-1:-1;;;25462:29:0;;;;;;;;;;;25432:59;25502:21;25526:8;25502:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25558:7;25552:21;25577:1;25552:26;:101;;;;;;;;;;;;;;;;;25605:7;25619:18;25629:7;25619:9;:18::i;:::-;25588:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25552:101;25545:108;25333:328;-1:-1:-1;;;25333:328:0:o;27357:164::-;-1:-1:-1;;;;;27478:25:0;;;27454:4;27478:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27357:164::o;30963:22::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30963:22:0;;-1:-1:-1;30963:22:0;:::o;16474:458::-;37434:9;37445:10;37434:21;37426:43;;;;-1:-1:-1;;;37426:43:0;;10542:2:1;37426:43:0;;;10524:21:1;10581:1;10561:18;;;10554:29;-1:-1:-1;;;10599:18:1;;;10592:39;10648:18;;37426:43:0;10340:332:1;37426:43:0;35074:10;15808:1:::1;16631:4;16617:13;20332::::0;;;20082:300;16617:13:::1;:18;16614:59;;;-1:-1:-1::0;16660:1:0::1;16614:59;15751:4;16709:6;16693:13;20332::::0;;;20082:300;16693:13:::1;:22;;;;:::i;:::-;:36;;16685:66;;;::::0;-1:-1:-1;;;16685:66:0;;10879:2:1;16685:66:0::1;::::0;::::1;10861:21:1::0;10918:2;10898:18;;;10891:30;-1:-1:-1;;;10937:18:1;;;10930:47;10994:18;;16685:66:0::1;10677:341:1::0;16685:66:0::1;-1:-1:-1::0;;;;;21923:25:0;;21895:7;21923:25;;;:18;:25;;17359:2;21923:25;;;;;17222:13;21923:49;;21922:80;16770:27;16762:55:::1;;;::::0;-1:-1:-1;;;16762:55:0;;11225:2:1;16762:55:0::1;::::0;::::1;11207:21:1::0;11264:2;11244:18;;;11237:30;-1:-1:-1;;;11283:18:1;;;11276:45;11338:18;;16762:55:0::1;11023:339:1::0;16762:55:0::1;16847:4;16833:13;20332::::0;;;20082:300;16833:13:::1;:18;16830:60;;;16867:11;:9;:11::i;:::-;;16830:60;16902:22;16908:7;16917:6;16902:5;:22::i;22350:1129::-:0;22417:7;22452;22554:13;;22547:4;:20;22543:869;;;22592:14;22609:23;;;:17;:23;;;;;;;-1:-1:-1;;;22698:23:0;;:28;;22694:699;;23217:113;23224:6;23234:1;23224:11;23217:113;;-1:-1:-1;;;23295:6:0;23277:25;;;;:17;:25;;;;;;23217:113;;22694:699;22569:843;22543:869;23440:31;;-1:-1:-1;;;23440:31:0;;;;;;;;;;;30992:2561;31133:27;31163;31182:7;31163:18;:27::i;:::-;31133:57;;31248:4;-1:-1:-1;;;;;31207:45:0;31223:19;-1:-1:-1;;;;;31207:45:0;;31203:86;;31261:28;;-1:-1:-1;;;31261:28:0;;;;;;;;;;;31203:86;31302:23;31328:24;;;:15;:24;;;;;;-1:-1:-1;;;;;31328:24:0;;;;31302:23;31391:27;;35074:10;31391:27;;:91;;-1:-1:-1;31439:43:0;31456:4;35074:10;27357:164;:::i;31439:43::-;31391:150;;;-1:-1:-1;;;;;;31503:38:0;;35074:10;31503:38;31391:150;31365:177;;31560:17;31555:66;;31586:35;;-1:-1:-1;;;31586:35:0;;;;;;;;;;;31555:66;31711:15;31693:39;31689:103;;31756:24;;;;:15;:24;;;;;31749:31;;-1:-1:-1;;;;;;31749:31:0;;;31689:103;-1:-1:-1;;;;;32159:24:0;;;;;;;:18;:24;;;;;;;;32157:26;;-1:-1:-1;;32157:26:0;;;32228:22;;;;;;;;32226:24;;-1:-1:-1;32226:24:0;;;32521:26;;;:17;:26;;;;;-1:-1:-1;;;32609:15:0;17876:3;32609:41;32567:84;;:128;;32521:174;;;32815:46;;:51;;32811:626;;32919:1;32909:11;;32887:19;33042:30;;;:17;:30;;;;;;:35;;33038:384;;33180:13;;33165:11;:28;33161:242;;33327:30;;;;:17;:30;;;;;:52;;;33161:242;32868:569;32811:626;33484:7;33480:2;-1:-1:-1;;;;;33465:27:0;33474:4;-1:-1:-1;;;;;33465:27:0;;;;;;;;;;;31116:2437;;;30992:2561;;;:::o;29040:1596::-;29128:13;;29105:20;29227:13;;;29223:44;;29249:18;;-1:-1:-1;;;29249:18:0;;;;;;;;;;;29223:44;-1:-1:-1;;;;;29744:22:0;;;;;;:18;:22;;;;17359:2;29744:22;;;:70;;29782:31;29770:44;;29744:70;;;30057:31;;;:17;:31;;;;;30150:15;17876:3;30150:41;30108:84;;-1:-1:-1;30228:13:0;;18135:3;30213:56;30108:162;30057:213;;:31;30351:23;;;30391:111;30418:40;;30443:14;;;;;-1:-1:-1;;;;;30418:40:0;;;30435:1;;30418:40;;30435:1;;30418:40;30497:3;30482:12;:18;30391:111;;-1:-1:-1;30518:13:0;:28;27588:190;;;:::o;35198:1882::-;35669:4;35663:11;;35676:3;35659:21;;35750:17;;;;36422:11;;;36299:5;36556:2;36570;36560:13;;36552:22;36422:11;36539:36;36612:2;36602:13;;36196:661;36628:4;36196:661;;;36796:1;36791:3;36787:11;36780:18;;36840:2;36834:4;36830:13;36826:2;36822:22;36817:3;36809:36;36713:2;36703:13;;36196:661;;;-1:-1:-1;36880:13:0;;;-1:-1:-1;;36989:12:0;;;37043:19;;;36989:12;35198:1882;-1:-1:-1;35198:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:418;646:2;635:9;628:21;609:4;678:6;672:13;721:6;716:2;705:9;701:18;694:34;780:6;775:2;767:6;763:15;758:2;747:9;743:18;737:50;836:1;831:2;822:6;811:9;807:22;803:31;796:42;906:2;899;895:7;890:2;882:6;878:15;874:29;863:9;859:45;855:54;847:62;;;497:418;;;;:::o;920:226::-;979:6;1032:2;1020:9;1011:7;1007:23;1003:32;1000:52;;;1048:1;1045;1038:12;1000:52;-1:-1:-1;1093:23:1;;920:226;-1:-1:-1;920:226:1:o;1359:173::-;1427:20;;-1:-1:-1;;;;;1476:31:1;;1466:42;;1456:70;;1522:1;1519;1512:12;1456:70;1359:173;;;:::o;1537:300::-;1605:6;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1705:29;1724:9;1705:29;:::i;:::-;1695:39;1803:2;1788:18;;;;1775:32;;-1:-1:-1;;;1537:300:1:o;2024:374::-;2101:6;2109;2117;2170:2;2158:9;2149:7;2145:23;2141:32;2138:52;;;2186:1;2183;2176:12;2138:52;2209:29;2228:9;2209:29;:::i;:::-;2199:39;;2257:38;2291:2;2280:9;2276:18;2257:38;:::i;:::-;2024:374;;2247:48;;-1:-1:-1;;;2364:2:1;2349:18;;;;2336:32;;2024:374::o;2403:127::-;2464:10;2459:3;2455:20;2452:1;2445:31;2495:4;2492:1;2485:15;2519:4;2516:1;2509:15;2535:716;2600:5;2632:1;2656:18;2648:6;2645:30;2642:56;;;2678:18;;:::i;:::-;-1:-1:-1;2833:2:1;2827:9;-1:-1:-1;;2746:2:1;2725:15;;2721:29;;2891:2;2879:15;2875:29;2863:42;;2956:22;;;2935:18;2920:34;;2917:62;2914:88;;;2982:18;;:::i;:::-;3018:2;3011:22;3066;;;3051:6;-1:-1:-1;3051:6:1;3103:16;;;3100:25;-1:-1:-1;3097:45:1;;;3138:1;3135;3128:12;3097:45;3188:6;3183:3;3176:4;3168:6;3164:17;3151:44;3243:1;3236:4;3227:6;3219;3215:19;3211:30;3204:41;;2535:716;;;;;:::o;3256:451::-;3325:6;3378:2;3366:9;3357:7;3353:23;3349:32;3346:52;;;3394:1;3391;3384:12;3346:52;3434:9;3421:23;3467:18;3459:6;3456:30;3453:50;;;3499:1;3496;3489:12;3453:50;3522:22;;3575:4;3567:13;;3563:27;-1:-1:-1;3553:55:1;;3604:1;3601;3594:12;3553:55;3627:74;3693:7;3688:2;3675:16;3670:2;3666;3662:11;3627:74;:::i;:::-;3617:84;3256:451;-1:-1:-1;;;;3256:451:1:o;3712:186::-;3771:6;3824:2;3812:9;3803:7;3799:23;3795:32;3792:52;;;3840:1;3837;3830:12;3792:52;3863:29;3882:9;3863:29;:::i;3903:347::-;3968:6;3976;4029:2;4017:9;4008:7;4004:23;4000:32;3997:52;;;4045:1;4042;4035:12;3997:52;4068:29;4087:9;4068:29;:::i;:::-;4058:39;;4147:2;4136:9;4132:18;4119:32;4194:5;4187:13;4180:21;4173:5;4170:32;4160:60;;4216:1;4213;4206:12;4160:60;4239:5;4229:15;;;3903:347;;;;;:::o;4255:713::-;4350:6;4358;4366;4374;4427:3;4415:9;4406:7;4402:23;4398:33;4395:53;;;4444:1;4441;4434:12;4395:53;4467:29;4486:9;4467:29;:::i;:::-;4457:39;;4515:38;4549:2;4538:9;4534:18;4515:38;:::i;:::-;4505:48;-1:-1:-1;4622:2:1;4607:18;;4594:32;;-1:-1:-1;4701:2:1;4686:18;;4673:32;4728:18;4717:30;;4714:50;;;4760:1;4757;4750:12;4714:50;4783:22;;4836:4;4828:13;;4824:27;-1:-1:-1;4814:55:1;;4865:1;4862;4855:12;4814:55;4888:74;4954:7;4949:2;4936:16;4931:2;4927;4923:11;4888:74;:::i;:::-;4878:84;;;4255:713;;;;;;;:::o;4973:260::-;5041:6;5049;5102:2;5090:9;5081:7;5077:23;5073:32;5070:52;;;5118:1;5115;5108:12;5070:52;5141:29;5160:9;5141:29;:::i;:::-;5131:39;;5189:38;5223:2;5212:9;5208:18;5189:38;:::i;:::-;5179:48;;4973:260;;;;;:::o;5238:332::-;5440:2;5422:21;;;5479:1;5459:18;;;5452:29;-1:-1:-1;;;5512:2:1;5497:18;;5490:39;5561:2;5546:18;;5238:332::o;5575:380::-;5654:1;5650:12;;;;5697;;;5718:61;;5772:4;5764:6;5760:17;5750:27;;5718:61;5825:2;5817:6;5814:14;5794:18;5791:38;5788:161;;5871:10;5866:3;5862:20;5859:1;5852:31;5906:4;5903:1;5896:15;5934:4;5931:1;5924:15;5788:161;;5575:380;;;:::o;6086:518::-;6188:2;6183:3;6180:11;6177:421;;;6224:5;6221:1;6214:16;6268:4;6265:1;6255:18;6338:2;6326:10;6322:19;6319:1;6315:27;6309:4;6305:38;6374:4;6362:10;6359:20;6356:47;;;-1:-1:-1;6397:4:1;6356:47;6452:2;6447:3;6443:12;6440:1;6436:20;6430:4;6426:31;6416:41;;6507:81;6525:2;6518:5;6515:13;6507:81;;;6584:1;6570:16;;6551:1;6540:13;6507:81;;;6511:3;;6086:518;;;:::o;6780:1299::-;6906:3;6900:10;6933:18;6925:6;6922:30;6919:56;;;6955:18;;:::i;:::-;6984:97;7074:6;7034:38;7066:4;7060:11;7034:38;:::i;:::-;7028:4;6984:97;:::i;:::-;7130:4;7161:2;7150:14;;7178:1;7173:649;;;;7866:1;7883:6;7880:89;;;-1:-1:-1;7935:19:1;;;7929:26;7880:89;-1:-1:-1;;6737:1:1;6733:11;;;6729:24;6725:29;6715:40;6761:1;6757:11;;;6712:57;7982:81;;7143:930;;7173:649;6033:1;6026:14;;;6070:4;6057:18;;-1:-1:-1;;7209:20:1;;;7327:222;7341:7;7338:1;7335:14;7327:222;;;7423:19;;;7417:26;7402:42;;7530:4;7515:20;;;;7483:1;7471:14;;;;7357:12;7327:222;;;7331:3;7577:6;7568:7;7565:19;7562:201;;;7638:19;;;7632:26;-1:-1:-1;;7721:1:1;7717:14;;;7733:3;7713:24;7709:37;7705:42;7690:58;7675:74;;7562:201;-1:-1:-1;;;;7809:1:1;7793:14;;;7789:22;7776:36;;-1:-1:-1;6780:1299:1:o;8084:127::-;8145:10;8140:3;8136:20;8133:1;8126:31;8176:4;8173:1;8166:15;8200:4;8197:1;8190:15;8216:168;8289:9;;;8320;;8337:15;;;8331:22;;8317:37;8307:71;;8358:18;;:::i;8389:125::-;8454:9;;;8475:10;;;8472:36;;;8488:18;;:::i;9539:212::-;9581:3;9619:5;9613:12;9663:6;9656:4;9649:5;9645:16;9640:3;9634:36;9725:1;9689:16;;9714:13;;;-1:-1:-1;9689:16:1;;9539:212;-1:-1:-1;9539:212:1:o;9756:579::-;10137:3;10165:30;10191:3;10183:6;10165:30;:::i;:::-;-1:-1:-1;;;10211:2:1;10204:15;10238:37;10272:1;10268:2;10264:10;10256:6;10238:37;:::i;:::-;-1:-1:-1;;;10284:19:1;;10327:1;10319:10;;9756:579;-1:-1:-1;;;;;9756:579:1:o
Swarm Source
ipfs://a0dae100f3ed75591a1cd4dc831ffa2e110358c8e23d7af0164885da21ae86a9
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.