Overview
TokenID
300
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ROCKEES
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-11-04 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.26; /* https://x.com/rockeesAPE Supply: 2069 ROCKEES */ /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract ROCKEES is IERC721A { using SafeMath for uint256; address private _owner; function owner() public view returns(address){ return _owner; } mapping(address=>bool) minted; uint256 public constant MAX_SUPPLY = 2069; uint256 public constant MAX_PER_WALLET = 20; uint256 public COST = 1.0 ether; string private constant _name = "ROCKEES"; string private constant _symbol = "ROCKEES"; string private _baseURI = "QmTgrvd4kcgoeiwkLofQxFFQUVAwVM9w9QCLip1tx1k89a"; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); _mint(_caller, amount); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function setData(string memory _base) external onlyOwner{ _baseURI = _base; } function setConfig(uint256 _COST) external onlyOwner{ COST = _COST; } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI; return bytes(baseURI).length != 0 ? string(abi.encodePacked("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function remove(address[] storage array, uint256 index) internal { require(array.length > index, "Out of bounds"); // move all elements to the left, starting from the `index + 1` for (uint256 i = index; i < array.length - 1; i++) { array[i] = array[i+1]; } array.pop(); // delete the last item } function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual { } /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) { uint256 blockNumber = block.number - 1; // Use the previous block's hash bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId)); return uint256(blockHash) % mod; } bool public teamMintUsed = false; function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Used only Once"); _mint(msg.sender, amount); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_COST","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052670de0b6b3a76400006002556040518060600160405280602e81526020016129f9602e91396003908161003791906102e3565b505f6004555f6009555f600c5f6101000a81548160ff021916908315150217905550348015610064575f80fd5b50335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103b2565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061012457607f821691505b602082108103610137576101366100e0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261015e565b6101a3868361015e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101e76101e26101dd846101bb565b6101c4565b6101bb565b9050919050565b5f819050919050565b610200836101cd565b61021461020c826101ee565b84845461016a565b825550505050565b5f90565b61022861021c565b6102338184846101f7565b505050565b5b818110156102565761024b5f82610220565b600181019050610239565b5050565b601f82111561029b5761026c8161013d565b6102758461014f565b81016020851015610284578190505b6102986102908561014f565b830182610238565b50505b505050565b5f82821c905092915050565b5f6102bb5f19846008026102a0565b1980831691505092915050565b5f6102d383836102ac565b9150826002028217905092915050565b6102ec826100a9565b67ffffffffffffffff811115610305576103046100b3565b5b61030f825461010d565b61031a82828561025a565b5f60209050601f83116001811461034b575f8415610339578287015190505b61034385826102c8565b8655506103aa565b601f1984166103598661013d565b5f5b828110156103805784890151825560018201915060208501945060208101905061035b565b8683101561039d5784890151610399601f8916826102ac565b8355505b6001600288020188555050505b505050505050565b61263a806103bf5f395ff3fe60806040526004361061019b575f3560e01c8063609526c2116100eb578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461059f578063c87b56dd146105c9578063e985e9c514610605578063f14695ae146106415761019b565b8063a0712d6814610533578063a22cb4651461054f578063b88d4fde146105775761019b565b8063893bcfbe116100c5578063893bcfbe1461047b5780638da5cb5b146104a35780638ef1e259146104cd57806395d89b41146105095761019b565b8063609526c2146103c75780636352211e1461040357806370a082311461043f5761019b565b806323b872dd116101585780633ccfd60b116101325780633ccfd60b1461033757806342842e0e1461034d57806347064d6a146103755780634dd08f821461039d5761019b565b806323b872dd146102bd5780632fbba115146102e557806332cb6b0c1461030d5761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b3146102415780630f2cdd6c1461026957806318160ddd14610293575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c091906118b5565b61067d565b6040516101d291906118fa565b60405180910390f35b3480156101e6575f80fd5b506101ef61070e565b6040516101fc9190611983565b60405180910390f35b348015610210575f80fd5b5061022b600480360381019061022691906119d6565b61074b565b6040516102389190611a40565b60405180910390f35b34801561024c575f80fd5b5061026760048036038101906102629190611a83565b6107c3565b005b348015610274575f80fd5b5061027d610937565b60405161028a9190611ad0565b60405180910390f35b34801561029e575f80fd5b506102a761093c565b6040516102b49190611ad0565b60405180910390f35b3480156102c8575f80fd5b506102e360048036038101906102de9190611ae9565b61094e565b005b3480156102f0575f80fd5b5061030b600480360381019061030691906119d6565b61095e565b005b348015610318575f80fd5b50610321610a4e565b60405161032e9190611ad0565b60405180910390f35b348015610342575f80fd5b5061034b610a54565b005b348015610358575f80fd5b50610373600480360381019061036e9190611ae9565b610b2c565b005b348015610380575f80fd5b5061039b60048036038101906103969190611c65565b610b4b565b005b3480156103a8575f80fd5b506103b1610beb565b6040516103be91906118fa565b60405180910390f35b3480156103d2575f80fd5b506103ed60048036038101906103e89190611cac565b610bfd565b6040516103fa9190611ad0565b60405180910390f35b34801561040e575f80fd5b50610429600480360381019061042491906119d6565b610c54565b6040516104369190611a40565b60405180910390f35b34801561044a575f80fd5b5061046560048036038101906104609190611cea565b610c65565b6040516104729190611ad0565b60405180910390f35b348015610486575f80fd5b506104a1600480360381019061049c91906119d6565b610cf6565b005b3480156104ae575f80fd5b506104b7610d8d565b6040516104c49190611a40565b60405180910390f35b3480156104d8575f80fd5b506104f360048036038101906104ee9190611cea565b610db4565b60405161050091906118fa565b60405180910390f35b348015610514575f80fd5b5061051d610dd1565b60405161052a9190611983565b60405180910390f35b61054d600480360381019061054891906119d6565b610e0e565b005b34801561055a575f80fd5b5061057560048036038101906105709190611d3f565b610ece565b005b348015610582575f80fd5b5061059d60048036038101906105989190611e1b565b611040565b005b3480156105aa575f80fd5b506105b3611051565b6040516105c09190611ad0565b60405180910390f35b3480156105d4575f80fd5b506105ef60048036038101906105ea91906119d6565b611057565b6040516105fc9190611983565b60405180910390f35b348015610610575f80fd5b5061062b60048036038101906106269190611e9b565b611173565b60405161063891906118fa565b60405180910390f35b34801561064c575f80fd5b50610667600480360381019061066291906119d6565b611201565b6040516106749190611a40565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107075750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600781526020017f524f434b45455300000000000000000000000000000000000000000000000000815250905090565b5f6107558261123c565b61078b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107cd8261125c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610806575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff16610825611320565b73ffffffffffffffffffffffffffffffffffffffff1614610888576108518161084c611320565b611173565b610887576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601481565b5f610945611327565b60045403905090565b61095983838361132b565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290611f23565b60405180910390fd5b610815816109f761093c565b610a019190611f6e565b10610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890611feb565b60405180910390fd5b610a4b3382611688565b50565b61081581565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890611f23565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610b28573d5f803e3d5ffd5b5050565b610b4683838360405180602001604052805f815250611040565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90611f23565b60405180910390fd5b8060039081610be79190612203565b5050565b600c5f9054906101000a900460ff1681565b5f80600143610c0c91906122d2565b90505f813386604051602001610c2493929190612305565b60405160208183030381529060405280519060200120905083815f1c610c4a9190612367565b9250505092915050565b5f610c5e8261125c565b9050919050565b5f80610c70836117dd565b03610ca7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90611f23565b60405180910390fd5b8060028190555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600781526020017f524f434b45455300000000000000000000000000000000000000000000000000815250905090565b5f610e17611320565b905061081582610e2561093c565b610e2f9190611f6e565b1115610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906123e1565b60405180910390fd5b3460025483610e7f91906123ff565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061248a565b60405180910390fd5b610eca8183611688565b5050565b610ed6611320565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f610f46611320565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fef611320565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103491906118fa565b60405180910390a35050565b61104b84848461132b565b50505050565b60025481565b60606110628261123c565b611098576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600380546110a690612036565b80601f01602080910402602001604051908101604052809291908181526020018280546110d290612036565b801561111d5780601f106110f45761010080835404028352916020019161111d565b820191905f5260205f20905b81548152906001019060200180831161110057829003601f168201915b505050505090505f8151036111405760405180602001604052805f81525061116b565b8061114a846117e6565b60405160200161115b9291906125c0565b6040516020818303038152906040525b915050919050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611210575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f81611246611327565b11158015611255575060045482105b9050919050565b5f808290508061126a611327565b116112e9576004548110156112e8575f60055f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036112e6575b5f81036112dc5760055f836001900393508381526020019081526020015f205490506112b5565b809250505061131b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f6113358261125c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461139c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60075f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166113f0611320565b73ffffffffffffffffffffffffffffffffffffffff16148061141f575061141e86611419611320565b611173565b5b8061145c575061142d611320565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611495576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61149f836117dd565b146114d85760075f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611599876117dd565b171760055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611618575f6001850190505f60055f8381526020019081526020015f205403611616576004548114611615578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116808686866001611840565b505050505050565b5f60045490505f82036116c7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161172960018414611846565b901b60a042901b611739856117dd565b171760055f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061175b578160048190555050506117d85f848385611840565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561182c57600183039250600a81066030018353600a8104905061180c565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61189481611860565b811461189e575f80fd5b50565b5f813590506118af8161188b565b92915050565b5f602082840312156118ca576118c9611858565b5b5f6118d7848285016118a1565b91505092915050565b5f8115159050919050565b6118f4816118e0565b82525050565b5f60208201905061190d5f8301846118eb565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61195582611913565b61195f818561191d565b935061196f81856020860161192d565b6119788161193b565b840191505092915050565b5f6020820190508181035f83015261199b818461194b565b905092915050565b5f819050919050565b6119b5816119a3565b81146119bf575f80fd5b50565b5f813590506119d0816119ac565b92915050565b5f602082840312156119eb576119ea611858565b5b5f6119f8848285016119c2565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a2a82611a01565b9050919050565b611a3a81611a20565b82525050565b5f602082019050611a535f830184611a31565b92915050565b611a6281611a20565b8114611a6c575f80fd5b50565b5f81359050611a7d81611a59565b92915050565b5f8060408385031215611a9957611a98611858565b5b5f611aa685828601611a6f565b9250506020611ab7858286016119c2565b9150509250929050565b611aca816119a3565b82525050565b5f602082019050611ae35f830184611ac1565b92915050565b5f805f60608486031215611b0057611aff611858565b5b5f611b0d86828701611a6f565b9350506020611b1e86828701611a6f565b9250506040611b2f868287016119c2565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b778261193b565b810181811067ffffffffffffffff82111715611b9657611b95611b41565b5b80604052505050565b5f611ba861184f565b9050611bb48282611b6e565b919050565b5f67ffffffffffffffff821115611bd357611bd2611b41565b5b611bdc8261193b565b9050602081019050919050565b828183375f83830152505050565b5f611c09611c0484611bb9565b611b9f565b905082815260208101848484011115611c2557611c24611b3d565b5b611c30848285611be9565b509392505050565b5f82601f830112611c4c57611c4b611b39565b5b8135611c5c848260208601611bf7565b91505092915050565b5f60208284031215611c7a57611c79611858565b5b5f82013567ffffffffffffffff811115611c9757611c9661185c565b5b611ca384828501611c38565b91505092915050565b5f8060408385031215611cc257611cc1611858565b5b5f611ccf858286016119c2565b9250506020611ce0858286016119c2565b9150509250929050565b5f60208284031215611cff57611cfe611858565b5b5f611d0c84828501611a6f565b91505092915050565b611d1e816118e0565b8114611d28575f80fd5b50565b5f81359050611d3981611d15565b92915050565b5f8060408385031215611d5557611d54611858565b5b5f611d6285828601611a6f565b9250506020611d7385828601611d2b565b9150509250929050565b5f67ffffffffffffffff821115611d9757611d96611b41565b5b611da08261193b565b9050602081019050919050565b5f611dbf611dba84611d7d565b611b9f565b905082815260208101848484011115611ddb57611dda611b3d565b5b611de6848285611be9565b509392505050565b5f82601f830112611e0257611e01611b39565b5b8135611e12848260208601611dad565b91505092915050565b5f805f8060808587031215611e3357611e32611858565b5b5f611e4087828801611a6f565b9450506020611e5187828801611a6f565b9350506040611e62878288016119c2565b925050606085013567ffffffffffffffff811115611e8357611e8261185c565b5b611e8f87828801611dee565b91505092959194509250565b5f8060408385031215611eb157611eb0611858565b5b5f611ebe85828601611a6f565b9250506020611ecf85828601611a6f565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611f0d60098361191d565b9150611f1882611ed9565b602082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f78826119a3565b9150611f83836119a3565b9250828201905080821115611f9b57611f9a611f41565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f611fd5600e8361191d565b9150611fe082611fa1565b602082019050919050565b5f6020820190508181035f83015261200281611fc9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061204d57607f821691505b6020821081036120605761205f612009565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026120c27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612087565b6120cc8683612087565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6121076121026120fd846119a3565b6120e4565b6119a3565b9050919050565b5f819050919050565b612120836120ed565b61213461212c8261210e565b848454612093565b825550505050565b5f90565b61214861213c565b612153818484612117565b505050565b5b818110156121765761216b5f82612140565b600181019050612159565b5050565b601f8211156121bb5761218c81612066565b61219584612078565b810160208510156121a4578190505b6121b86121b085612078565b830182612158565b50505b505050565b5f82821c905092915050565b5f6121db5f19846008026121c0565b1980831691505092915050565b5f6121f383836121cc565b9150826002028217905092915050565b61220c82611913565b67ffffffffffffffff81111561222557612224611b41565b5b61222f8254612036565b61223a82828561217a565b5f60209050601f83116001811461226b575f8415612259578287015190505b61226385826121e8565b8655506122ca565b601f19841661227986612066565b5f5b828110156122a05784890151825560018201915060208501945060208101905061227b565b868310156122bd57848901516122b9601f8916826121cc565b8355505b6001600288020188555050505b505050505050565b5f6122dc826119a3565b91506122e7836119a3565b92508282039050818111156122ff576122fe611f41565b5b92915050565b5f6060820190506123185f830186611ac1565b6123256020830185611a31565b6123326040830184611ac1565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612371826119a3565b915061237c836119a3565b92508261238c5761238b61233a565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f6123cb60088361191d565b91506123d682612397565b602082019050919050565b5f6020820190508181035f8301526123f8816123bf565b9050919050565b5f612409826119a3565b9150612414836119a3565b9250828202612422816119a3565b9150828204841483151761243957612438611f41565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612474600c8361191d565b915061247f82612440565b602082019050919050565b5f6020820190508181035f8301526124a181612468565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6124e66007836124a8565b91506124f1826124b2565b600782019050919050565b5f61250682611913565b61251081856124a8565b935061252081856020860161192d565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6125606001836124a8565b915061256b8261252c565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6125aa6005836124a8565b91506125b582612576565b600582019050919050565b5f6125ca826124da565b91506125d682856124fc565b91506125e182612554565b91506125ed82846124fc565b91506125f88261259e565b9150819050939250505056fea2646970667358221220d65ee67c4ab83feb03b2e16c38423e52e2cad96511fa7e9d889f4e2ef62680d964736f6c634300081a0033516d5467727664346b63676f6569776b4c6f66517846465155564177564d39773951434c6970317478316b383961
Deployed Bytecode
0x60806040526004361061019b575f3560e01c8063609526c2116100eb578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461059f578063c87b56dd146105c9578063e985e9c514610605578063f14695ae146106415761019b565b8063a0712d6814610533578063a22cb4651461054f578063b88d4fde146105775761019b565b8063893bcfbe116100c5578063893bcfbe1461047b5780638da5cb5b146104a35780638ef1e259146104cd57806395d89b41146105095761019b565b8063609526c2146103c75780636352211e1461040357806370a082311461043f5761019b565b806323b872dd116101585780633ccfd60b116101325780633ccfd60b1461033757806342842e0e1461034d57806347064d6a146103755780634dd08f821461039d5761019b565b806323b872dd146102bd5780632fbba115146102e557806332cb6b0c1461030d5761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b3146102415780630f2cdd6c1461026957806318160ddd14610293575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c091906118b5565b61067d565b6040516101d291906118fa565b60405180910390f35b3480156101e6575f80fd5b506101ef61070e565b6040516101fc9190611983565b60405180910390f35b348015610210575f80fd5b5061022b600480360381019061022691906119d6565b61074b565b6040516102389190611a40565b60405180910390f35b34801561024c575f80fd5b5061026760048036038101906102629190611a83565b6107c3565b005b348015610274575f80fd5b5061027d610937565b60405161028a9190611ad0565b60405180910390f35b34801561029e575f80fd5b506102a761093c565b6040516102b49190611ad0565b60405180910390f35b3480156102c8575f80fd5b506102e360048036038101906102de9190611ae9565b61094e565b005b3480156102f0575f80fd5b5061030b600480360381019061030691906119d6565b61095e565b005b348015610318575f80fd5b50610321610a4e565b60405161032e9190611ad0565b60405180910390f35b348015610342575f80fd5b5061034b610a54565b005b348015610358575f80fd5b50610373600480360381019061036e9190611ae9565b610b2c565b005b348015610380575f80fd5b5061039b60048036038101906103969190611c65565b610b4b565b005b3480156103a8575f80fd5b506103b1610beb565b6040516103be91906118fa565b60405180910390f35b3480156103d2575f80fd5b506103ed60048036038101906103e89190611cac565b610bfd565b6040516103fa9190611ad0565b60405180910390f35b34801561040e575f80fd5b50610429600480360381019061042491906119d6565b610c54565b6040516104369190611a40565b60405180910390f35b34801561044a575f80fd5b5061046560048036038101906104609190611cea565b610c65565b6040516104729190611ad0565b60405180910390f35b348015610486575f80fd5b506104a1600480360381019061049c91906119d6565b610cf6565b005b3480156104ae575f80fd5b506104b7610d8d565b6040516104c49190611a40565b60405180910390f35b3480156104d8575f80fd5b506104f360048036038101906104ee9190611cea565b610db4565b60405161050091906118fa565b60405180910390f35b348015610514575f80fd5b5061051d610dd1565b60405161052a9190611983565b60405180910390f35b61054d600480360381019061054891906119d6565b610e0e565b005b34801561055a575f80fd5b5061057560048036038101906105709190611d3f565b610ece565b005b348015610582575f80fd5b5061059d60048036038101906105989190611e1b565b611040565b005b3480156105aa575f80fd5b506105b3611051565b6040516105c09190611ad0565b60405180910390f35b3480156105d4575f80fd5b506105ef60048036038101906105ea91906119d6565b611057565b6040516105fc9190611983565b60405180910390f35b348015610610575f80fd5b5061062b60048036038101906106269190611e9b565b611173565b60405161063891906118fa565b60405180910390f35b34801561064c575f80fd5b50610667600480360381019061066291906119d6565b611201565b6040516106749190611a40565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107075750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600781526020017f524f434b45455300000000000000000000000000000000000000000000000000815250905090565b5f6107558261123c565b61078b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107cd8261125c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610806575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff16610825611320565b73ffffffffffffffffffffffffffffffffffffffff1614610888576108518161084c611320565b611173565b610887576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601481565b5f610945611327565b60045403905090565b61095983838361132b565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290611f23565b60405180910390fd5b610815816109f761093c565b610a019190611f6e565b10610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890611feb565b60405180910390fd5b610a4b3382611688565b50565b61081581565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890611f23565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610b28573d5f803e3d5ffd5b5050565b610b4683838360405180602001604052805f815250611040565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90611f23565b60405180910390fd5b8060039081610be79190612203565b5050565b600c5f9054906101000a900460ff1681565b5f80600143610c0c91906122d2565b90505f813386604051602001610c2493929190612305565b60405160208183030381529060405280519060200120905083815f1c610c4a9190612367565b9250505092915050565b5f610c5e8261125c565b9050919050565b5f80610c70836117dd565b03610ca7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90611f23565b60405180910390fd5b8060028190555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600781526020017f524f434b45455300000000000000000000000000000000000000000000000000815250905090565b5f610e17611320565b905061081582610e2561093c565b610e2f9190611f6e565b1115610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906123e1565b60405180910390fd5b3460025483610e7f91906123ff565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061248a565b60405180910390fd5b610eca8183611688565b5050565b610ed6611320565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f610f46611320565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fef611320565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103491906118fa565b60405180910390a35050565b61104b84848461132b565b50505050565b60025481565b60606110628261123c565b611098576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600380546110a690612036565b80601f01602080910402602001604051908101604052809291908181526020018280546110d290612036565b801561111d5780601f106110f45761010080835404028352916020019161111d565b820191905f5260205f20905b81548152906001019060200180831161110057829003601f168201915b505050505090505f8151036111405760405180602001604052805f81525061116b565b8061114a846117e6565b60405160200161115b9291906125c0565b6040516020818303038152906040525b915050919050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611210575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f81611246611327565b11158015611255575060045482105b9050919050565b5f808290508061126a611327565b116112e9576004548110156112e8575f60055f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036112e6575b5f81036112dc5760055f836001900393508381526020019081526020015f205490506112b5565b809250505061131b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f6113358261125c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461139c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60075f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166113f0611320565b73ffffffffffffffffffffffffffffffffffffffff16148061141f575061141e86611419611320565b611173565b5b8061145c575061142d611320565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611495576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61149f836117dd565b146114d85760075f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611599876117dd565b171760055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611618575f6001850190505f60055f8381526020019081526020015f205403611616576004548114611615578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116808686866001611840565b505050505050565b5f60045490505f82036116c7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161172960018414611846565b901b60a042901b611739856117dd565b171760055f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061175b578160048190555050506117d85f848385611840565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561182c57600183039250600a81066030018353600a8104905061180c565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61189481611860565b811461189e575f80fd5b50565b5f813590506118af8161188b565b92915050565b5f602082840312156118ca576118c9611858565b5b5f6118d7848285016118a1565b91505092915050565b5f8115159050919050565b6118f4816118e0565b82525050565b5f60208201905061190d5f8301846118eb565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61195582611913565b61195f818561191d565b935061196f81856020860161192d565b6119788161193b565b840191505092915050565b5f6020820190508181035f83015261199b818461194b565b905092915050565b5f819050919050565b6119b5816119a3565b81146119bf575f80fd5b50565b5f813590506119d0816119ac565b92915050565b5f602082840312156119eb576119ea611858565b5b5f6119f8848285016119c2565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a2a82611a01565b9050919050565b611a3a81611a20565b82525050565b5f602082019050611a535f830184611a31565b92915050565b611a6281611a20565b8114611a6c575f80fd5b50565b5f81359050611a7d81611a59565b92915050565b5f8060408385031215611a9957611a98611858565b5b5f611aa685828601611a6f565b9250506020611ab7858286016119c2565b9150509250929050565b611aca816119a3565b82525050565b5f602082019050611ae35f830184611ac1565b92915050565b5f805f60608486031215611b0057611aff611858565b5b5f611b0d86828701611a6f565b9350506020611b1e86828701611a6f565b9250506040611b2f868287016119c2565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b778261193b565b810181811067ffffffffffffffff82111715611b9657611b95611b41565b5b80604052505050565b5f611ba861184f565b9050611bb48282611b6e565b919050565b5f67ffffffffffffffff821115611bd357611bd2611b41565b5b611bdc8261193b565b9050602081019050919050565b828183375f83830152505050565b5f611c09611c0484611bb9565b611b9f565b905082815260208101848484011115611c2557611c24611b3d565b5b611c30848285611be9565b509392505050565b5f82601f830112611c4c57611c4b611b39565b5b8135611c5c848260208601611bf7565b91505092915050565b5f60208284031215611c7a57611c79611858565b5b5f82013567ffffffffffffffff811115611c9757611c9661185c565b5b611ca384828501611c38565b91505092915050565b5f8060408385031215611cc257611cc1611858565b5b5f611ccf858286016119c2565b9250506020611ce0858286016119c2565b9150509250929050565b5f60208284031215611cff57611cfe611858565b5b5f611d0c84828501611a6f565b91505092915050565b611d1e816118e0565b8114611d28575f80fd5b50565b5f81359050611d3981611d15565b92915050565b5f8060408385031215611d5557611d54611858565b5b5f611d6285828601611a6f565b9250506020611d7385828601611d2b565b9150509250929050565b5f67ffffffffffffffff821115611d9757611d96611b41565b5b611da08261193b565b9050602081019050919050565b5f611dbf611dba84611d7d565b611b9f565b905082815260208101848484011115611ddb57611dda611b3d565b5b611de6848285611be9565b509392505050565b5f82601f830112611e0257611e01611b39565b5b8135611e12848260208601611dad565b91505092915050565b5f805f8060808587031215611e3357611e32611858565b5b5f611e4087828801611a6f565b9450506020611e5187828801611a6f565b9350506040611e62878288016119c2565b925050606085013567ffffffffffffffff811115611e8357611e8261185c565b5b611e8f87828801611dee565b91505092959194509250565b5f8060408385031215611eb157611eb0611858565b5b5f611ebe85828601611a6f565b9250506020611ecf85828601611a6f565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611f0d60098361191d565b9150611f1882611ed9565b602082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f78826119a3565b9150611f83836119a3565b9250828201905080821115611f9b57611f9a611f41565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f611fd5600e8361191d565b9150611fe082611fa1565b602082019050919050565b5f6020820190508181035f83015261200281611fc9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061204d57607f821691505b6020821081036120605761205f612009565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026120c27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612087565b6120cc8683612087565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6121076121026120fd846119a3565b6120e4565b6119a3565b9050919050565b5f819050919050565b612120836120ed565b61213461212c8261210e565b848454612093565b825550505050565b5f90565b61214861213c565b612153818484612117565b505050565b5b818110156121765761216b5f82612140565b600181019050612159565b5050565b601f8211156121bb5761218c81612066565b61219584612078565b810160208510156121a4578190505b6121b86121b085612078565b830182612158565b50505b505050565b5f82821c905092915050565b5f6121db5f19846008026121c0565b1980831691505092915050565b5f6121f383836121cc565b9150826002028217905092915050565b61220c82611913565b67ffffffffffffffff81111561222557612224611b41565b5b61222f8254612036565b61223a82828561217a565b5f60209050601f83116001811461226b575f8415612259578287015190505b61226385826121e8565b8655506122ca565b601f19841661227986612066565b5f5b828110156122a05784890151825560018201915060208501945060208101905061227b565b868310156122bd57848901516122b9601f8916826121cc565b8355505b6001600288020188555050505b505050505050565b5f6122dc826119a3565b91506122e7836119a3565b92508282039050818111156122ff576122fe611f41565b5b92915050565b5f6060820190506123185f830186611ac1565b6123256020830185611a31565b6123326040830184611ac1565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612371826119a3565b915061237c836119a3565b92508261238c5761238b61233a565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f6123cb60088361191d565b91506123d682612397565b602082019050919050565b5f6020820190508181035f8301526123f8816123bf565b9050919050565b5f612409826119a3565b9150612414836119a3565b9250828202612422816119a3565b9150828204841483151761243957612438611f41565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612474600c8361191d565b915061247f82612440565b602082019050919050565b5f6020820190508181035f8301526124a181612468565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6124e66007836124a8565b91506124f1826124b2565b600782019050919050565b5f61250682611913565b61251081856124a8565b935061252081856020860161192d565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6125606001836124a8565b915061256b8261252c565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6125aa6005836124a8565b91506125b582612576565b600582019050919050565b5f6125ca826124da565b91506125d682856124fc565b91506125e182612554565b91506125ed82846124fc565b91506125f88261259e565b9150819050939250505056fea2646970667358221220d65ee67c4ab83feb03b2e16c38423e52e2cad96511fa7e9d889f4e2ef62680d964736f6c634300081a0033
Deployed Bytecode Sourcemap
15594:21841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20281:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24488:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26155:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25638:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15864:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19524:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27041:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36911:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15816:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37287:145;;;;;;;;;;;;;:::i;:::-;;27302:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18722:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36872:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36556:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24277:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20960:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18821:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15695:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30370:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24657:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16195:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26431:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27578:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15914:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24775:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26810:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30416:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20281:615;20366:4;20681:10;20666:25;;:11;:25;;;;:102;;;;20758:10;20743:25;;:11;:25;;;;20666:102;:179;;;;20835:10;20820:25;;:11;:25;;;;20666:179;20646:199;;20281:615;;;:::o;24488:100::-;24542:13;24575:5;;;;;;;;;;;;;;;;;24568:12;;24488:100;:::o;26155:204::-;26223:7;26248:16;26256:7;26248;:16::i;:::-;26243:64;;26273:34;;;;;;;;;;;;;;26243:64;26327:15;:24;26343:7;26327:24;;;;;;;;;;;;;;;;;;;;;26320:31;;26155:204;;;:::o;25638:451::-;25711:13;25743:27;25762:7;25743:18;:27::i;:::-;25711:61;;25793:5;25787:11;;:2;:11;;;25783:25;;25800:8;;;25783:25;25848:5;25825:28;;:19;:17;:19::i;:::-;:28;;;25821:175;;25873:44;25890:5;25897:19;:17;:19::i;:::-;25873:16;:44::i;:::-;25868:128;;25945:35;;;;;;;;;;;;;;25868:128;25821:175;26035:2;26008:15;:24;26024:7;26008:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26073:7;26069:2;26053:28;;26062:5;26053:28;;;;;;;;;;;;25700:389;25638:451;;:::o;15864:43::-;15905:2;15864:43;:::o;19524:300::-;19577:7;19790:15;:13;:15::i;:::-;19774:13;;:31;19767:38;;19524:300;:::o;27041:190::-;27195:28;27205:4;27211:2;27215:7;27195:9;:28::i;:::-;27041:190;;;:::o;36911:169::-;37137:10;37129:18;;:6;;;;;;;;;;:18;;;37121:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;15853:4:::1;36998:6;36982:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;36974:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;37047:25;37053:10;37065:6;37047:5;:25::i;:::-;36911:169:::0;:::o;15816:41::-;15853:4;15816:41;:::o;37287:145::-;37137:10;37129:18;;:6;;;;;;;;;;:18;;;37121:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;37337:15:::1;37355:21;37337:39;;37395:10;37387:28;;:37;37416:7;37387:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37326:106;37287:145::o:0;27302:205::-;27460:39;27477:4;27483:2;27487:7;27460:39;;;;;;;;;;;;:16;:39::i;:::-;27302:205;;;:::o;18722:91::-;37137:10;37129:18;;:6;;;;;;;;;;:18;;;37121:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;18800:5:::1;18789:8;:16;;;;;;:::i;:::-;;18722:91:::0;:::o;36872:32::-;;;;;;;;;;;;;:::o;36556:308::-;36637:7;36657:19;36694:1;36679:12;:16;;;;:::i;:::-;36657:38;;36739:17;36780:11;36793:10;36805:7;36769:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36759:55;;;;;;36739:75;;36853:3;36840:9;36832:18;;:24;;;;:::i;:::-;36825:31;;;;36556:308;;;;:::o;24277:144::-;24341:7;24384:27;24403:7;24384:18;:27::i;:::-;24361:52;;24277:144;;;:::o;20960:234::-;21024:7;21076:1;21048:24;21066:5;21048:17;:24::i;:::-;:29;21044:70;;21086:28;;;;;;;;;;;;;;21044:70;16573:13;21132:18;:25;21151:5;21132:25;;;;;;;;;;;;;;;;:54;21125:61;;20960:234;;;:::o;18821:83::-;37137:10;37129:18;;:6;;;;;;;;;;:18;;;37121:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;18891:5:::1;18884:4;:12;;;;18821:83:::0;:::o;15695:77::-;15732:7;15758:6;;;;;;;;;;;15751:13;;15695:77;:::o;30370:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;24657:104::-;24713:13;24746:7;;;;;;;;;;;;;;;;;24739:14;;24657:104;:::o;16195:267::-;16252:15;16270:19;:17;:19::i;:::-;16252:37;;15853:4;16326:6;16310:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;16302:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;16393:9;16385:4;;16378:6;:11;;;;:::i;:::-;:24;;16370:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;16432:22;16438:7;16447:6;16432:5;:22::i;:::-;16241:221;16195:267;:::o;26431:308::-;26542:19;:17;:19::i;:::-;26530:31;;:8;:31;;;26526:61;;26570:17;;;;;;;;;;;;;;26526:61;26652:8;26600:18;:39;26619:19;:17;:19::i;:::-;26600:39;;;;;;;;;;;;;;;:49;26640:8;26600:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26712:8;26676:55;;26691:19;:17;:19::i;:::-;26676:55;;;26722:8;26676:55;;;;;;:::i;:::-;;;;;;;;26431:308;;:::o;27578:227::-;27769:28;27779:4;27785:2;27789:7;27769:9;:28::i;:::-;27578:227;;;;:::o;15914:31::-;;;;:::o;24775:339::-;24848:13;24879:16;24887:7;24879;:16::i;:::-;24874:59;;24904:29;;;;;;;;;;;;;;24874:59;24944:21;24968:8;24944:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25019:1;25000:7;24994:21;:26;:112;;;;;;;;;;;;;;;;;25058:7;25072:18;25082:7;25072:9;:18::i;:::-;25030:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24994:112;24987:119;;;24775:339;;;:::o;26810:164::-;26907:4;26931:18;:25;26950:5;26931:25;;;;;;;;;;;;;;;:35;26957:8;26931:35;;;;;;;;;;;;;;;;;;;;;;;;;26924:42;;26810:164;;;;:::o;30416:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28060:168::-;28117:4;28173:7;28154:15;:13;:15::i;:::-;:26;;:66;;;;;28207:13;;28197:7;:23;28154:66;28134:86;;28060:168;;;:::o;21792:1129::-;21859:7;21879:12;21894:7;21879:22;;21962:4;21943:15;:13;:15::i;:::-;:23;21939:915;;21996:13;;21989:4;:20;21985:869;;;22034:14;22051:17;:23;22069:4;22051:23;;;;;;;;;;;;22034:40;;22167:1;17343:8;22140:6;:23;:28;22136:699;;22659:113;22676:1;22666:6;:11;22659:113;;22719:17;:25;22737:6;;;;;;;22719:25;;;;;;;;;;;;22710:34;;22659:113;;;22805:6;22798:13;;;;;;22136:699;22011:843;21985:869;21939:915;22882:31;;;;;;;;;;;;;;21792:1129;;;;:::o;34455:105::-;34515:7;34542:10;34535:17;;34455:105;:::o;19047:92::-;19103:7;19047:92;:::o;30445:2561::-;30586:27;30616;30635:7;30616:18;:27::i;:::-;30586:57;;30701:4;30660:45;;30676:19;30660:45;;;30656:86;;30714:28;;;;;;;;;;;;;;30656:86;30755:23;30781:15;:24;30797:7;30781:24;;;;;;;;;;;;;;;;;;;;;30755:50;;30818:22;30867:4;30844:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;30892:43;30909:4;30915:19;:17;:19::i;:::-;30892:16;:43::i;:::-;30844:91;:150;;;;30975:19;:17;:19::i;:::-;30956:38;;:15;:38;;;30844:150;30818:177;;31013:17;31008:66;;31039:35;;;;;;;;;;;;;;31008:66;31184:1;31146:34;31164:15;31146:17;:34::i;:::-;:39;31142:103;;31209:15;:24;31225:7;31209:24;;;;;;;;;;;;31202:31;;;;;;;;;;;31142:103;31612:18;:24;31631:4;31612:24;;;;;;;;;;;;;;;;31610:26;;;;;;;;;;;;31681:18;:22;31700:2;31681:22;;;;;;;;;;;;;;;;31679:24;;;;;;;;;;;17621:8;17227:3;32062:15;:41;;32020:21;32038:2;32020:17;:21::i;:::-;:84;:128;31974:17;:26;31992:7;31974:26;;;;;;;;;;;:174;;;;32318:1;17621:8;32268:19;:46;:51;32264:626;;32340:19;32372:1;32362:7;:11;32340:33;;32529:1;32495:17;:30;32513:11;32495:30;;;;;;;;;;;;:35;32491:384;;32633:13;;32618:11;:28;32614:242;;32813:19;32780:17;:30;32798:11;32780:30;;;;;;;;;;;:52;;;;32614:242;32491:384;32321:569;32264:626;32937:7;32933:2;32918:27;;32927:4;32918:27;;;;;;;;;;;;32956:42;32977:4;32983:2;32987:7;32996:1;32956:20;:42::i;:::-;30569:2437;;;30445:2561;;;:::o;28493:1596::-;28558:20;28581:13;;28558:36;;28692:1;28680:8;:13;28676:44;;28702:18;;;;;;;;;;;;;;28676:44;29265:1;16710:2;29236:1;:25;;29235:31;29223:8;:44;29197:18;:22;29216:2;29197:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17486:3;29666:29;29693:1;29681:8;:13;29666:14;:29::i;:::-;:56;;17227:3;29603:15;:41;;29561:21;29579:2;29561:17;:21::i;:::-;:84;:162;29510:17;:31;29528:12;29510:31;;;;;;;;;;;:213;;;;29740:20;29763:12;29740:35;;29790:11;29819:8;29804:12;:23;29790:37;;29844:111;29896:14;;;;;;29892:2;29871:40;;29888:1;29871:40;;;;;;;;;;;;29950:3;29935:12;:18;29844:111;;29987:12;29971:13;:28;;;;28974:1037;;30021:60;30050:1;30054:2;30058:12;30072:8;30021:20;:60::i;:::-;28547:1542;28493:1596;;:::o;25199:148::-;25263:14;25324:5;25314:15;;25199:148;;;:::o;34666:1882::-;34723:17;35144:3;35137:4;35131:11;35127:21;35120:28;;35231:3;35225:4;35218:17;35331:3;35767:5;35899:1;35894:3;35890:11;35883:18;;36038:2;36032:4;36028:13;36024:2;36020:22;36015:3;36007:36;36080:2;36074:4;36070:13;36062:21;;35664:661;36096:4;35664:661;;;36264:1;36259:3;36255:11;36248:18;;36308:2;36302:4;36298:13;36294:2;36290:22;36285:3;36277:36;36181:2;36175:4;36171:13;36163:21;;35664:661;;;35668:427;36357:3;36352;36348:13;36466:2;36461:3;36457:12;36450:19;;36523:6;36518:3;36511:19;34762:1779;;34666:1882;;;:::o;34037:213::-;;;;;:::o;25434:142::-;25492:14;25553:5;25543:15;;25434:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:474::-;8456:6;8464;8513:2;8501:9;8492:7;8488:23;8484:32;8481:119;;;8519:79;;:::i;:::-;8481:119;8639:1;8664:53;8709:7;8700:6;8689:9;8685:22;8664:53;:::i;:::-;8654:63;;8610:117;8766:2;8792:53;8837:7;8828:6;8817:9;8813:22;8792:53;:::i;:::-;8782:63;;8737:118;8388:474;;;;;:::o;8868:329::-;8927:6;8976:2;8964:9;8955:7;8951:23;8947:32;8944:119;;;8982:79;;:::i;:::-;8944:119;9102:1;9127:53;9172:7;9163:6;9152:9;9148:22;9127:53;:::i;:::-;9117:63;;9073:117;8868:329;;;;:::o;9203:116::-;9273:21;9288:5;9273:21;:::i;:::-;9266:5;9263:32;9253:60;;9309:1;9306;9299:12;9253:60;9203:116;:::o;9325:133::-;9368:5;9406:6;9393:20;9384:29;;9422:30;9446:5;9422:30;:::i;:::-;9325:133;;;;:::o;9464:468::-;9529:6;9537;9586:2;9574:9;9565:7;9561:23;9557:32;9554:119;;;9592:79;;:::i;:::-;9554:119;9712:1;9737:53;9782:7;9773:6;9762:9;9758:22;9737:53;:::i;:::-;9727:63;;9683:117;9839:2;9865:50;9907:7;9898:6;9887:9;9883:22;9865:50;:::i;:::-;9855:60;;9810:115;9464:468;;;;;:::o;9938:307::-;9999:4;10089:18;10081:6;10078:30;10075:56;;;10111:18;;:::i;:::-;10075:56;10149:29;10171:6;10149:29;:::i;:::-;10141:37;;10233:4;10227;10223:15;10215:23;;9938:307;;;:::o;10251:423::-;10328:5;10353:65;10369:48;10410:6;10369:48;:::i;:::-;10353:65;:::i;:::-;10344:74;;10441:6;10434:5;10427:21;10479:4;10472:5;10468:16;10517:3;10508:6;10503:3;10499:16;10496:25;10493:112;;;10524:79;;:::i;:::-;10493:112;10614:54;10661:6;10656:3;10651;10614:54;:::i;:::-;10334:340;10251:423;;;;;:::o;10693:338::-;10748:5;10797:3;10790:4;10782:6;10778:17;10774:27;10764:122;;10805:79;;:::i;:::-;10764:122;10922:6;10909:20;10947:78;11021:3;11013:6;11006:4;10998:6;10994:17;10947:78;:::i;:::-;10938:87;;10754:277;10693:338;;;;:::o;11037:943::-;11132:6;11140;11148;11156;11205:3;11193:9;11184:7;11180:23;11176:33;11173:120;;;11212:79;;:::i;:::-;11173:120;11332:1;11357:53;11402:7;11393:6;11382:9;11378:22;11357:53;:::i;:::-;11347:63;;11303:117;11459:2;11485:53;11530:7;11521:6;11510:9;11506:22;11485:53;:::i;:::-;11475:63;;11430:118;11587:2;11613:53;11658:7;11649:6;11638:9;11634:22;11613:53;:::i;:::-;11603:63;;11558:118;11743:2;11732:9;11728:18;11715:32;11774:18;11766:6;11763:30;11760:117;;;11796:79;;:::i;:::-;11760:117;11901:62;11955:7;11946:6;11935:9;11931:22;11901:62;:::i;:::-;11891:72;;11686:287;11037:943;;;;;;;:::o;11986:474::-;12054:6;12062;12111:2;12099:9;12090:7;12086:23;12082:32;12079:119;;;12117:79;;:::i;:::-;12079:119;12237:1;12262:53;12307:7;12298:6;12287:9;12283:22;12262:53;:::i;:::-;12252:63;;12208:117;12364:2;12390:53;12435:7;12426:6;12415:9;12411:22;12390:53;:::i;:::-;12380:63;;12335:118;11986:474;;;;;:::o;12466:159::-;12606:11;12602:1;12594:6;12590:14;12583:35;12466:159;:::o;12631:365::-;12773:3;12794:66;12858:1;12853:3;12794:66;:::i;:::-;12787:73;;12869:93;12958:3;12869:93;:::i;:::-;12987:2;12982:3;12978:12;12971:19;;12631:365;;;:::o;13002:419::-;13168:4;13206:2;13195:9;13191:18;13183:26;;13255:9;13249:4;13245:20;13241:1;13230:9;13226:17;13219:47;13283:131;13409:4;13283:131;:::i;:::-;13275:139;;13002:419;;;:::o;13427:180::-;13475:77;13472:1;13465:88;13572:4;13569:1;13562:15;13596:4;13593:1;13586:15;13613:191;13653:3;13672:20;13690:1;13672:20;:::i;:::-;13667:25;;13706:20;13724:1;13706:20;:::i;:::-;13701:25;;13749:1;13746;13742:9;13735:16;;13770:3;13767:1;13764:10;13761:36;;;13777:18;;:::i;:::-;13761:36;13613:191;;;;:::o;13810:164::-;13950:16;13946:1;13938:6;13934:14;13927:40;13810:164;:::o;13980:366::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:419::-;14518:4;14556:2;14545:9;14541:18;14533:26;;14605:9;14599:4;14595:20;14591:1;14580:9;14576:17;14569:47;14633:131;14759:4;14633:131;:::i;:::-;14625:139;;14352:419;;;:::o;14777:180::-;14825:77;14822:1;14815:88;14922:4;14919:1;14912:15;14946:4;14943:1;14936:15;14963:320;15007:6;15044:1;15038:4;15034:12;15024:22;;15091:1;15085:4;15081:12;15112:18;15102:81;;15168:4;15160:6;15156:17;15146:27;;15102:81;15230:2;15222:6;15219:14;15199:18;15196:38;15193:84;;15249:18;;:::i;:::-;15193:84;15014:269;14963:320;;;:::o;15289:141::-;15338:4;15361:3;15353:11;;15384:3;15381:1;15374:14;15418:4;15415:1;15405:18;15397:26;;15289:141;;;:::o;15436:93::-;15473:6;15520:2;15515;15508:5;15504:14;15500:23;15490:33;;15436:93;;;:::o;15535:107::-;15579:8;15629:5;15623:4;15619:16;15598:37;;15535:107;;;;:::o;15648:393::-;15717:6;15767:1;15755:10;15751:18;15790:97;15820:66;15809:9;15790:97;:::i;:::-;15908:39;15938:8;15927:9;15908:39;:::i;:::-;15896:51;;15980:4;15976:9;15969:5;15965:21;15956:30;;16029:4;16019:8;16015:19;16008:5;16005:30;15995:40;;15724:317;;15648:393;;;;;:::o;16047:60::-;16075:3;16096:5;16089:12;;16047:60;;;:::o;16113:142::-;16163:9;16196:53;16214:34;16223:24;16241:5;16223:24;:::i;:::-;16214:34;:::i;:::-;16196:53;:::i;:::-;16183:66;;16113:142;;;:::o;16261:75::-;16304:3;16325:5;16318:12;;16261:75;;;:::o;16342:269::-;16452:39;16483:7;16452:39;:::i;:::-;16513:91;16562:41;16586:16;16562:41;:::i;:::-;16554:6;16547:4;16541:11;16513:91;:::i;:::-;16507:4;16500:105;16418:193;16342:269;;;:::o;16617:73::-;16662:3;16617:73;:::o;16696:189::-;16773:32;;:::i;:::-;16814:65;16872:6;16864;16858:4;16814:65;:::i;:::-;16749:136;16696:189;;:::o;16891:186::-;16951:120;16968:3;16961:5;16958:14;16951:120;;;17022:39;17059:1;17052:5;17022:39;:::i;:::-;16995:1;16988:5;16984:13;16975:22;;16951:120;;;16891:186;;:::o;17083:543::-;17184:2;17179:3;17176:11;17173:446;;;17218:38;17250:5;17218:38;:::i;:::-;17302:29;17320:10;17302:29;:::i;:::-;17292:8;17288:44;17485:2;17473:10;17470:18;17467:49;;;17506:8;17491:23;;17467:49;17529:80;17585:22;17603:3;17585:22;:::i;:::-;17575:8;17571:37;17558:11;17529:80;:::i;:::-;17188:431;;17173:446;17083:543;;;:::o;17632:117::-;17686:8;17736:5;17730:4;17726:16;17705:37;;17632:117;;;;:::o;17755:169::-;17799:6;17832:51;17880:1;17876:6;17868:5;17865:1;17861:13;17832:51;:::i;:::-;17828:56;17913:4;17907;17903:15;17893:25;;17806:118;17755:169;;;;:::o;17929:295::-;18005:4;18151:29;18176:3;18170:4;18151:29;:::i;:::-;18143:37;;18213:3;18210:1;18206:11;18200:4;18197:21;18189:29;;17929:295;;;;:::o;18229:1395::-;18346:37;18379:3;18346:37;:::i;:::-;18448:18;18440:6;18437:30;18434:56;;;18470:18;;:::i;:::-;18434:56;18514:38;18546:4;18540:11;18514:38;:::i;:::-;18599:67;18659:6;18651;18645:4;18599:67;:::i;:::-;18693:1;18717:4;18704:17;;18749:2;18741:6;18738:14;18766:1;18761:618;;;;19423:1;19440:6;19437:77;;;19489:9;19484:3;19480:19;19474:26;19465:35;;19437:77;19540:67;19600:6;19593:5;19540:67;:::i;:::-;19534:4;19527:81;19396:222;18731:887;;18761:618;18813:4;18809:9;18801:6;18797:22;18847:37;18879:4;18847:37;:::i;:::-;18906:1;18920:208;18934:7;18931:1;18928:14;18920:208;;;19013:9;19008:3;19004:19;18998:26;18990:6;18983:42;19064:1;19056:6;19052:14;19042:24;;19111:2;19100:9;19096:18;19083:31;;18957:4;18954:1;18950:12;18945:17;;18920:208;;;19156:6;19147:7;19144:19;19141:179;;;19214:9;19209:3;19205:19;19199:26;19257:48;19299:4;19291:6;19287:17;19276:9;19257:48;:::i;:::-;19249:6;19242:64;19164:156;19141:179;19366:1;19362;19354:6;19350:14;19346:22;19340:4;19333:36;18768:611;;;18731:887;;18321:1303;;;18229:1395;;:::o;19630:194::-;19670:4;19690:20;19708:1;19690:20;:::i;:::-;19685:25;;19724:20;19742:1;19724:20;:::i;:::-;19719:25;;19768:1;19765;19761:9;19753:17;;19792:1;19786:4;19783:11;19780:37;;;19797:18;;:::i;:::-;19780:37;19630:194;;;;:::o;19830:442::-;19979:4;20017:2;20006:9;20002:18;19994:26;;20030:71;20098:1;20087:9;20083:17;20074:6;20030:71;:::i;:::-;20111:72;20179:2;20168:9;20164:18;20155:6;20111:72;:::i;:::-;20193;20261:2;20250:9;20246:18;20237:6;20193:72;:::i;:::-;19830:442;;;;;;:::o;20278:180::-;20326:77;20323:1;20316:88;20423:4;20420:1;20413:15;20447:4;20444:1;20437:15;20464:176;20496:1;20513:20;20531:1;20513:20;:::i;:::-;20508:25;;20547:20;20565:1;20547:20;:::i;:::-;20542:25;;20586:1;20576:35;;20591:18;;:::i;:::-;20576:35;20632:1;20629;20625:9;20620:14;;20464:176;;;;:::o;20646:158::-;20786:10;20782:1;20774:6;20770:14;20763:34;20646:158;:::o;20810:365::-;20952:3;20973:66;21037:1;21032:3;20973:66;:::i;:::-;20966:73;;21048:93;21137:3;21048:93;:::i;:::-;21166:2;21161:3;21157:12;21150:19;;20810:365;;;:::o;21181:419::-;21347:4;21385:2;21374:9;21370:18;21362:26;;21434:9;21428:4;21424:20;21420:1;21409:9;21405:17;21398:47;21462:131;21588:4;21462:131;:::i;:::-;21454:139;;21181:419;;;:::o;21606:410::-;21646:7;21669:20;21687:1;21669:20;:::i;:::-;21664:25;;21703:20;21721:1;21703:20;:::i;:::-;21698:25;;21758:1;21755;21751:9;21780:30;21798:11;21780:30;:::i;:::-;21769:41;;21959:1;21950:7;21946:15;21943:1;21940:22;21920:1;21913:9;21893:83;21870:139;;21989:18;;:::i;:::-;21870:139;21654:362;21606:410;;;;:::o;22022:162::-;22162:14;22158:1;22150:6;22146:14;22139:38;22022:162;:::o;22190:366::-;22332:3;22353:67;22417:2;22412:3;22353:67;:::i;:::-;22346:74;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22190:366;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o;22987:148::-;23089:11;23126:3;23111:18;;22987:148;;;;:::o;23141:161::-;23281:9;23277:1;23269:6;23265:14;23258:33;23141:161;:::o;23312:416::-;23472:3;23497:84;23579:1;23574:3;23497:84;:::i;:::-;23490:91;;23594:93;23683:3;23594:93;:::i;:::-;23716:1;23711:3;23707:11;23700:18;;23312:416;;;:::o;23738:410::-;23844:3;23876:39;23909:5;23876:39;:::i;:::-;23935:89;24017:6;24012:3;23935:89;:::i;:::-;23928:96;;24037:65;24095:6;24090:3;24083:4;24076:5;24072:16;24037:65;:::i;:::-;24131:6;24126:3;24122:16;24115:23;;23848:300;23738:410;;;;:::o;24158:159::-;24302:3;24298:1;24290:6;24286:14;24279:27;24158:159;:::o;24327:416::-;24487:3;24512:84;24594:1;24589:3;24512:84;:::i;:::-;24505:91;;24609:93;24698:3;24609:93;:::i;:::-;24731:1;24726:3;24722:11;24715:18;;24327:416;;;:::o;24753:163::-;24897:7;24893:1;24885:6;24881:14;24874:31;24753:163;:::o;24926:416::-;25086:3;25111:84;25193:1;25188:3;25111:84;:::i;:::-;25104:91;;25208:93;25297:3;25208:93;:::i;:::-;25330:1;25325:3;25321:11;25314:18;;24926:416;;;:::o;25352:1261::-;25835:3;25861:148;26005:3;25861:148;:::i;:::-;25854:155;;26030:95;26121:3;26112:6;26030:95;:::i;:::-;26023:102;;26146:148;26290:3;26146:148;:::i;:::-;26139:155;;26315:95;26406:3;26397:6;26315:95;:::i;:::-;26308:102;;26431:148;26575:3;26431:148;:::i;:::-;26424:155;;26600:3;26593:10;;25352:1261;;;;;:::o
Swarm Source
ipfs://d65ee67c4ab83feb03b2e16c38423e52e2cad96511fa7e9d889f4e2ef62680d9
[ 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.