ERC-721
Overview
Max Total Supply
175 FUK
Holders
33
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 FUKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FukEverythingArmy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-30 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory 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. // The ASCII index of the '0' character is 48. 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) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: fukeverythingarmy.sol pragma solidity ^0.8.0; contract FukEverythingArmy is Ownable, ERC721A{ uint256 public NftsToMint = 10000; uint256 public maxTokensPerWallet = 10; uint256 public maxFreePerWallet = 1; uint256 public mintPrice = 0.005 ether; string private _uri = "https://storage.googleapis.com/fukeverythingarmy/"; bool public saleActivity = true; address public parentCollectionAddress = 0xdebb2D5f818B53e0732444b31d4EFe4AF887026A; string[] public rankNames = ["" ,"jsonprivate2ndclass/", "jsonprivate/", "jsoncorporal/", "jsonsarge/", "jsonbrigardiergeneral/", "jsonmajorgeneral/", "jsonlietutenantgeneral/"]; mapping (uint256 => uint256) public ranks; constructor () ERC721A("FukEverythingArmy","FUK"){ } function mintAdmin (address account, uint256 amount) public onlyOwner{ _safeMint(account , amount); } function claim (uint256 amount) public { require (saleActivity == true , "Not minting yet"); require (totalSupply() + amount <= NftsToMint , "Sold out"); IERC721A parentCollection = IERC721A (parentCollectionAddress); require (amount + balanceOf(msg.sender) <= parentCollection.balanceOf(msg.sender), "You need to be holding fukkers to claim"); _safeMint (msg.sender , amount, ""); } function mint (uint256 amount) public payable{ require (saleActivity == true , "Not minting yet"); require (amount + balanceOf(msg.sender) <= maxTokensPerWallet , "Max 10 per wallet"); require (totalSupply() + amount <= NftsToMint , "Sold out"); if (balanceOf(msg.sender)>0) { require (amount * mintPrice <= msg.value); } else { require ((amount-1) * mintPrice <= msg.value); } _safeMint (msg.sender , amount, ""); } function setSaleActivity(bool issaleon) public onlyOwner{ saleActivity = issaleon; } function setMaxNftsToMint(uint256 maxnftstomint) public onlyOwner{ NftsToMint = maxnftstomint; } function setMaxTokensPerWallet (uint256 tokens) public onlyOwner { maxTokensPerWallet = tokens; } function setMaxFreePerWallet (uint256 maxfree) public onlyOwner { maxFreePerWallet = maxfree; } function setMintPrice (uint256 newprice) public onlyOwner { mintPrice = newprice; } function setUri (string memory uri) public onlyOwner { _uri = uri; } function addRankName (string memory newRank) public onlyOwner{ rankNames.push(newRank); } function editRankName (string memory editedRank, uint256 rankNameIndex) public onlyOwner{ rankNames[rankNameIndex] = editedRank; } function currentOwner () view public { owner(); } function TransferOwnership (address newOwner) public onlyOwner{ _transferOwnership(newOwner); } function getUriRank (uint256 tokenId) public view returns (string memory){ uint256 currentRank = ranks[tokenId]; if (currentRank <= rankNames.length){ return string(abi.encodePacked(_uri, rankNames[currentRank], Strings.toString(tokenId))); } else { return string(abi.encodePacked(_uri, rankNames[rankNames.length-1],Strings.toString(tokenId))); } } function changeRank (uint256 tokenId, uint256 newRankForToken) public onlyOwner{ ranks[tokenId] = newRankForToken; } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override{ if (quantity == 1){ ranks[startTokenId] += 1; } else { for (uint256 i=0; i<quantity; i++) { ranks[startTokenId + i] += 1; } } } function setParentAddress (address newAddress) public onlyOwner{ parentCollectionAddress = newAddress; } function tokenURI(uint256 tokenID) public view virtual override returns (string memory){ require (_exists(tokenID), "This Token does not exist"); return getUriRank(tokenID); } function getBalance() private view returns(uint256) { return address(this).balance; } function withdraw() public onlyOwner { address payable owner = payable(msg.sender); owner.transfer(getBalance()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"NftsToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"TransferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newRank","type":"string"}],"name":"addRankName","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"newRankForToken","type":"uint256"}],"name":"changeRank","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentOwner","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"editedRank","type":"string"},{"internalType":"uint256","name":"rankNameIndex","type":"uint256"}],"name":"editRankName","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getUriRank","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWallet","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parentCollectionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rankNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ranks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleActivity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxfree","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxnftstomint","type":"uint256"}],"name":"setMaxNftsToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"setMaxTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newprice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setParentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"issaleon","type":"bool"}],"name":"setSaleActivity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
612710600955600a80556001600b556611c37937e08000600c5560e06040526031608081815290620023a560a03980516200004391600d91602090910190620002cb565b50600e80546001600160a81b03191674debb2d5f818b53e0732444b31d4efe4af887026a01179055604080516101208101825260006101008201908152815281518083018352601481527f6a736f6e70726976617465326e64636c6173732f0000000000000000000000006020808301919091528083019190915282518084018452600c81526b6a736f6e707269766174652f60a01b818301528284015282518084018452600d81526c6a736f6e636f72706f72616c2f60981b81830152606083015282518084018452600a8152696a736f6e73617267652f60b01b81830152608083015282518084018452601681527f6a736f6e6272696761726469657267656e6572616c2f000000000000000000008183015260a08301528251808401845260118152706a736f6e6d616a6f7267656e6572616c2f60781b8183015260c08301528251808401909352601783527f6a736f6e6c6965747574656e616e7467656e6572616c2f0000000000000000009083015260e0810191909152620001cf90600f9060086200035a565b50348015620001dd57600080fd5b506040518060400160405280601181526020017046756b45766572797468696e6741726d7960781b8152506040518060400160405280600381526020016246554b60e81b8152506200023e620002386200027760201b60201c565b6200027b565b815162000253906003906020850190620002cb565b50805162000269906004906020840190620002cb565b505060006001555062000471565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002d99062000434565b90600052602060002090601f016020900481019282620002fd576000855562000348565b82601f106200031857805160ff191683800117855562000348565b8280016001018555821562000348579182015b82811115620003485782518255916020019190600101906200032b565b5062000356929150620003ba565b5090565b828054828255906000526020600020908101928215620003ac579160200282015b82811115620003ac57825180516200039b918491602090910190620002cb565b50916020019190600101906200037b565b5062000356929150620003d1565b5b80821115620003565760008155600101620003bb565b8082111562000356576000620003e88282620003f2565b50600101620003d1565b508054620004009062000434565b6000825580601f1062000411575050565b601f016020900490600052602060002090810190620004319190620003ba565b50565b600181811c908216806200044957607f821691505b602082108114156200046b57634e487b7160e01b600052602260045260246000fd5b50919050565b611f2480620004816000396000f3fe6080604052600436106102515760003560e01c80639e19b3e511610139578063c87b56dd116100b6578063eed2d7101161007a578063eed2d710146106d6578063eff5300f146106f6578063f2fde38b14610716578063f384abad14610736578063f4a0a52814610756578063fa5afe401461077657600080fd5b8063c87b56dd146105fb578063cfaaa2661461061b578063d0b1129b1461063b578063df927bbe14610660578063e985e9c51461068d57600080fd5b8063aac5d69f116100fd578063aac5d69f1461056c578063b387ef921461058c578063b88d4fde1461059b578063c3a71999146105bb578063c6352c19146105db57600080fd5b80639e19b3e5146104e3578063a03b725114610503578063a0712d6814610523578063a22cb46514610536578063a70273571461055657600080fd5b806342110303116101d25780636d7c4a4b116101965780636d7c4a4b1461043b57806370a082311461045b578063715018a61461047b5780638da5cb5b1461049057806395d89b41146104ae5780639b642de1146104c357600080fd5b806342110303146103b957806342842e0e146103cf578063469132ce146103ef5780636352211e146104055780636817c76c1461042557600080fd5b8063224829fb11610219578063224829fb1461032a57806323b872dd1461034a578063341c0d631461036a578063379607f5146103845780633ccfd60b146103a457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd14610307575b600080fd5b34801561026257600080fd5b50610276610271366004611b41565b610796565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107e8565b6040516102829190611d7b565b3480156102b957600080fd5b506102cd6102c8366004611bf5565b61087a565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004611afc565b6108be565b005b34801561031357600080fd5b50600254600154035b604051908152602001610282565b34801561033657600080fd5b50610305610345366004611b7b565b61095e565b34801561035657600080fd5b50610305610365366004611a1a565b6109ad565b34801561037657600080fd5b50600e546102769060ff1681565b34801561039057600080fd5b5061030561039f366004611bf5565b610b4b565b3480156103b057600080fd5b50610305610cf9565b3480156103c557600080fd5b5061031c60095481565b3480156103db57600080fd5b506103056103ea366004611a1a565b610d2f565b3480156103fb57600080fd5b5061031c600a5481565b34801561041157600080fd5b506102cd610420366004611bf5565b610d4f565b34801561043157600080fd5b5061031c600c5481565b34801561044757600080fd5b50610305610456366004611bf5565b610d5a565b34801561046757600080fd5b5061031c6104763660046119cc565b610d67565b34801561048757600080fd5b50610305610db6565b34801561049c57600080fd5b506000546001600160a01b03166102cd565b3480156104ba57600080fd5b506102a0610dca565b3480156104cf57600080fd5b506103056104de366004611b7b565b610dd9565b3480156104ef57600080fd5b506103056104fe366004611c27565b610df4565b34801561050f57600080fd5b5061030561051e366004611bf5565b610e0e565b610305610531366004611bf5565b610e1b565b34801561054257600080fd5b50610305610551366004611ad2565b610f82565b34801561056257600080fd5b5061031c600b5481565b34801561057857600080fd5b50610305610587366004611bf5565b611018565b34801561059857600080fd5b50005b3480156105a757600080fd5b506103056105b6366004611a56565b611025565b3480156105c757600080fd5b506103056105d6366004611afc565b61106f565b3480156105e757600080fd5b506103056105f6366004611bb0565b611081565b34801561060757600080fd5b506102a0610616366004611bf5565b6110ba565b34801561062757600080fd5b506103056106363660046119cc565b61111a565b34801561064757600080fd5b50600e546102cd9061010090046001600160a01b031681565b34801561066c57600080fd5b5061031c61067b366004611bf5565b60106020526000908152604090205481565b34801561069957600080fd5b506102766106a83660046119e7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106e257600080fd5b506102a06106f1366004611bf5565b61112b565b34801561070257600080fd5b506102a0610711366004611bf5565b6111d7565b34801561072257600080fd5b506103056107313660046119cc565b61126e565b34801561074257600080fd5b50610305610751366004611b26565b6112db565b34801561076257600080fd5b50610305610771366004611bf5565b6112f6565b34801561078257600080fd5b506103056107913660046119cc565b611303565b60006301ffc9a760e01b6001600160e01b0319831614806107c757506380ac58cd60e01b6001600160e01b03198316145b806107e25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107f790611e1c565b80601f016020809104026020016040519081016040528092919081815260200182805461082390611e1c565b80156108705780601f1061084557610100808354040283529160200191610870565b820191906000526020600020905b81548152906001019060200180831161085357829003601f168201915b5050505050905090565b600061088582611333565b6108a2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108c982610d4f565b9050336001600160a01b03821614610902576108e581336106a8565b610902576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61096661135b565b600f805460018101825560009190915281516109a9917f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201906020840190611871565b5050565b60006109b8826113b5565b9050836001600160a01b0316816001600160a01b0316146109eb5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a3857610a1b86336106a8565b610a3857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a5f57604051633a954ecd60e21b815260040160405180910390fd5b610a6c868686600161141d565b8015610a7757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610b025760018401600081815260056020526040902054610b00576001548114610b005760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600e5460ff161515600114610b995760405162461bcd60e51b815260206004820152600f60248201526e139bdd081b5a5b9d1a5b99c81e595d608a1b60448201526064015b60405180910390fd5b60095481610baa6002546001540390565b610bb49190611d8e565b1115610bed5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b90565b600e546040516370a0823160e01b81523360048201526101009091046001600160a01b03169081906370a082319060240160206040518083038186803b158015610c3657600080fd5b505afa158015610c4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6e9190611c0e565b610c7733610d67565b610c819084611d8e565b1115610cdf5760405162461bcd60e51b815260206004820152602760248201527f596f75206e65656420746f20626520686f6c64696e672066756b6b65727320746044820152666f20636c61696d60c81b6064820152608401610b90565b6109a93383604051806020016040528060008152506114a7565b610d0161135b565b33806108fc476040518115909202916000818181858888f193505050501580156109a9573d6000803e3d6000fd5b610d4a83838360405180602001604052806000815250611025565b505050565b60006107e2826113b5565b610d6261135b565b600b55565b60006001600160a01b038216610d90576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610dbe61135b565b610dc8600061150d565b565b6060600480546107f790611e1c565b610de161135b565b80516109a990600d906020840190611871565b610dfc61135b565b60009182526010602052604090912055565b610e1661135b565b600955565b600e5460ff161515600114610e645760405162461bcd60e51b815260206004820152600f60248201526e139bdd081b5a5b9d1a5b99c81e595d608a1b6044820152606401610b90565b600a54610e7033610d67565b610e7a9083611d8e565b1115610ebc5760405162461bcd60e51b815260206004820152601160248201527013585e080c4c081c195c881dd85b1b195d607a1b6044820152606401610b90565b60095481610ecd6002546001540390565b610ed79190611d8e565b1115610f105760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b90565b6000610f1b33610d67565b1115610f405734600c5482610f309190611dba565b1115610f3b57600080fd5b610f65565b600c543490610f50600184611dd9565b610f5a9190611dba565b1115610f6557600080fd5b610f7f3382604051806020016040528060008152506114a7565b50565b6001600160a01b038216331415610fac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102061135b565b600a55565b6110308484846109ad565b6001600160a01b0383163b156110695761104c8484848461155d565b611069576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61107761135b565b6109a98282611655565b61108961135b565b81600f828154811061109d5761109d611eac565b906000526020600020019080519060200190610d4a929190611871565b60606110c582611333565b6111115760405162461bcd60e51b815260206004820152601960248201527f5468697320546f6b656e20646f6573206e6f74206578697374000000000000006044820152606401610b90565b6107e2826111d7565b61112261135b565b610f7f8161150d565b600f818154811061113b57600080fd5b90600052602060002001600091509050805461115690611e1c565b80601f016020809104026020016040519081016040528092919081815260200182805461118290611e1c565b80156111cf5780601f106111a4576101008083540402835291602001916111cf565b820191906000526020600020905b8154815290600101906020018083116111b257829003601f168201915b505050505081565b600081815260106020526040902054600f5460609190811161124457600d600f828154811061120857611208611eac565b9060005260206000200161121b8561166f565b60405160200161122d93929190611d0f565b604051602081830303815290604052915050919050565b600f8054600d919061125890600190611dd9565b8154811061120857611208611eac565b50919050565b61127661135b565b6001600160a01b0381166111225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b90565b6112e361135b565b600e805460ff1916911515919091179055565b6112fe61135b565b600c55565b61130b61135b565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000600154821080156107e2575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610dc85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b90565b60008160015481101561140457600081815260056020526040902054600160e01b8116611402575b806113fb5750600019016000818152600560205260409020546113dd565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b8060011415611450576000828152601060205260408120805460019290611445908490611d8e565b909155506110699050565b60005b818110156114a05760016010600061146b8487611d8e565b815260200190815260200160002060008282546114889190611d8e565b9091555081905061149881611e51565b915050611453565b5050505050565b6114b1838361176d565b6001600160a01b0383163b15610d4a576001548281035b6114db600086838060010194508661155d565b6114f8576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114c85781600154146114a057600080fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611592903390899088908890600401611d3e565b602060405180830381600087803b1580156115ac57600080fd5b505af19250505080156115dc575060408051601f3d908101601f191682019092526115d991810190611b5e565b60015b611637573d80801561160a576040519150601f19603f3d011682016040523d82523d6000602084013e61160f565b606091505b50805161162f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6109a98282604051806020016040528060008152506114a7565b6060816116935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116bd57806116a781611e51565b91506116b69050600a83611da6565b9150611697565b60008167ffffffffffffffff8111156116d8576116d8611ec2565b6040519080825280601f01601f191660200182016040528015611702576020820181803683370190505b5090505b841561164d57611717600183611dd9565b9150611724600a86611e6c565b61172f906030611d8e565b60f81b81838151811061174457611744611eac565b60200101906001600160f81b031916908160001a905350611766600a86611da6565b9450611706565b6001548161178e5760405163b562e8dd60e01b815260040160405180910390fd5b61179b600084838561141d565b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461184a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611812565b508161186857604051622e076360e81b815260040160405180910390fd5b60015550505050565b82805461187d90611e1c565b90600052602060002090601f01602090048101928261189f57600085556118e5565b82601f106118b857805160ff19168380011785556118e5565b828001600101855582156118e5579182015b828111156118e55782518255916020019190600101906118ca565b506118f19291506118f5565b5090565b5b808211156118f157600081556001016118f6565b600067ffffffffffffffff8084111561192557611925611ec2565b604051601f8501601f19908116603f0116810190828211818310171561194d5761194d611ec2565b8160405280935085815286868601111561196657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461199757600080fd5b919050565b8035801515811461199757600080fd5b600082601f8301126119bd57600080fd5b6113fb8383356020850161190a565b6000602082840312156119de57600080fd5b6113fb82611980565b600080604083850312156119fa57600080fd5b611a0383611980565b9150611a1160208401611980565b90509250929050565b600080600060608486031215611a2f57600080fd5b611a3884611980565b9250611a4660208501611980565b9150604084013590509250925092565b60008060008060808587031215611a6c57600080fd5b611a7585611980565b9350611a8360208601611980565b925060408501359150606085013567ffffffffffffffff811115611aa657600080fd5b8501601f81018713611ab757600080fd5b611ac68782356020840161190a565b91505092959194509250565b60008060408385031215611ae557600080fd5b611aee83611980565b9150611a116020840161199c565b60008060408385031215611b0f57600080fd5b611b1883611980565b946020939093013593505050565b600060208284031215611b3857600080fd5b6113fb8261199c565b600060208284031215611b5357600080fd5b81356113fb81611ed8565b600060208284031215611b7057600080fd5b81516113fb81611ed8565b600060208284031215611b8d57600080fd5b813567ffffffffffffffff811115611ba457600080fd5b61164d848285016119ac565b60008060408385031215611bc357600080fd5b823567ffffffffffffffff811115611bda57600080fd5b611be6858286016119ac565b95602094909401359450505050565b600060208284031215611c0757600080fd5b5035919050565b600060208284031215611c2057600080fd5b5051919050565b60008060408385031215611c3a57600080fd5b50508035926020909101359150565b60008151808452611c61816020860160208601611df0565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611c8f57607f831692505b6020808410821415611cb157634e487b7160e01b600052602260045260246000fd5b818015611cc55760018114611cd657611d03565b60ff19861689528489019650611d03565b60008881526020902060005b86811015611cfb5781548b820152908501908301611ce2565b505084890196505b50505050505092915050565b6000611d24611d1e8387611c75565b85611c75565b8351611d34818360208801611df0565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7190830184611c49565b9695505050505050565b6020815260006113fb6020830184611c49565b60008219821115611da157611da1611e80565b500190565b600082611db557611db5611e96565b500490565b6000816000190483118215151615611dd457611dd4611e80565b500290565b600082821015611deb57611deb611e80565b500390565b60005b83811015611e0b578181015183820152602001611df3565b838111156110695750506000910152565b600181811c90821680611e3057607f821691505b6020821081141561126857634e487b7160e01b600052602260045260246000fd5b6000600019821415611e6557611e65611e80565b5060010190565b600082611e7b57611e7b611e96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f7f57600080fdfea26469706673582212201d59dc720b9605996104193a5f5a9328347d62a575a211491e3bcc4d15163dc264736f6c6343000807003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f66756b65766572797468696e6761726d792f
Deployed Bytecode
0x6080604052600436106102515760003560e01c80639e19b3e511610139578063c87b56dd116100b6578063eed2d7101161007a578063eed2d710146106d6578063eff5300f146106f6578063f2fde38b14610716578063f384abad14610736578063f4a0a52814610756578063fa5afe401461077657600080fd5b8063c87b56dd146105fb578063cfaaa2661461061b578063d0b1129b1461063b578063df927bbe14610660578063e985e9c51461068d57600080fd5b8063aac5d69f116100fd578063aac5d69f1461056c578063b387ef921461058c578063b88d4fde1461059b578063c3a71999146105bb578063c6352c19146105db57600080fd5b80639e19b3e5146104e3578063a03b725114610503578063a0712d6814610523578063a22cb46514610536578063a70273571461055657600080fd5b806342110303116101d25780636d7c4a4b116101965780636d7c4a4b1461043b57806370a082311461045b578063715018a61461047b5780638da5cb5b1461049057806395d89b41146104ae5780639b642de1146104c357600080fd5b806342110303146103b957806342842e0e146103cf578063469132ce146103ef5780636352211e146104055780636817c76c1461042557600080fd5b8063224829fb11610219578063224829fb1461032a57806323b872dd1461034a578063341c0d631461036a578063379607f5146103845780633ccfd60b146103a457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd14610307575b600080fd5b34801561026257600080fd5b50610276610271366004611b41565b610796565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107e8565b6040516102829190611d7b565b3480156102b957600080fd5b506102cd6102c8366004611bf5565b61087a565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004611afc565b6108be565b005b34801561031357600080fd5b50600254600154035b604051908152602001610282565b34801561033657600080fd5b50610305610345366004611b7b565b61095e565b34801561035657600080fd5b50610305610365366004611a1a565b6109ad565b34801561037657600080fd5b50600e546102769060ff1681565b34801561039057600080fd5b5061030561039f366004611bf5565b610b4b565b3480156103b057600080fd5b50610305610cf9565b3480156103c557600080fd5b5061031c60095481565b3480156103db57600080fd5b506103056103ea366004611a1a565b610d2f565b3480156103fb57600080fd5b5061031c600a5481565b34801561041157600080fd5b506102cd610420366004611bf5565b610d4f565b34801561043157600080fd5b5061031c600c5481565b34801561044757600080fd5b50610305610456366004611bf5565b610d5a565b34801561046757600080fd5b5061031c6104763660046119cc565b610d67565b34801561048757600080fd5b50610305610db6565b34801561049c57600080fd5b506000546001600160a01b03166102cd565b3480156104ba57600080fd5b506102a0610dca565b3480156104cf57600080fd5b506103056104de366004611b7b565b610dd9565b3480156104ef57600080fd5b506103056104fe366004611c27565b610df4565b34801561050f57600080fd5b5061030561051e366004611bf5565b610e0e565b610305610531366004611bf5565b610e1b565b34801561054257600080fd5b50610305610551366004611ad2565b610f82565b34801561056257600080fd5b5061031c600b5481565b34801561057857600080fd5b50610305610587366004611bf5565b611018565b34801561059857600080fd5b50005b3480156105a757600080fd5b506103056105b6366004611a56565b611025565b3480156105c757600080fd5b506103056105d6366004611afc565b61106f565b3480156105e757600080fd5b506103056105f6366004611bb0565b611081565b34801561060757600080fd5b506102a0610616366004611bf5565b6110ba565b34801561062757600080fd5b506103056106363660046119cc565b61111a565b34801561064757600080fd5b50600e546102cd9061010090046001600160a01b031681565b34801561066c57600080fd5b5061031c61067b366004611bf5565b60106020526000908152604090205481565b34801561069957600080fd5b506102766106a83660046119e7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106e257600080fd5b506102a06106f1366004611bf5565b61112b565b34801561070257600080fd5b506102a0610711366004611bf5565b6111d7565b34801561072257600080fd5b506103056107313660046119cc565b61126e565b34801561074257600080fd5b50610305610751366004611b26565b6112db565b34801561076257600080fd5b50610305610771366004611bf5565b6112f6565b34801561078257600080fd5b506103056107913660046119cc565b611303565b60006301ffc9a760e01b6001600160e01b0319831614806107c757506380ac58cd60e01b6001600160e01b03198316145b806107e25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107f790611e1c565b80601f016020809104026020016040519081016040528092919081815260200182805461082390611e1c565b80156108705780601f1061084557610100808354040283529160200191610870565b820191906000526020600020905b81548152906001019060200180831161085357829003601f168201915b5050505050905090565b600061088582611333565b6108a2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108c982610d4f565b9050336001600160a01b03821614610902576108e581336106a8565b610902576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61096661135b565b600f805460018101825560009190915281516109a9917f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201906020840190611871565b5050565b60006109b8826113b5565b9050836001600160a01b0316816001600160a01b0316146109eb5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a3857610a1b86336106a8565b610a3857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a5f57604051633a954ecd60e21b815260040160405180910390fd5b610a6c868686600161141d565b8015610a7757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610b025760018401600081815260056020526040902054610b00576001548114610b005760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600e5460ff161515600114610b995760405162461bcd60e51b815260206004820152600f60248201526e139bdd081b5a5b9d1a5b99c81e595d608a1b60448201526064015b60405180910390fd5b60095481610baa6002546001540390565b610bb49190611d8e565b1115610bed5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b90565b600e546040516370a0823160e01b81523360048201526101009091046001600160a01b03169081906370a082319060240160206040518083038186803b158015610c3657600080fd5b505afa158015610c4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6e9190611c0e565b610c7733610d67565b610c819084611d8e565b1115610cdf5760405162461bcd60e51b815260206004820152602760248201527f596f75206e65656420746f20626520686f6c64696e672066756b6b65727320746044820152666f20636c61696d60c81b6064820152608401610b90565b6109a93383604051806020016040528060008152506114a7565b610d0161135b565b33806108fc476040518115909202916000818181858888f193505050501580156109a9573d6000803e3d6000fd5b610d4a83838360405180602001604052806000815250611025565b505050565b60006107e2826113b5565b610d6261135b565b600b55565b60006001600160a01b038216610d90576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610dbe61135b565b610dc8600061150d565b565b6060600480546107f790611e1c565b610de161135b565b80516109a990600d906020840190611871565b610dfc61135b565b60009182526010602052604090912055565b610e1661135b565b600955565b600e5460ff161515600114610e645760405162461bcd60e51b815260206004820152600f60248201526e139bdd081b5a5b9d1a5b99c81e595d608a1b6044820152606401610b90565b600a54610e7033610d67565b610e7a9083611d8e565b1115610ebc5760405162461bcd60e51b815260206004820152601160248201527013585e080c4c081c195c881dd85b1b195d607a1b6044820152606401610b90565b60095481610ecd6002546001540390565b610ed79190611d8e565b1115610f105760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b90565b6000610f1b33610d67565b1115610f405734600c5482610f309190611dba565b1115610f3b57600080fd5b610f65565b600c543490610f50600184611dd9565b610f5a9190611dba565b1115610f6557600080fd5b610f7f3382604051806020016040528060008152506114a7565b50565b6001600160a01b038216331415610fac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102061135b565b600a55565b6110308484846109ad565b6001600160a01b0383163b156110695761104c8484848461155d565b611069576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61107761135b565b6109a98282611655565b61108961135b565b81600f828154811061109d5761109d611eac565b906000526020600020019080519060200190610d4a929190611871565b60606110c582611333565b6111115760405162461bcd60e51b815260206004820152601960248201527f5468697320546f6b656e20646f6573206e6f74206578697374000000000000006044820152606401610b90565b6107e2826111d7565b61112261135b565b610f7f8161150d565b600f818154811061113b57600080fd5b90600052602060002001600091509050805461115690611e1c565b80601f016020809104026020016040519081016040528092919081815260200182805461118290611e1c565b80156111cf5780601f106111a4576101008083540402835291602001916111cf565b820191906000526020600020905b8154815290600101906020018083116111b257829003601f168201915b505050505081565b600081815260106020526040902054600f5460609190811161124457600d600f828154811061120857611208611eac565b9060005260206000200161121b8561166f565b60405160200161122d93929190611d0f565b604051602081830303815290604052915050919050565b600f8054600d919061125890600190611dd9565b8154811061120857611208611eac565b50919050565b61127661135b565b6001600160a01b0381166111225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b90565b6112e361135b565b600e805460ff1916911515919091179055565b6112fe61135b565b600c55565b61130b61135b565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000600154821080156107e2575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610dc85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b90565b60008160015481101561140457600081815260056020526040902054600160e01b8116611402575b806113fb5750600019016000818152600560205260409020546113dd565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b8060011415611450576000828152601060205260408120805460019290611445908490611d8e565b909155506110699050565b60005b818110156114a05760016010600061146b8487611d8e565b815260200190815260200160002060008282546114889190611d8e565b9091555081905061149881611e51565b915050611453565b5050505050565b6114b1838361176d565b6001600160a01b0383163b15610d4a576001548281035b6114db600086838060010194508661155d565b6114f8576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114c85781600154146114a057600080fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611592903390899088908890600401611d3e565b602060405180830381600087803b1580156115ac57600080fd5b505af19250505080156115dc575060408051601f3d908101601f191682019092526115d991810190611b5e565b60015b611637573d80801561160a576040519150601f19603f3d011682016040523d82523d6000602084013e61160f565b606091505b50805161162f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6109a98282604051806020016040528060008152506114a7565b6060816116935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116bd57806116a781611e51565b91506116b69050600a83611da6565b9150611697565b60008167ffffffffffffffff8111156116d8576116d8611ec2565b6040519080825280601f01601f191660200182016040528015611702576020820181803683370190505b5090505b841561164d57611717600183611dd9565b9150611724600a86611e6c565b61172f906030611d8e565b60f81b81838151811061174457611744611eac565b60200101906001600160f81b031916908160001a905350611766600a86611da6565b9450611706565b6001548161178e5760405163b562e8dd60e01b815260040160405180910390fd5b61179b600084838561141d565b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461184a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611812565b508161186857604051622e076360e81b815260040160405180910390fd5b60015550505050565b82805461187d90611e1c565b90600052602060002090601f01602090048101928261189f57600085556118e5565b82601f106118b857805160ff19168380011785556118e5565b828001600101855582156118e5579182015b828111156118e55782518255916020019190600101906118ca565b506118f19291506118f5565b5090565b5b808211156118f157600081556001016118f6565b600067ffffffffffffffff8084111561192557611925611ec2565b604051601f8501601f19908116603f0116810190828211818310171561194d5761194d611ec2565b8160405280935085815286868601111561196657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461199757600080fd5b919050565b8035801515811461199757600080fd5b600082601f8301126119bd57600080fd5b6113fb8383356020850161190a565b6000602082840312156119de57600080fd5b6113fb82611980565b600080604083850312156119fa57600080fd5b611a0383611980565b9150611a1160208401611980565b90509250929050565b600080600060608486031215611a2f57600080fd5b611a3884611980565b9250611a4660208501611980565b9150604084013590509250925092565b60008060008060808587031215611a6c57600080fd5b611a7585611980565b9350611a8360208601611980565b925060408501359150606085013567ffffffffffffffff811115611aa657600080fd5b8501601f81018713611ab757600080fd5b611ac68782356020840161190a565b91505092959194509250565b60008060408385031215611ae557600080fd5b611aee83611980565b9150611a116020840161199c565b60008060408385031215611b0f57600080fd5b611b1883611980565b946020939093013593505050565b600060208284031215611b3857600080fd5b6113fb8261199c565b600060208284031215611b5357600080fd5b81356113fb81611ed8565b600060208284031215611b7057600080fd5b81516113fb81611ed8565b600060208284031215611b8d57600080fd5b813567ffffffffffffffff811115611ba457600080fd5b61164d848285016119ac565b60008060408385031215611bc357600080fd5b823567ffffffffffffffff811115611bda57600080fd5b611be6858286016119ac565b95602094909401359450505050565b600060208284031215611c0757600080fd5b5035919050565b600060208284031215611c2057600080fd5b5051919050565b60008060408385031215611c3a57600080fd5b50508035926020909101359150565b60008151808452611c61816020860160208601611df0565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611c8f57607f831692505b6020808410821415611cb157634e487b7160e01b600052602260045260246000fd5b818015611cc55760018114611cd657611d03565b60ff19861689528489019650611d03565b60008881526020902060005b86811015611cfb5781548b820152908501908301611ce2565b505084890196505b50505050505092915050565b6000611d24611d1e8387611c75565b85611c75565b8351611d34818360208801611df0565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7190830184611c49565b9695505050505050565b6020815260006113fb6020830184611c49565b60008219821115611da157611da1611e80565b500190565b600082611db557611db5611e96565b500490565b6000816000190483118215151615611dd457611dd4611e80565b500290565b600082821015611deb57611deb611e80565b500390565b60005b83811015611e0b578181015183820152602001611df3565b838111156110695750506000910152565b600181811c90821680611e3057607f821691505b6020821081141561126857634e487b7160e01b600052602260045260246000fd5b6000600019821415611e6557611e65611e80565b5060010190565b600082611e7b57611e7b611e96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f7f57600080fdfea26469706673582212201d59dc720b9605996104193a5f5a9328347d62a575a211491e3bcc4d15163dc264736f6c63430008070033
Deployed Bytecode Sourcemap
57529:4536:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21051:639;;;;;;;;;;-1:-1:-1;21051:639:0;;;;;:::i;:::-;;:::i;:::-;;;7802:14:1;;7795:22;7777:41;;7765:2;7750:18;21051:639:0;;;;;;;;21953:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28436:218::-;;;;;;;;;;-1:-1:-1;28436:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7100:32:1;;;7082:51;;7070:2;7055:18;28436:218:0;6936:203:1;27877:400:0;;;;;;;;;;-1:-1:-1;27877:400:0;;;;;:::i;:::-;;:::i;:::-;;17704:323;;;;;;;;;;-1:-1:-1;17978:12:0;;17962:13;;:28;17704:323;;;10755:25:1;;;10743:2;10728:18;17704:323:0;10609:177:1;60041:103:0;;;;;;;;;;-1:-1:-1;60041:103:0;;;;;:::i;:::-;;:::i;32143:2817::-;;;;;;;;;;-1:-1:-1;32143:2817:0;;;;;:::i;:::-;;:::i;57834:31::-;;;;;;;;;;-1:-1:-1;57834:31:0;;;;;;;;58398:435;;;;;;;;;;-1:-1:-1;58398:435:0;;;;;:::i;:::-;;:::i;61924:138::-;;;;;;;;;;;;;:::i;57582:33::-;;;;;;;;;;;;;;;;35056:185;;;;;;;;;;-1:-1:-1;35056:185:0;;;;;:::i;:::-;;:::i;57622:38::-;;;;;;;;;;;;;;;;23346:152;;;;;;;;;;-1:-1:-1;23346:152:0;;;;;:::i;:::-;;:::i;57709:38::-;;;;;;;;;;;;;;;;59729:109;;;;;;;;;;-1:-1:-1;59729:109:0;;;;;:::i;:::-;;:::i;18888:233::-;;;;;;;;;;-1:-1:-1;18888:233:0;;;;;:::i;:::-;;:::i;56639:103::-;;;;;;;;;;;;;:::i;55991:87::-;;;;;;;;;;-1:-1:-1;56037:7:0;56064:6;-1:-1:-1;;;;;56064:6:0;55991:87;;22129:104;;;;;;;;;;;;;:::i;59951:82::-;;;;;;;;;;-1:-1:-1;59951:82:0;;;;;:::i;:::-;;:::i;60943:130::-;;;;;;;;;;-1:-1:-1;60943:130:0;;;;;:::i;:::-;;:::i;59490:110::-;;;;;;;;;;-1:-1:-1;59490:110:0;;;;;:::i;:::-;;:::i;58845:523::-;;;;;;:::i;:::-;;:::i;28994:308::-;;;;;;;;;;-1:-1:-1;28994:308:0;;;;;:::i;:::-;;:::i;57667:35::-;;;;;;;;;;;;;;;;59610:111;;;;;;;;;;-1:-1:-1;59610:111:0;;;;;:::i;:::-;;:::i;60304:64::-;;;;;;;;;;;27877:400;35839:399;;;;;;;;;;-1:-1:-1;35839:399:0;;;;;:::i;:::-;;:::i;58275:115::-;;;;;;;;;;-1:-1:-1;58275:115:0;;;;;:::i;:::-;;:::i;60152:144::-;;;;;;;;;;-1:-1:-1;60152:144:0;;;;;:::i;:::-;;:::i;61611:198::-;;;;;;;;;;-1:-1:-1;61611:198:0;;;;;:::i;:::-;;:::i;60376:109::-;;;;;;;;;;-1:-1:-1;60376:109:0;;;;;:::i;:::-;;:::i;57872:83::-;;;;;;;;;;-1:-1:-1;57872:83:0;;;;;;;-1:-1:-1;;;;;57872:83:0;;;58148:41;;;;;;;;;;-1:-1:-1;58148:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;29459:164;;;;;;;;;;-1:-1:-1;29459:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29580:25:0;;;29556:4;29580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29459:164;57964:177;;;;;;;;;;-1:-1:-1;57964:177:0;;;;;:::i;:::-;;:::i;60493:442::-;;;;;;;;;;-1:-1:-1;60493:442:0;;;;;:::i;:::-;;:::i;56897:201::-;;;;;;;;;;-1:-1:-1;56897:201:0;;;;;:::i;:::-;;:::i;59384:98::-;;;;;;;;;;-1:-1:-1;59384:98:0;;;;;:::i;:::-;;:::i;59846:97::-;;;;;;;;;;-1:-1:-1;59846:97:0;;;;;:::i;:::-;;:::i;61485:118::-;;;;;;;;;;-1:-1:-1;61485:118:0;;;;;:::i;:::-;;:::i;21051:639::-;21136:4;-1:-1:-1;;;;;;;;;21460:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21537:25:0;;;21460:102;:179;;;-1:-1:-1;;;;;;;;;;21614:25:0;;;21460:179;21440:199;21051:639;-1:-1:-1;;21051:639:0:o;21953:100::-;22007:13;22040:5;22033:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21953:100;:::o;28436:218::-;28512:7;28537:16;28545:7;28537;:16::i;:::-;28532:64;;28562:34;;-1:-1:-1;;;28562:34:0;;;;;;;;;;;28532:64;-1:-1:-1;28616:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28616:30:0;;28436:218::o;27877:400::-;27958:13;27974:16;27982:7;27974;:16::i;:::-;27958:32;-1:-1:-1;51734:10:0;-1:-1:-1;;;;;28007:28:0;;;28003:175;;28055:44;28072:5;51734:10;29459:164;:::i;28055:44::-;28050:128;;28127:35;;-1:-1:-1;;;28127:35:0;;;;;;;;;;;28050:128;28190:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28190:35:0;-1:-1:-1;;;;;28190:35:0;;;;;;;;;28241:28;;28190:24;;28241:28;;;;;;;27947:330;27877:400;;:::o;60041:103::-;55877:13;:11;:13::i;:::-;60113:9:::1;:23:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;60113:23:0;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;;60041:103:::0;:::o;32143:2817::-;32277:27;32307;32326:7;32307:18;:27::i;:::-;32277:57;;32392:4;-1:-1:-1;;;;;32351:45:0;32367:19;-1:-1:-1;;;;;32351:45:0;;32347:86;;32405:28;;-1:-1:-1;;;32405:28:0;;;;;;;;;;;32347:86;32447:27;31257:24;;;:15;:24;;;;;31479:26;;51734:10;30882:30;;;-1:-1:-1;;;;;30575:28:0;;30860:20;;;30857:56;32633:180;;32726:43;32743:4;51734:10;29459:164;:::i;32726:43::-;32721:92;;32778:35;;-1:-1:-1;;;32778:35:0;;;;;;;;;;;32721:92;-1:-1:-1;;;;;32830:16:0;;32826:52;;32855:23;;-1:-1:-1;;;32855:23:0;;;;;;;;;;;32826:52;32891:43;32913:4;32919:2;32923:7;32932:1;32891:21;:43::i;:::-;33027:15;33024:160;;;33167:1;33146:19;33139:30;33024:160;-1:-1:-1;;;;;33564:24:0;;;;;;;:18;:24;;;;;;33562:26;;-1:-1:-1;;33562:26:0;;;33633:22;;;;;;;;;33631:24;;-1:-1:-1;33631:24:0;;;26735:11;26710:23;26706:41;26693:63;-1:-1:-1;;;26693:63:0;33926:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;34221:47:0;;34217:627;;34326:1;34316:11;;34294:19;34449:30;;;:17;:30;;;;;;34445:384;;34587:13;;34572:11;:28;34568:242;;34734:30;;;;:17;:30;;;;;:52;;;34568:242;34275:569;34217:627;34891:7;34887:2;-1:-1:-1;;;;;34872:27:0;34881:4;-1:-1:-1;;;;;34872:27:0;;;;;;;;;;;32266:2694;;;32143:2817;;;:::o;58398:435::-;58457:12;;;;:20;;:12;:20;58448:50;;;;-1:-1:-1;;;58448:50:0;;9416:2:1;58448:50:0;;;9398:21:1;9455:2;9435:18;;;9428:30;-1:-1:-1;;;9474:18:1;;;9467:45;9529:18;;58448:50:0;;;;;;;;;58544:10;;58534:6;58518:13;17978:12;;17962:13;;:28;;17704:323;58518:13;:22;;;;:::i;:::-;:36;;58509:59;;;;-1:-1:-1;;;58509:59:0;;10475:2:1;58509:59:0;;;10457:21:1;10514:1;10494:18;;;10487:29;-1:-1:-1;;;10532:18:1;;;10525:38;10580:18;;58509:59:0;10273:331:1;58509:59:0;58617:23;;58695:38;;-1:-1:-1;;;58695:38:0;;58722:10;58695:38;;;7082:51:1;58617:23:0;;;;-1:-1:-1;;;;;58617:23:0;;;;58695:26;;7055:18:1;;58695:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58670:21;58680:10;58670:9;:21::i;:::-;58661:30;;:6;:30;:::i;:::-;:72;;58652:125;;;;-1:-1:-1;;;58652:125:0;;8255:2:1;58652:125:0;;;8237:21:1;8294:2;8274:18;;;8267:30;8333:34;8313:18;;;8306:62;-1:-1:-1;;;8384:18:1;;;8377:37;8431:19;;58652:125:0;8053:403:1;58652:125:0;58790:35;58801:10;58814:6;58790:35;;;;;;;;;;;;:9;:35::i;61924:138::-;55877:13;:11;:13::i;:::-;62004:10:::1;::::0;62026:28:::1;61887:21:::0;62026:28:::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;35056:185:::0;35194:39;35211:4;35217:2;35221:7;35194:39;;;;;;;;;;;;:16;:39::i;:::-;35056:185;;;:::o;23346:152::-;23418:7;23461:27;23480:7;23461:18;:27::i;59729:109::-;55877:13;:11;:13::i;:::-;59804:16:::1;:26:::0;59729:109::o;18888:233::-;18960:7;-1:-1:-1;;;;;18984:19:0;;18980:60;;19012:28;;-1:-1:-1;;;19012:28:0;;;;;;;;;;;18980:60;-1:-1:-1;;;;;;19058:25:0;;;;;:18;:25;;;;;;13047:13;19058:55;;18888:233::o;56639:103::-;55877:13;:11;:13::i;:::-;56704:30:::1;56731:1;56704:18;:30::i;:::-;56639:103::o:0;22129:104::-;22185:13;22218:7;22211:14;;;;;:::i;59951:82::-;55877:13;:11;:13::i;:::-;60015:10;;::::1;::::0;:4:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;60943:130::-:0;55877:13;:11;:13::i;:::-;61033:14:::1;::::0;;;:5:::1;:14;::::0;;;;;:32;60943:130::o;59490:110::-;55877:13;:11;:13::i;:::-;59566:10:::1;:26:::0;59490:110::o;58845:523::-;58910:12;;;;:20;;:12;:20;58901:50;;;;-1:-1:-1;;;58901:50:0;;9416:2:1;58901:50:0;;;9398:21:1;9455:2;9435:18;;;9428:30;-1:-1:-1;;;9474:18:1;;;9467:45;9529:18;;58901:50:0;9214:339:1;58901:50:0;59005:18;;58980:21;58990:10;58980:9;:21::i;:::-;58971:30;;:6;:30;:::i;:::-;:52;;58962:84;;;;-1:-1:-1;;;58962:84:0;;9070:2:1;58962:84:0;;;9052:21:1;9109:2;9089:18;;;9082:30;-1:-1:-1;;;9128:18:1;;;9121:47;9185:18;;58962:84:0;8868:341:1;58962:84:0;59092:10;;59082:6;59066:13;17978:12;;17962:13;;:28;;17704:323;59066:13;:22;;;;:::i;:::-;:36;;59057:59;;;;-1:-1:-1;;;59057:59:0;;10475:2:1;59057:59:0;;;10457:21:1;10514:1;10494:18;;;10487:29;-1:-1:-1;;;10532:18:1;;;10525:38;10580:18;;59057:59:0;10273:331:1;59057:59:0;59155:1;59133:21;59143:10;59133:9;:21::i;:::-;:23;59129:186;;;59204:9;59191;;59182:6;:18;;;;:::i;:::-;:31;;59173:41;;;;;;59129:186;;;59280:9;;59293;;59268:8;59275:1;59268:6;:8;:::i;:::-;59267:22;;;;:::i;:::-;:35;;59258:45;;;;;;59325:35;59336:10;59349:6;59325:35;;;;;;;;;;;;:9;:35::i;:::-;58845:523;:::o;28994:308::-;-1:-1:-1;;;;;29093:31:0;;51734:10;29093:31;29089:61;;;29133:17;;-1:-1:-1;;;29133:17:0;;;;;;;;;;;29089:61;51734:10;29163:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29163:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29163:60:0;;;;;;;;;;29239:55;;7777:41:1;;;29163:49:0;;51734:10;29239:55;;7750:18:1;29239:55:0;;;;;;;28994:308;;:::o;59610:111::-;55877:13;:11;:13::i;:::-;59686:18:::1;:27:::0;59610:111::o;35839:399::-;36006:31;36019:4;36025:2;36029:7;36006:12;:31::i;:::-;-1:-1:-1;;;;;36052:14:0;;;:19;36048:183;;36091:56;36122:4;36128:2;36132:7;36141:5;36091:30;:56::i;:::-;36086:145;;36175:40;;-1:-1:-1;;;36175:40:0;;;;;;;;;;;36086:145;35839:399;;;;:::o;58275:115::-;55877:13;:11;:13::i;:::-;58355:27:::1;58365:7;58375:6;58355:9;:27::i;60152:144::-:0;55877:13;:11;:13::i;:::-;60278:10:::1;60251:9;60261:13;60251:24;;;;;;;;:::i;:::-;;;;;;;;:37;;;;;;;;;;;;:::i;61611:198::-:0;61684:13;61718:16;61726:7;61718;:16::i;:::-;61709:55;;;;-1:-1:-1;;;61709:55:0;;10121:2:1;61709:55:0;;;10103:21:1;10160:2;10140:18;;;10133:30;10199:27;10179:18;;;10172:55;10244:18;;61709:55:0;9919:349:1;61709:55:0;61782:19;61793:7;61782:10;:19::i;60376:109::-;55877:13;:11;:13::i;:::-;60449:28:::1;60468:8;60449:18;:28::i;57964:177::-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60493:442::-;60577:19;60599:14;;;:5;:14;;;;;;60643:9;:16;60552:13;;60599:14;60628:31;;60624:302;;60720:4;60726:9;60736:11;60726:22;;;;;;;;:::i;:::-;;;;;;;;60750:25;60767:7;60750:16;:25::i;:::-;60703:73;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60689:88;;;60493:442;;;:::o;60624:302::-;60857:9;60867:16;;60851:4;;60857:9;60867:18;;60884:1;;60867:18;:::i;:::-;60857:29;;;;;;;;:::i;60624:302::-;60566:369;60493:442;;;:::o;56897:201::-;55877:13;:11;:13::i;:::-;-1:-1:-1;;;;;56986:22:0;::::1;56978:73;;;::::0;-1:-1:-1;;;56978:73:0;;8663:2:1;56978:73:0::1;::::0;::::1;8645:21:1::0;8702:2;8682:18;;;8675:30;8741:34;8721:18;;;8714:62;-1:-1:-1;;;8792:18:1;;;8785:36;8838:19;;56978:73:0::1;8461:402:1::0;59384:98:0;55877:13;:11;:13::i;:::-;59451:12:::1;:23:::0;;-1:-1:-1;;59451:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59384:98::o;59846:97::-;55877:13;:11;:13::i;:::-;59915:9:::1;:20:::0;59846:97::o;61485:118::-;55877:13;:11;:13::i;:::-;61559:23:::1;:36:::0;;-1:-1:-1;;;;;61559:36:0;;::::1;;;-1:-1:-1::0;;;;;;61559:36:0;;::::1;::::0;;;::::1;::::0;;61485:118::o;29881:282::-;29946:4;30036:13;;30026:7;:23;29983:153;;;;-1:-1:-1;;30087:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30087:44:0;:49;;29881:282::o;56156:132::-;56037:7;56064:6;-1:-1:-1;;;;;56064:6:0;51734:10;56220:23;56212:68;;;;-1:-1:-1;;;56212:68:0;;9760:2:1;56212:68:0;;;9742:21:1;;;9779:18;;;9772:30;9838:34;9818:18;;;9811:62;9890:18;;56212:68:0;9558:356:1;24501:1275:0;24568:7;24603;24705:13;;24698:4;:20;24694:1015;;;24743:14;24760:23;;;:17;:23;;;;;;-1:-1:-1;;;24849:24:0;;24845:845;;25514:113;25521:11;25514:113;;-1:-1:-1;;;25592:6:0;25574:25;;;;:17;:25;;;;;;25514:113;;;25660:6;24501:1275;-1:-1:-1;;;24501:1275:0:o;24845:845::-;24720:989;24694:1015;25737:31;;-1:-1:-1;;;25737:31:0;;;;;;;;;;;61083:394;61264:8;61276:1;61264:13;61260:210;;;61293:19;;;;:5;:19;;;;;:24;;61316:1;;61293:19;:24;;61316:1;;61293:24;:::i;:::-;;;;-1:-1:-1;61260:210:0;;-1:-1:-1;61260:210:0;;61366:9;61361:98;61381:8;61379:1;:10;61361:98;;;61442:1;61415:5;:23;61421:16;61436:1;61421:12;:16;:::i;:::-;61415:23;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;61391:3:0;;-1:-1:-1;61391:3:0;;;:::i;:::-;;;;61361:98;;;;61083:394;;;;:::o;44706:689::-;44837:19;44843:2;44847:8;44837:5;:19::i;:::-;-1:-1:-1;;;;;44898:14:0;;;:19;44894:483;;44952:13;;45000:14;;;45033:233;45064:62;45103:1;45107:2;45111:7;;;;;;45120:5;45064:30;:62::i;:::-;45059:167;;45162:40;;-1:-1:-1;;;45162:40:0;;;;;;;;;;;45059:167;45261:3;45253:5;:11;45033:233;;45348:3;45331:13;;:20;45327:34;;45353:8;;;57258:191;57332:16;57351:6;;-1:-1:-1;;;;;57368:17:0;;;-1:-1:-1;;;;;;57368:17:0;;;;;;57401:40;;57351:6;;;;;;;57401:40;;57332:16;57401:40;57321:128;57258:191;:::o;38322:716::-;38506:88;;-1:-1:-1;;;38506:88:0;;38485:4;;-1:-1:-1;;;;;38506:45:0;;;;;:88;;51734:10;;38573:4;;38579:7;;38588:5;;38506:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38506:88:0;;;;;;;;-1:-1:-1;;38506:88:0;;;;;;;;;;;;:::i;:::-;;;38502:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38789:13:0;;38785:235;;38835:40;;-1:-1:-1;;;38835:40:0;;;;;;;;;;;38785:235;38978:6;38972:13;38963:6;38959:2;38955:15;38948:38;38502:529;-1:-1:-1;;;;;;38665:64:0;-1:-1:-1;;;38665:64:0;;-1:-1:-1;38502:529:0;38322:716;;;;;;:::o;45479:112::-;45556:27;45566:2;45570:8;45556:27;;;;;;;;;;;;:9;:27::i;469:723::-;525:13;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;39500:2454;39596:13;;39624;39620:44;;39646:18;;-1:-1:-1;;;39646:18:0;;;;;;;;;;;39620:44;39677:61;39707:1;39711:2;39715:12;39729:8;39677:21;:61::i;:::-;-1:-1:-1;;;;;40152:22:0;;;;;;:18;:22;;;;13185:2;40152:22;;;:71;;40190:32;40178:45;;40152:71;;;40466:31;;;:17;:31;;;;;-1:-1:-1;27166:15:0;;27140:24;27136:46;26735:11;26710:23;26706:41;26703:52;26693:63;;40466:173;;40701:23;;;;40466:31;;40152:22;;41200:25;40152:22;;41053:335;41468:1;41454:12;41450:20;41408:346;41509:3;41500:7;41497:16;41408:346;;41727:7;41717:8;41714:1;41687:25;41684:1;41681;41676:59;41562:1;41549:15;41408:346;;;-1:-1:-1;41787:13:0;41783:45;;41809:19;;-1:-1:-1;;;41809:19:0;;;;;;;;;;;41783:45;41845:13;:19;-1:-1:-1;35056:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:221;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:55;;1107:1;1104;1097:12;1056:55;1129:79;1204:3;1195:6;1182:20;1175:4;1167:6;1163:17;1129:79;:::i;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;1410:260::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;;1626:38;1660:2;1649:9;1645:18;1626:38;:::i;:::-;1616:48;;1410:260;;;;;:::o;1675:328::-;1752:6;1760;1768;1821:2;1809:9;1800:7;1796:23;1792:32;1789:52;;;1837:1;1834;1827:12;1789:52;1860:29;1879:9;1860:29;:::i;:::-;1850:39;;1908:38;1942:2;1931:9;1927:18;1908:38;:::i;:::-;1898:48;;1993:2;1982:9;1978:18;1965:32;1955:42;;1675:328;;;;;:::o;2008:666::-;2103:6;2111;2119;2127;2180:3;2168:9;2159:7;2155:23;2151:33;2148:53;;;2197:1;2194;2187:12;2148:53;2220:29;2239:9;2220:29;:::i;:::-;2210:39;;2268:38;2302:2;2291:9;2287:18;2268:38;:::i;:::-;2258:48;;2353:2;2342:9;2338:18;2325:32;2315:42;;2408:2;2397:9;2393:18;2380:32;2435:18;2427:6;2424:30;2421:50;;;2467:1;2464;2457:12;2421:50;2490:22;;2543:4;2535:13;;2531:27;-1:-1:-1;2521:55:1;;2572:1;2569;2562:12;2521:55;2595:73;2660:7;2655:2;2642:16;2637:2;2633;2629:11;2595:73;:::i;:::-;2585:83;;;2008:666;;;;;;;:::o;2679:254::-;2744:6;2752;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;:::-;2834:39;;2892:35;2923:2;2912:9;2908:18;2892:35;:::i;2938:254::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3106:29;3125:9;3106:29;:::i;:::-;3096:39;3182:2;3167:18;;;;3154:32;;-1:-1:-1;;;2938:254:1:o;3197:180::-;3253:6;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;3345:26;3361:9;3345:26;:::i;3382:245::-;3440:6;3493:2;3481:9;3472:7;3468:23;3464:32;3461:52;;;3509:1;3506;3499:12;3461:52;3548:9;3535:23;3567:30;3591:5;3567:30;:::i;3632:249::-;3701:6;3754:2;3742:9;3733:7;3729:23;3725:32;3722:52;;;3770:1;3767;3760:12;3722:52;3802:9;3796:16;3821:30;3845:5;3821:30;:::i;3886:322::-;3955:6;4008:2;3996:9;3987:7;3983:23;3979:32;3976:52;;;4024:1;4021;4014:12;3976:52;4064:9;4051:23;4097:18;4089:6;4086:30;4083:50;;;4129:1;4126;4119:12;4083:50;4152;4194:7;4185:6;4174:9;4170:22;4152:50;:::i;4213:390::-;4291:6;4299;4352:2;4340:9;4331:7;4327:23;4323:32;4320:52;;;4368:1;4365;4358:12;4320:52;4408:9;4395:23;4441:18;4433:6;4430:30;4427:50;;;4473:1;4470;4463:12;4427:50;4496;4538:7;4529:6;4518:9;4514:22;4496:50;:::i;:::-;4486:60;4593:2;4578:18;;;;4565:32;;-1:-1:-1;;;;4213:390:1:o;4608:180::-;4667:6;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;-1:-1:-1;4759:23:1;;4608:180;-1:-1:-1;4608:180:1:o;4793:184::-;4863:6;4916:2;4904:9;4895:7;4891:23;4887:32;4884:52;;;4932:1;4929;4922:12;4884:52;-1:-1:-1;4955:16:1;;4793:184;-1:-1:-1;4793:184:1:o;4982:248::-;5050:6;5058;5111:2;5099:9;5090:7;5086:23;5082:32;5079:52;;;5127:1;5124;5117:12;5079:52;-1:-1:-1;;5150:23:1;;;5220:2;5205:18;;;5192:32;;-1:-1:-1;4982:248:1:o;5235:257::-;5276:3;5314:5;5308:12;5341:6;5336:3;5329:19;5357:63;5413:6;5406:4;5401:3;5397:14;5390:4;5383:5;5379:16;5357:63;:::i;:::-;5474:2;5453:15;-1:-1:-1;;5449:29:1;5440:39;;;;5481:4;5436:50;;5235:257;-1:-1:-1;;5235:257:1:o;5497:973::-;5582:12;;5547:3;;5637:1;5657:18;;;;5710;;;;5737:61;;5791:4;5783:6;5779:17;5769:27;;5737:61;5817:2;5865;5857:6;5854:14;5834:18;5831:38;5828:161;;;5911:10;5906:3;5902:20;5899:1;5892:31;5946:4;5943:1;5936:15;5974:4;5971:1;5964:15;5828:161;6005:18;6032:104;;;;6150:1;6145:319;;;;5998:466;;6032:104;-1:-1:-1;;6065:24:1;;6053:37;;6110:16;;;;-1:-1:-1;6032:104:1;;6145:319;10864:1;10857:14;;;10901:4;10888:18;;6239:1;6253:165;6267:6;6264:1;6261:13;6253:165;;;6345:14;;6332:11;;;6325:35;6388:16;;;;6282:10;;6253:165;;;6257:3;;6447:6;6442:3;6438:16;6431:23;;5998:466;;;;;;;5497:973;;;;:::o;6475:456::-;6696:3;6724:73;6758:38;6792:3;6784:6;6758:38;:::i;:::-;6750:6;6724:73;:::i;:::-;6826:6;6820:13;6842:52;6887:6;6883:2;6876:4;6868:6;6864:17;6842:52;:::i;:::-;6910:15;;6475:456;-1:-1:-1;;;;;6475:456:1:o;7144:488::-;-1:-1:-1;;;;;7413:15:1;;;7395:34;;7465:15;;7460:2;7445:18;;7438:43;7512:2;7497:18;;7490:34;;;7560:3;7555:2;7540:18;;7533:31;;;7338:4;;7581:45;;7606:19;;7598:6;7581:45;:::i;:::-;7573:53;7144:488;-1:-1:-1;;;;;;7144:488:1:o;7829:219::-;7978:2;7967:9;7960:21;7941:4;7998:44;8038:2;8027:9;8023:18;8015:6;7998:44;:::i;10917:128::-;10957:3;10988:1;10984:6;10981:1;10978:13;10975:39;;;10994:18;;:::i;:::-;-1:-1:-1;11030:9:1;;10917:128::o;11050:120::-;11090:1;11116;11106:35;;11121:18;;:::i;:::-;-1:-1:-1;11155:9:1;;11050:120::o;11175:168::-;11215:7;11281:1;11277;11273:6;11269:14;11266:1;11263:21;11258:1;11251:9;11244:17;11240:45;11237:71;;;11288:18;;:::i;:::-;-1:-1:-1;11328:9:1;;11175:168::o;11348:125::-;11388:4;11416:1;11413;11410:8;11407:34;;;11421:18;;:::i;:::-;-1:-1:-1;11458:9:1;;11348:125::o;11478:258::-;11550:1;11560:113;11574:6;11571:1;11568:13;11560:113;;;11650:11;;;11644:18;11631:11;;;11624:39;11596:2;11589:10;11560:113;;;11691:6;11688:1;11685:13;11682:48;;;-1:-1:-1;;11726:1:1;11708:16;;11701:27;11478:258::o;11741:380::-;11820:1;11816:12;;;;11863;;;11884:61;;11938:4;11930:6;11926:17;11916:27;;11884:61;11991:2;11983:6;11980:14;11960:18;11957:38;11954:161;;;12037:10;12032:3;12028:20;12025:1;12018:31;12072:4;12069:1;12062:15;12100:4;12097:1;12090:15;12126:135;12165:3;-1:-1:-1;;12186:17:1;;12183:43;;;12206:18;;:::i;:::-;-1:-1:-1;12253:1:1;12242:13;;12126:135::o;12266:112::-;12298:1;12324;12314:35;;12329:18;;:::i;:::-;-1:-1:-1;12363:9:1;;12266:112::o;12383:127::-;12444:10;12439:3;12435:20;12432:1;12425:31;12475:4;12472:1;12465:15;12499:4;12496:1;12489:15;12515:127;12576:10;12571:3;12567:20;12564:1;12557:31;12607:4;12604:1;12597:15;12631:4;12628:1;12621:15;12647:127;12708:10;12703:3;12699:20;12696:1;12689:31;12739:4;12736:1;12729:15;12763:4;12760:1;12753:15;12779:127;12840:10;12835:3;12831:20;12828:1;12821:31;12871:4;12868:1;12861:15;12895:4;12892:1;12885:15;12911:131;-1:-1:-1;;;;;;12985:32:1;;12975:43;;12965:71;;13032:1;13029;13022:12
Swarm Source
ipfs://1d59dc720b9605996104193a5f5a9328347d62a575a211491e3bcc4d15163dc2
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.