ERC-721
Overview
Max Total Supply
241 Psyduck
Holders
133
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PsyduckLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PsyduckNFT
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-26 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the 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); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * 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; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @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 ApprovalToCurrentOwner(); 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); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance 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; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. 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 Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | 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, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/1_Storage.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract PsyduckNFT is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 8888; uint256 public publicPrice = 0.005 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN = 5; uint256 constant public PUBLIC_MINT_LIMIT = 10; string public revealedURI; string public hiddenURI = "ipfs://QmYUgBGiqXQn2ExVVNi4jB9PeCWYXKCYDWXK7Eqdbex9sj"; address private a1 = 0x9c3Ec9e1828b89ee4b71FAafFF01463E00CCAEb3; // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata string public CONTRACT_URI = "ipfs://QmYUgBGiqXQn2ExVVNi4jB9PeCWYXKCYDWXK7Eqdbex9sj"; bool public paused = false; bool public revealed = false; bool public freeSale = true; bool public publicSale = false; mapping(address => bool) public userMintedFree; mapping(address => uint256) public numUserMints; constructor() ERC721A("Psyduck", "Psyduck") { } // This function is if you want to override the first Token ID# for ERC721A // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint) function _startTokenId() internal view virtual override returns (uint256) { return 1; } function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } else if (msg.value < price) { revert("Not enough ETH sent"); } } function freeMint(uint256 quantity) external payable mintCompliance(quantity) { require(freeSale, "Free sale inactive"); require(msg.value == 0, "This phase is free"); require(quantity == 1, "Only 1 free"); uint256 newSupply = totalSupply() + quantity; require(newSupply <= 888, "Not enough free supply"); require(!userMintedFree[msg.sender], "User max free limit"); userMintedFree[msg.sender] = true; if(newSupply == 888) { freeSale = false; publicSale = true; } _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable mintCompliance(quantity) { require(publicSale, "Public sale inactive"); require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high"); uint256 price = publicPrice; uint256 currMints = numUserMints[msg.sender]; require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit"); refundOverpay(price * quantity); numUserMints[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal. // That said, it's a public view method so gas efficiency shouldn't come into play. require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed) { return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json")); } else { return hiddenURI; } } // https://docs.opensea.io/docs/contract-level-metadata // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts function contractURI() public view returns (string memory) { return CONTRACT_URI; } function setPublicPrice(uint256 _publicPrice) public onlyOwner { publicPrice = _publicPrice; } function setBaseURI(string memory _baseUri) public onlyOwner { revealedURI = _baseUri; } // Note: This method can be hidden/removed if this is a constant. function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenURI = _hiddenMetadataUri; } function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner { revealed = _revealed; revealedURI = _baseUri; } // https://docs.opensea.io/docs/contract-level-metadata function setContractURI(string memory _contractURI) public onlyOwner { CONTRACT_URI = _contractURI; } // Note: Another option is to inherit Pausable without implementing the logic yourself. // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setPublicEnabled(bool _state) public onlyOwner { publicSale = _state; freeSale = !_state; } function setFreeEnabled(bool _state) public onlyOwner { freeSale = _state; publicSale = !_state; } function withdraw() external { uint256 balance = address(this).balance; require(balance > 0); payable(a1).transfer(address(this).balance); } // Owner-only mint functionality to "Airdrop" mints to specific users // Note: These will likely end up hidden on OpenSea function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6611c37937e0800060095560e06040526035608081815290620027ae60a03980516200003491600b9160209091019062000191565b50600c80546001600160a01b031916739c3ec9e1828b89ee4b71faafff01463e00ccaeb317905560408051606081019091526035808252620027ae602083013980516200008a91600d9160209091019062000191565b50600e805463ffffffff191662010000179055348015620000aa57600080fd5b50604051806040016040528060078152602001665073796475636b60c81b815250604051806040016040528060078152602001665073796475636b60c81b81525062000105620000ff6200013d60201b60201c565b62000141565b81516200011a90600390602085019062000191565b5080516200013090600490602084019062000191565b5050600180555062000273565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200019f9062000237565b90600052602060002090601f016020900481019282620001c357600085556200020e565b82601f10620001de57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020e578251825591602001919060010190620001f1565b506200021c92915062000220565b5090565b5b808211156200021c576000815560010162000221565b600181811c908216806200024c57607f821691505b6020821081036200026d57634e487b7160e01b600052602260045260246000fd5b50919050565b61252b80620002836000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610732578063e0a8085314610752578063e8a3d48514610772578063e985e9c514610787578063f2fde38b146107d0578063f7e8d6ea146107f057600080fd5b8063a22cb46514610687578063a4b41a15146106a7578063a945bf80146106c7578063b88d4fde146106dd578063bceae77b146106fd578063c62752551461071257600080fd5b806388dedc141161011357806388dedc14146105df5780638cc54e7f146105ff5780638da5cb5b146106145780639007bd7214610632578063938e3d7b1461065257806395d89b411461067257600080fd5b806370a082311461054a578063715018a61461056a5780637aeb72421461057f5780637af3a1af146105ac5780637c928fe9146105cc57600080fd5b80633ccfd60b116101e857806355f804b3116101ac57806355f804b31461048b57806356b4f673146104ab5780635c975abb146104c05780635ed3e25e146104da5780636352211e146104fa57806364f640761461051a57600080fd5b80633ccfd60b146103ea57806342842e0e146103ff578063438b63001461041f5780634fdd43cb1461044c578063518302271461046c57600080fd5b806318160ddd1161023a57806318160ddd1461034857806323b872dd1461036b5780632db115441461038b5780632fecf20b1461039e57806332cb6b0c146103b357806333bc1c5c146103c957600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806316c38b3c14610328575b600080fd5b34801561028357600080fd5b50610297610292366004611e2a565b610805565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610857565b6040516102a39190611e9f565b3480156102da57600080fd5b506102ee6102e9366004611eb2565b6108e9565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004611ee2565b61092d565b005b34801561033457600080fd5b50610326610343366004611f1c565b6109ff565b34801561035457600080fd5b5061035d610a45565b6040519081526020016102a3565b34801561037757600080fd5b50610326610386366004611f37565b610a53565b610326610399366004611eb2565b610a63565b3480156103aa57600080fd5b5061035d600581565b3480156103bf57600080fd5b5061035d6122b881565b3480156103d557600080fd5b50600e54610297906301000000900460ff1681565b3480156103f657600080fd5b50610326610c12565b34801561040b57600080fd5b5061032661041a366004611f37565b610c5a565b34801561042b57600080fd5b5061043f61043a366004611f73565b610c75565b6040516102a39190611f8e565b34801561045857600080fd5b5061032661046736600461207e565b610d55565b34801561047857600080fd5b50600e5461029790610100900460ff1681565b34801561049757600080fd5b506103266104a636600461207e565b610d92565b3480156104b757600080fd5b506102c1610dcf565b3480156104cc57600080fd5b50600e546102979060ff1681565b3480156104e657600080fd5b506103266104f53660046120b3565b610e5d565b34801561050657600080fd5b506102ee610515366004611eb2565b610ead565b34801561052657600080fd5b50610297610535366004611f73565b600f6020526000908152604090205460ff1681565b34801561055657600080fd5b5061035d610565366004611f73565b610eb8565b34801561057657600080fd5b50610326610f07565b34801561058b57600080fd5b5061035d61059a366004611f73565b60106020526000908152604090205481565b3480156105b857600080fd5b506103266105c7366004611f1c565b610f3d565b6103266105da366004611eb2565b610f96565b3480156105eb57600080fd5b506103266105fa366004611f1c565b6111d6565b34801561060b57600080fd5b506102c1611230565b34801561062057600080fd5b506000546001600160a01b03166102ee565b34801561063e57600080fd5b5061032661064d366004612101565b61123d565b34801561065e57600080fd5b5061032661066d36600461207e565b6112e9565b34801561067e57600080fd5b506102c1611326565b34801561069357600080fd5b506103266106a236600461212d565b611335565b3480156106b357600080fd5b50600e546102979062010000900460ff1681565b3480156106d357600080fd5b5061035d60095481565b3480156106e957600080fd5b506103266106f8366004612157565b6113ca565b34801561070957600080fd5b5061035d600a81565b34801561071e57600080fd5b5061032661072d366004611eb2565b61140e565b34801561073e57600080fd5b506102c161074d366004611eb2565b61143d565b34801561075e57600080fd5b5061032661076d366004611f1c565b611585565b34801561077e57600080fd5b506102c16115c9565b34801561079357600080fd5b506102976107a23660046121d3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107dc57600080fd5b506103266107eb366004611f73565b6115d8565b3480156107fc57600080fd5b506102c1611673565b60006301ffc9a760e01b6001600160e01b03198316148061083657506380ac58cd60e01b6001600160e01b03198316145b806108515750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610866906121fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906121fd565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611680565b610911576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610938826116b5565b9050806001600160a01b0316836001600160a01b03160361096c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109a35761098681336107a2565b6109a3576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610a325760405162461bcd60e51b8152600401610a2990612237565b60405180910390fd5b600e805460ff1916911515919091179055565b600254600154036000190190565b610a5e83838361172b565b505050565b600e54819060ff1615610a885760405162461bcd60e51b8152600401610a299061226c565b6122b881610a94610a45565b610a9e91906122ae565b1115610abc5760405162461bcd60e51b8152600401610a29906122c6565b323314610adb5760405162461bcd60e51b8152600401610a29906122f5565b600e546301000000900460ff16610b2b5760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610a29565b6005821115610b705760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610a29565b60095433600090815260106020526040902054600a610b8f85836122ae565b1115610bd35760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610a29565b610be5610be08584612322565b6118d2565b610bef84826122ae565b33600081815260106020526040902091909155610c0c90856119b1565b50505050565b4780610c1d57600080fd5b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c56573d6000803e3d6000fd5b5050565b610a5e838383604051806020016040528060008152506113ca565b60606000610c8283610eb8565b905060008167ffffffffffffffff811115610c9f57610c9f611fd2565b604051908082528060200260200182016040528015610cc8578160200160208202803683370190505b509050600160005b8381108015610ce157506122b88211155b15610d4b576000610cf183610ead565b9050866001600160a01b0316816001600160a01b031603610d385782848381518110610d1f57610d1f612341565b602090810291909101015281610d3481612357565b9250505b82610d4281612357565b93505050610cd0565b5090949350505050565b6000546001600160a01b03163314610d7f5760405162461bcd60e51b8152600401610a2990612237565b8051610c5690600b906020840190611d7b565b6000546001600160a01b03163314610dbc5760405162461bcd60e51b8152600401610a2990612237565b8051610c5690600a906020840190611d7b565b600d8054610ddc906121fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e08906121fd565b8015610e555780601f10610e2a57610100808354040283529160200191610e55565b820191906000526020600020905b815481529060010190602001808311610e3857829003601f168201915b505050505081565b6000546001600160a01b03163314610e875760405162461bcd60e51b8152600401610a2990612237565b600e805461ff001916610100841515021790558051610a5e90600a906020840190611d7b565b6000610851826116b5565b60006001600160a01b038216610ee1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f315760405162461bcd60e51b8152600401610a2990612237565b610f3b60006119cb565b565b6000546001600160a01b03163314610f675760405162461bcd60e51b8152600401610a2990612237565b600e805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600e54819060ff1615610fbb5760405162461bcd60e51b8152600401610a299061226c565b6122b881610fc7610a45565b610fd191906122ae565b1115610fef5760405162461bcd60e51b8152600401610a29906122c6565b32331461100e5760405162461bcd60e51b8152600401610a29906122f5565b600e5462010000900460ff1661105b5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610a29565b341561109e5760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610a29565b816001146110dc5760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792031206672656560a81b6044820152606401610a29565b6000826110e7610a45565b6110f191906122ae565b905061037881111561113e5760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610a29565b336000908152600f602052604090205460ff16156111945760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610a29565b336000908152600f60205260409020805460ff191660011790556103788190036111cc57600e805463ffff0000191663010000001790555b610a5e33846119b1565b6000546001600160a01b031633146112005760405162461bcd60e51b8152600401610a2990612237565b600e805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600b8054610ddc906121fd565b6000546001600160a01b031633146112675760405162461bcd60e51b8152600401610a2990612237565b600e54829060ff161561128c5760405162461bcd60e51b8152600401610a299061226c565b6122b881611298610a45565b6112a291906122ae565b11156112c05760405162461bcd60e51b8152600401610a29906122c6565b3233146112df5760405162461bcd60e51b8152600401610a29906122f5565b610a5e82846119b1565b6000546001600160a01b031633146113135760405162461bcd60e51b8152600401610a2990612237565b8051610c5690600d906020840190611d7b565b606060048054610866906121fd565b336001600160a01b0383160361135e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113d584848461172b565b6001600160a01b0383163b15610c0c576113f184848484611a1b565b610c0c576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146114385760405162461bcd60e51b8152600401610a2990612237565b600955565b606061144882611680565b6114ac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a29565b600e54610100900460ff16156114ee57600a6114c783611b07565b6040516020016114d892919061238c565b6040516020818303038152906040529050919050565b600b80546114fb906121fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611527906121fd565b80156115745780601f1061154957610100808354040283529160200191611574565b820191906000526020600020905b81548152906001019060200180831161155757829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146115af5760405162461bcd60e51b8152600401610a2990612237565b600e80549115156101000261ff0019909216919091179055565b6060600d8054610866906121fd565b6000546001600160a01b031633146116025760405162461bcd60e51b8152600401610a2990612237565b6001600160a01b0381166116675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a29565b611670816119cb565b50565b600a8054610ddc906121fd565b600081600111158015611694575060015482105b8015610851575050600090815260056020526040902054600160e01b161590565b60008180600111611712576001548110156117125760008181526005602052604081205490600160e01b82169003611710575b806000036117095750600019016000818152600560205260409020546116e8565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611736826116b5565b9050836001600160a01b0316816001600160a01b0316146117695760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611787575061178785336107a2565b806117a2575033611797846108e9565b6001600160a01b0316145b9050806117c257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117e957604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b871781179091558316900361188a576001830160008181526005602052604081205490036118885760015481146118885760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b8034111561196b576000336118e78334612446565b604051600081818185875af1925050503d8060008114611923576040519150601f19603f3d011682016040523d82523d6000602084013e611928565b606091505b5050905080610c565760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610a29565b803410156116705760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a29565b610c56828260405180602001604052806000815250611c08565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a5090339089908890889060040161245d565b6020604051808303816000875af1925050508015611a8b575060408051601f3d908101601f19168201909252611a889181019061249a565b60015b611ae9573d808015611ab9576040519150601f19603f3d011682016040523d82523d6000602084013e611abe565b606091505b508051600003611ae1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611b2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b585780611b4281612357565b9150611b519050600a836124cd565b9150611b32565b60008167ffffffffffffffff811115611b7357611b73611fd2565b6040519080825280601f01601f191660200182016040528015611b9d576020820181803683370190505b5090505b8415611aff57611bb2600183612446565b9150611bbf600a866124e1565b611bca9060306122ae565b60f81b818381518110611bdf57611bdf612341565b60200101906001600160f81b031916908160001a905350611c01600a866124cd565b9450611ba1565b6001546001600160a01b038416611c3157604051622e076360e81b815260040160405180910390fd5b82600003611c525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611d27575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cf06000878480600101955087611a1b565b611d0d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ca5578260015414611d2257600080fd5b611d6c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d28575b50600155610c0c600085838684565b828054611d87906121fd565b90600052602060002090601f016020900481019282611da95760008555611def565b82601f10611dc257805160ff1916838001178555611def565b82800160010185558215611def579182015b82811115611def578251825591602001919060010190611dd4565b50611dfb929150611dff565b5090565b5b80821115611dfb5760008155600101611e00565b6001600160e01b03198116811461167057600080fd5b600060208284031215611e3c57600080fd5b813561170981611e14565b60005b83811015611e62578181015183820152602001611e4a565b83811115610c0c5750506000910152565b60008151808452611e8b816020860160208601611e47565b601f01601f19169290920160200192915050565b6020815260006117096020830184611e73565b600060208284031215611ec457600080fd5b5035919050565b80356001600160a01b038116811461158057600080fd5b60008060408385031215611ef557600080fd5b611efe83611ecb565b946020939093013593505050565b8035801515811461158057600080fd5b600060208284031215611f2e57600080fd5b61170982611f0c565b600080600060608486031215611f4c57600080fd5b611f5584611ecb565b9250611f6360208501611ecb565b9150604084013590509250925092565b600060208284031215611f8557600080fd5b61170982611ecb565b6020808252825182820181905260009190848201906040850190845b81811015611fc657835183529284019291840191600101611faa565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200357612003611fd2565b604051601f8501601f19908116603f0116810190828211818310171561202b5761202b611fd2565b8160405280935085815286868601111561204457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261206f57600080fd5b61170983833560208501611fe8565b60006020828403121561209057600080fd5b813567ffffffffffffffff8111156120a757600080fd5b611aff8482850161205e565b600080604083850312156120c657600080fd5b6120cf83611f0c565b9150602083013567ffffffffffffffff8111156120eb57600080fd5b6120f78582860161205e565b9150509250929050565b6000806040838503121561211457600080fd5b8235915061212460208401611ecb565b90509250929050565b6000806040838503121561214057600080fd5b61214983611ecb565b915061212460208401611f0c565b6000806000806080858703121561216d57600080fd5b61217685611ecb565b935061218460208601611ecb565b925060408501359150606085013567ffffffffffffffff8111156121a757600080fd5b8501601f810187136121b857600080fd5b6121c787823560208401611fe8565b91505092959194509250565b600080604083850312156121e657600080fd5b6121ef83611ecb565b915061212460208401611ecb565b600181811c9082168061221157607f821691505b60208210810361223157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122c1576122c1612298565b500190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b600081600019048311821515161561233c5761233c612298565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161236957612369612298565b5060010190565b60008151612382818560208601611e47565b9290920192915050565b600080845481600182811c9150808316806123a857607f831692505b602080841082036123c757634e487b7160e01b86526022600452602486fd5b8180156123db57600181146123ec57612419565b60ff19861689528489019650612419565b60008b81526020902060005b868110156124115781548b8201529085019083016123f8565b505084890196505b50505050505061243d61242c8286612370565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561245857612458612298565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249090830184611e73565b9695505050505050565b6000602082840312156124ac57600080fd5b815161170981611e14565b634e487b7160e01b600052601260045260246000fd5b6000826124dc576124dc6124b7565b500490565b6000826124f0576124f06124b7565b50069056fea26469706673582212201de87d9ec11ed2a78d3803a484c1fdcb7d0917a0a9d65ecddb8aa55531c66b1864736f6c634300080e0033697066733a2f2f516d5955674247697158516e32457856564e69346a42395065435759584b43594457584b3745716462657839736a
Deployed Bytecode
0x6080604052600436106102725760003560e01c806370a082311161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610732578063e0a8085314610752578063e8a3d48514610772578063e985e9c514610787578063f2fde38b146107d0578063f7e8d6ea146107f057600080fd5b8063a22cb46514610687578063a4b41a15146106a7578063a945bf80146106c7578063b88d4fde146106dd578063bceae77b146106fd578063c62752551461071257600080fd5b806388dedc141161011357806388dedc14146105df5780638cc54e7f146105ff5780638da5cb5b146106145780639007bd7214610632578063938e3d7b1461065257806395d89b411461067257600080fd5b806370a082311461054a578063715018a61461056a5780637aeb72421461057f5780637af3a1af146105ac5780637c928fe9146105cc57600080fd5b80633ccfd60b116101e857806355f804b3116101ac57806355f804b31461048b57806356b4f673146104ab5780635c975abb146104c05780635ed3e25e146104da5780636352211e146104fa57806364f640761461051a57600080fd5b80633ccfd60b146103ea57806342842e0e146103ff578063438b63001461041f5780634fdd43cb1461044c578063518302271461046c57600080fd5b806318160ddd1161023a57806318160ddd1461034857806323b872dd1461036b5780632db115441461038b5780632fecf20b1461039e57806332cb6b0c146103b357806333bc1c5c146103c957600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806316c38b3c14610328575b600080fd5b34801561028357600080fd5b50610297610292366004611e2a565b610805565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610857565b6040516102a39190611e9f565b3480156102da57600080fd5b506102ee6102e9366004611eb2565b6108e9565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004611ee2565b61092d565b005b34801561033457600080fd5b50610326610343366004611f1c565b6109ff565b34801561035457600080fd5b5061035d610a45565b6040519081526020016102a3565b34801561037757600080fd5b50610326610386366004611f37565b610a53565b610326610399366004611eb2565b610a63565b3480156103aa57600080fd5b5061035d600581565b3480156103bf57600080fd5b5061035d6122b881565b3480156103d557600080fd5b50600e54610297906301000000900460ff1681565b3480156103f657600080fd5b50610326610c12565b34801561040b57600080fd5b5061032661041a366004611f37565b610c5a565b34801561042b57600080fd5b5061043f61043a366004611f73565b610c75565b6040516102a39190611f8e565b34801561045857600080fd5b5061032661046736600461207e565b610d55565b34801561047857600080fd5b50600e5461029790610100900460ff1681565b34801561049757600080fd5b506103266104a636600461207e565b610d92565b3480156104b757600080fd5b506102c1610dcf565b3480156104cc57600080fd5b50600e546102979060ff1681565b3480156104e657600080fd5b506103266104f53660046120b3565b610e5d565b34801561050657600080fd5b506102ee610515366004611eb2565b610ead565b34801561052657600080fd5b50610297610535366004611f73565b600f6020526000908152604090205460ff1681565b34801561055657600080fd5b5061035d610565366004611f73565b610eb8565b34801561057657600080fd5b50610326610f07565b34801561058b57600080fd5b5061035d61059a366004611f73565b60106020526000908152604090205481565b3480156105b857600080fd5b506103266105c7366004611f1c565b610f3d565b6103266105da366004611eb2565b610f96565b3480156105eb57600080fd5b506103266105fa366004611f1c565b6111d6565b34801561060b57600080fd5b506102c1611230565b34801561062057600080fd5b506000546001600160a01b03166102ee565b34801561063e57600080fd5b5061032661064d366004612101565b61123d565b34801561065e57600080fd5b5061032661066d36600461207e565b6112e9565b34801561067e57600080fd5b506102c1611326565b34801561069357600080fd5b506103266106a236600461212d565b611335565b3480156106b357600080fd5b50600e546102979062010000900460ff1681565b3480156106d357600080fd5b5061035d60095481565b3480156106e957600080fd5b506103266106f8366004612157565b6113ca565b34801561070957600080fd5b5061035d600a81565b34801561071e57600080fd5b5061032661072d366004611eb2565b61140e565b34801561073e57600080fd5b506102c161074d366004611eb2565b61143d565b34801561075e57600080fd5b5061032661076d366004611f1c565b611585565b34801561077e57600080fd5b506102c16115c9565b34801561079357600080fd5b506102976107a23660046121d3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107dc57600080fd5b506103266107eb366004611f73565b6115d8565b3480156107fc57600080fd5b506102c1611673565b60006301ffc9a760e01b6001600160e01b03198316148061083657506380ac58cd60e01b6001600160e01b03198316145b806108515750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610866906121fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906121fd565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611680565b610911576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610938826116b5565b9050806001600160a01b0316836001600160a01b03160361096c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109a35761098681336107a2565b6109a3576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610a325760405162461bcd60e51b8152600401610a2990612237565b60405180910390fd5b600e805460ff1916911515919091179055565b600254600154036000190190565b610a5e83838361172b565b505050565b600e54819060ff1615610a885760405162461bcd60e51b8152600401610a299061226c565b6122b881610a94610a45565b610a9e91906122ae565b1115610abc5760405162461bcd60e51b8152600401610a29906122c6565b323314610adb5760405162461bcd60e51b8152600401610a29906122f5565b600e546301000000900460ff16610b2b5760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610a29565b6005821115610b705760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610a29565b60095433600090815260106020526040902054600a610b8f85836122ae565b1115610bd35760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610a29565b610be5610be08584612322565b6118d2565b610bef84826122ae565b33600081815260106020526040902091909155610c0c90856119b1565b50505050565b4780610c1d57600080fd5b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c56573d6000803e3d6000fd5b5050565b610a5e838383604051806020016040528060008152506113ca565b60606000610c8283610eb8565b905060008167ffffffffffffffff811115610c9f57610c9f611fd2565b604051908082528060200260200182016040528015610cc8578160200160208202803683370190505b509050600160005b8381108015610ce157506122b88211155b15610d4b576000610cf183610ead565b9050866001600160a01b0316816001600160a01b031603610d385782848381518110610d1f57610d1f612341565b602090810291909101015281610d3481612357565b9250505b82610d4281612357565b93505050610cd0565b5090949350505050565b6000546001600160a01b03163314610d7f5760405162461bcd60e51b8152600401610a2990612237565b8051610c5690600b906020840190611d7b565b6000546001600160a01b03163314610dbc5760405162461bcd60e51b8152600401610a2990612237565b8051610c5690600a906020840190611d7b565b600d8054610ddc906121fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e08906121fd565b8015610e555780601f10610e2a57610100808354040283529160200191610e55565b820191906000526020600020905b815481529060010190602001808311610e3857829003601f168201915b505050505081565b6000546001600160a01b03163314610e875760405162461bcd60e51b8152600401610a2990612237565b600e805461ff001916610100841515021790558051610a5e90600a906020840190611d7b565b6000610851826116b5565b60006001600160a01b038216610ee1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f315760405162461bcd60e51b8152600401610a2990612237565b610f3b60006119cb565b565b6000546001600160a01b03163314610f675760405162461bcd60e51b8152600401610a2990612237565b600e805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600e54819060ff1615610fbb5760405162461bcd60e51b8152600401610a299061226c565b6122b881610fc7610a45565b610fd191906122ae565b1115610fef5760405162461bcd60e51b8152600401610a29906122c6565b32331461100e5760405162461bcd60e51b8152600401610a29906122f5565b600e5462010000900460ff1661105b5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610a29565b341561109e5760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610a29565b816001146110dc5760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792031206672656560a81b6044820152606401610a29565b6000826110e7610a45565b6110f191906122ae565b905061037881111561113e5760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610a29565b336000908152600f602052604090205460ff16156111945760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610a29565b336000908152600f60205260409020805460ff191660011790556103788190036111cc57600e805463ffff0000191663010000001790555b610a5e33846119b1565b6000546001600160a01b031633146112005760405162461bcd60e51b8152600401610a2990612237565b600e805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600b8054610ddc906121fd565b6000546001600160a01b031633146112675760405162461bcd60e51b8152600401610a2990612237565b600e54829060ff161561128c5760405162461bcd60e51b8152600401610a299061226c565b6122b881611298610a45565b6112a291906122ae565b11156112c05760405162461bcd60e51b8152600401610a29906122c6565b3233146112df5760405162461bcd60e51b8152600401610a29906122f5565b610a5e82846119b1565b6000546001600160a01b031633146113135760405162461bcd60e51b8152600401610a2990612237565b8051610c5690600d906020840190611d7b565b606060048054610866906121fd565b336001600160a01b0383160361135e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113d584848461172b565b6001600160a01b0383163b15610c0c576113f184848484611a1b565b610c0c576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146114385760405162461bcd60e51b8152600401610a2990612237565b600955565b606061144882611680565b6114ac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a29565b600e54610100900460ff16156114ee57600a6114c783611b07565b6040516020016114d892919061238c565b6040516020818303038152906040529050919050565b600b80546114fb906121fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611527906121fd565b80156115745780601f1061154957610100808354040283529160200191611574565b820191906000526020600020905b81548152906001019060200180831161155757829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146115af5760405162461bcd60e51b8152600401610a2990612237565b600e80549115156101000261ff0019909216919091179055565b6060600d8054610866906121fd565b6000546001600160a01b031633146116025760405162461bcd60e51b8152600401610a2990612237565b6001600160a01b0381166116675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a29565b611670816119cb565b50565b600a8054610ddc906121fd565b600081600111158015611694575060015482105b8015610851575050600090815260056020526040902054600160e01b161590565b60008180600111611712576001548110156117125760008181526005602052604081205490600160e01b82169003611710575b806000036117095750600019016000818152600560205260409020546116e8565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611736826116b5565b9050836001600160a01b0316816001600160a01b0316146117695760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611787575061178785336107a2565b806117a2575033611797846108e9565b6001600160a01b0316145b9050806117c257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117e957604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b871781179091558316900361188a576001830160008181526005602052604081205490036118885760015481146118885760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b8034111561196b576000336118e78334612446565b604051600081818185875af1925050503d8060008114611923576040519150601f19603f3d011682016040523d82523d6000602084013e611928565b606091505b5050905080610c565760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610a29565b803410156116705760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a29565b610c56828260405180602001604052806000815250611c08565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a5090339089908890889060040161245d565b6020604051808303816000875af1925050508015611a8b575060408051601f3d908101601f19168201909252611a889181019061249a565b60015b611ae9573d808015611ab9576040519150601f19603f3d011682016040523d82523d6000602084013e611abe565b606091505b508051600003611ae1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611b2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b585780611b4281612357565b9150611b519050600a836124cd565b9150611b32565b60008167ffffffffffffffff811115611b7357611b73611fd2565b6040519080825280601f01601f191660200182016040528015611b9d576020820181803683370190505b5090505b8415611aff57611bb2600183612446565b9150611bbf600a866124e1565b611bca9060306122ae565b60f81b818381518110611bdf57611bdf612341565b60200101906001600160f81b031916908160001a905350611c01600a866124cd565b9450611ba1565b6001546001600160a01b038416611c3157604051622e076360e81b815260040160405180910390fd5b82600003611c525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611d27575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cf06000878480600101955087611a1b565b611d0d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ca5578260015414611d2257600080fd5b611d6c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d28575b50600155610c0c600085838684565b828054611d87906121fd565b90600052602060002090601f016020900481019282611da95760008555611def565b82601f10611dc257805160ff1916838001178555611def565b82800160010185558215611def579182015b82811115611def578251825591602001919060010190611dd4565b50611dfb929150611dff565b5090565b5b80821115611dfb5760008155600101611e00565b6001600160e01b03198116811461167057600080fd5b600060208284031215611e3c57600080fd5b813561170981611e14565b60005b83811015611e62578181015183820152602001611e4a565b83811115610c0c5750506000910152565b60008151808452611e8b816020860160208601611e47565b601f01601f19169290920160200192915050565b6020815260006117096020830184611e73565b600060208284031215611ec457600080fd5b5035919050565b80356001600160a01b038116811461158057600080fd5b60008060408385031215611ef557600080fd5b611efe83611ecb565b946020939093013593505050565b8035801515811461158057600080fd5b600060208284031215611f2e57600080fd5b61170982611f0c565b600080600060608486031215611f4c57600080fd5b611f5584611ecb565b9250611f6360208501611ecb565b9150604084013590509250925092565b600060208284031215611f8557600080fd5b61170982611ecb565b6020808252825182820181905260009190848201906040850190845b81811015611fc657835183529284019291840191600101611faa565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200357612003611fd2565b604051601f8501601f19908116603f0116810190828211818310171561202b5761202b611fd2565b8160405280935085815286868601111561204457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261206f57600080fd5b61170983833560208501611fe8565b60006020828403121561209057600080fd5b813567ffffffffffffffff8111156120a757600080fd5b611aff8482850161205e565b600080604083850312156120c657600080fd5b6120cf83611f0c565b9150602083013567ffffffffffffffff8111156120eb57600080fd5b6120f78582860161205e565b9150509250929050565b6000806040838503121561211457600080fd5b8235915061212460208401611ecb565b90509250929050565b6000806040838503121561214057600080fd5b61214983611ecb565b915061212460208401611f0c565b6000806000806080858703121561216d57600080fd5b61217685611ecb565b935061218460208601611ecb565b925060408501359150606085013567ffffffffffffffff8111156121a757600080fd5b8501601f810187136121b857600080fd5b6121c787823560208401611fe8565b91505092959194509250565b600080604083850312156121e657600080fd5b6121ef83611ecb565b915061212460208401611ecb565b600181811c9082168061221157607f821691505b60208210810361223157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122c1576122c1612298565b500190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b600081600019048311821515161561233c5761233c612298565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161236957612369612298565b5060010190565b60008151612382818560208601611e47565b9290920192915050565b600080845481600182811c9150808316806123a857607f831692505b602080841082036123c757634e487b7160e01b86526022600452602486fd5b8180156123db57600181146123ec57612419565b60ff19861689528489019650612419565b60008b81526020902060005b868110156124115781548b8201529085019083016123f8565b505084890196505b50505050505061243d61242c8286612370565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561245857612458612298565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249090830184611e73565b9695505050505050565b6000602082840312156124ac57600080fd5b815161170981611e14565b634e487b7160e01b600052601260045260246000fd5b6000826124dc576124dc6124b7565b500490565b6000826124f0576124f06124b7565b50069056fea26469706673582212201de87d9ec11ed2a78d3803a484c1fdcb7d0917a0a9d65ecddb8aa55531c66b1864736f6c634300080e0033
Deployed Bytecode Sourcemap
43995:6643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;-1:-1:-1;18620:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18620:615:0;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25701:204::-;;;;;;;;;;-1:-1:-1;25701:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;25701:204:0;1550:203:1;25161:474:0;;;;;;;;;;-1:-1:-1;25161:474:0;;;;;:::i;:::-;;:::i;:::-;;49457:83;;;;;;;;;;-1:-1:-1;49457:83:0;;;;;:::i;:::-;;:::i;17674:315::-;;;;;;;;;;;;;:::i;:::-;;;2691:25:1;;;2679:2;2664:18;17674:315:0;2545:177:1;26587:170:0;;;;;;;;;;-1:-1:-1;26587:170:0;;;;;:::i;:::-;;:::i;46293:571::-;;;;;;:::i;:::-;;:::i;44141:49::-;;;;;;;;;;;;44189:1;44141:49;;44042:41;;;;;;;;;;;;44079:4;44042:41;;44729:30;;;;;;;;;;-1:-1:-1;44729:30:0;;;;;;;;;;;49903:172;;;;;;;;;;;;;:::i;26828:185::-;;;;;;;;;;-1:-1:-1;26828:185:0;;;;;:::i;:::-;;:::i;46872:689::-;;;;;;;;;;-1:-1:-1;46872:689:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48768:130::-;;;;;;;;;;-1:-1:-1;48768:130:0;;;;;:::i;:::-;;:::i;44658:28::-;;;;;;;;;;-1:-1:-1;44658:28:0;;;;;;;;;;;48587:102;;;;;;;;;;-1:-1:-1;48587:102:0;;;;;:::i;:::-;;:::i;44532:84::-;;;;;;;;;;;;;:::i;44625:26::-;;;;;;;;;;-1:-1:-1;44625:26:0;;;;;;;;48906:155;;;;;;;;;;-1:-1:-1;48906:155:0;;;;;:::i;:::-;;:::i;23422:144::-;;;;;;;;;;-1:-1:-1;23422:144:0;;;;;:::i;:::-;;:::i;44776:46::-;;;;;;;;;;-1:-1:-1;44776:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19299:224;;;;;;;;;;-1:-1:-1;19299:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;44829:47::-;;;;;;;;;;-1:-1:-1;44829:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;49643:123;;;;;;;;;;-1:-1:-1;49643:123:0;;;;;:::i;:::-;;:::i;45638:647::-;;;;;;:::i;:::-;;:::i;49772:121::-;;;;;;;;;;-1:-1:-1;49772:121:0;;;;;:::i;:::-;;:::i;44290:81::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4125:7:0;4152:6;-1:-1:-1;;;;;4152:6:0;4079:87;;50219:146;;;;;;;;;;-1:-1:-1;50219:146:0;;;;;:::i;:::-;;:::i;49130:115::-;;;;;;;;;;-1:-1:-1;49130:115:0;;;;;:::i;:::-;;:::i;23802:104::-;;;;;;;;;;;;;:::i;25977:308::-;;;;;;;;;;-1:-1:-1;25977:308:0;;;;;:::i;:::-;;:::i;44695:27::-;;;;;;;;;;-1:-1:-1;44695:27:0;;;;;;;;;;;44092:40;;;;;;;;;;;;;;;;27084:396;;;;;;;;;;-1:-1:-1;27084:396:0;;;;;:::i;:::-;;:::i;44197:46::-;;;;;;;;;;;;44241:2;44197:46;;48471:108;;;;;;;;;;-1:-1:-1;48471:108:0;;;;;:::i;:::-;;:::i;47569:608::-;;;;;;;;;;-1:-1:-1;47569:608:0;;;;;:::i;:::-;;:::i;49548:87::-;;;;;;;;;;-1:-1:-1;49548:87:0;;;;;:::i;:::-;;:::i;48364:97::-;;;;;;;;;;;;;:::i;26356:164::-;;;;;;;;;;-1:-1:-1;26356:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26477:25:0;;;26453:4;26477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26356:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;44252:25::-;;;;;;;;;;;;;:::i;18620:615::-;18705:4;-1:-1:-1;;;;;;;;;19005:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19082:25:0;;;19005:102;:179;;;-1:-1:-1;;;;;;;;;;19159:25:0;;;19005:179;18985:199;18620:615;-1:-1:-1;;18620:615:0:o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;-1:-1:-1;;;25819:34:0;;;;;;;;;;;25789:64;-1:-1:-1;25873:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25873:24:0;;25701:204::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;-1:-1:-1;;;;;25310:11:0;:2;-1:-1:-1;;;;;25310:11:0;;25306:48;;25330:24;;-1:-1:-1;;;25330:24:0;;;;;;;;;;;25306:48;41804:10;-1:-1:-1;;;;;25371:28:0;;;25367:175;;25419:44;25436:5;41804:10;26356:164;:::i;25419:44::-;25414:128;;25491:35;;-1:-1:-1;;;25491:35:0;;;;;;;;;;;25414:128;25554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25554:29:0;-1:-1:-1;;;;;25554:29:0;;;;;;;;;25599:28;;25554:24;;25599:28;;;;;;;25223:412;25161:474;;:::o;49457:83::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;49517:6:::1;:15:::0;;-1:-1:-1;;49517:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49457:83::o;17674:315::-;17940:12;;45244:1;17924:13;:28;-1:-1:-1;;17924:46:0;;17674:315::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;46293:571::-;50437:6;;46363:8;;50437:6;;50436:7;50428:38;;;;-1:-1:-1;;;50428:38:0;;;;;;;:::i;:::-;44079:4;50501:8;50485:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50477:72;;;;-1:-1:-1;;;50477:72:0;;;;;;;:::i;:::-;50568:9;50581:10;50568:23;50560:55;;;;-1:-1:-1;;;50560:55:0;;;;;;;:::i;:::-;46392:10:::1;::::0;;;::::1;;;46384:43;;;::::0;-1:-1:-1;;;46384:43:0;;9319:2:1;46384:43:0::1;::::0;::::1;9301:21:1::0;9358:2;9338:18;;;9331:30;-1:-1:-1;;;9377:18:1;;;9370:50;9437:18;;46384:43:0::1;9117:344:1::0;46384:43:0::1;44189:1;46446:8;:33;;46438:63;;;::::0;-1:-1:-1;;;46438:63:0;;9668:2:1;46438:63:0::1;::::0;::::1;9650:21:1::0;9707:2;9687:18;;;9680:30;-1:-1:-1;;;9726:18:1;;;9719:47;9783:18;;46438:63:0::1;9466:341:1::0;46438:63:0::1;46530:11;::::0;46585:10:::1;46514:13;46572:24:::0;;;:12:::1;:24;::::0;;;;;44241:2:::1;46633:20;46645:8:::0;46572:24;46633:20:::1;:::i;:::-;:41;;46625:73;;;::::0;-1:-1:-1;;;46625:73:0;;10014:2:1;46625:73:0::1;::::0;::::1;9996:21:1::0;10053:2;10033:18;;;10026:30;-1:-1:-1;;;10072:18:1;;;10065:49;10131:18;;46625:73:0::1;9812:343:1::0;46625:73:0::1;46719:31;46733:16;46741:8:::0;46733:5;:16:::1;:::i;:::-;46719:13;:31::i;:::-;46791:20;46803:8:::0;46791:9;:20:::1;:::i;:::-;46776:10;46763:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;46825:31:::1;::::0;46847:8;46825:9:::1;:31::i;:::-;46373:491;;46293:571:::0;;:::o;49903:172::-;49961:21;50001:11;49993:20;;;;;;50032:2;;50024:43;;-1:-1:-1;;;;;50032:2:0;;;;50045:21;50024:43;;;;;50032:2;50024:43;50032:2;50024:43;50045:21;50032:2;50024:43;;;;;;;;;;;;;;;;;;;;;49932:143;49903:172::o;26828:185::-;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;46872:689::-;46932:16;46966:23;46992:17;47002:6;46992:9;:17::i;:::-;46966:43;;47020:30;47067:15;47053:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47053:30:0;-1:-1:-1;47020:63:0;-1:-1:-1;47119:1:0;47094:22;47171:350;47196:15;47178;:33;:65;;;;;44079:4;47215:14;:28;;47178:65;47171:350;;;47260:25;47288:23;47296:14;47288:7;:23::i;:::-;47260:51;;47353:6;-1:-1:-1;;;;;47332:27:0;:17;-1:-1:-1;;;;;47332:27:0;;47328:153;;47413:14;47380:13;47394:15;47380:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;47448:17;;;;:::i;:::-;;;;47328:153;47493:16;;;;:::i;:::-;;;;47245:276;47171:350;;;-1:-1:-1;47540:13:0;;46872:689;-1:-1:-1;;;;46872:689:0:o;48768:130::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48860:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;48587:102::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48659:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44532:84::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48906:155::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49000:8:::1;:20:::0;;-1:-1:-1;;49000:20:0::1;;::::0;::::1;;;;::::0;;49031:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;23422:144::-:0;23486:7;23529:27;23548:7;23529:18;:27::i;19299:224::-;19363:7;-1:-1:-1;;;;;19387:19:0;;19383:60;;19415:28;;-1:-1:-1;;;19415:28:0;;;;;;;;;;;19383:60;-1:-1:-1;;;;;;19461:25:0;;;;;:18;:25;;;;;;14638:13;19461:54;;19299:224::o;4730:103::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49643:123::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49710:10:::1;:19:::0;;-1:-1:-1;;49740:18:0;49710:19;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;49740:18:0;;;;;;::::1;::::0;;;::::1;::::0;;49643:123::o;45638:647::-;50437:6;;45706:8;;50437:6;;50436:7;50428:38;;;;-1:-1:-1;;;50428:38:0;;;;;;;:::i;:::-;44079:4;50501:8;50485:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50477:72;;;;-1:-1:-1;;;50477:72:0;;;;;;;:::i;:::-;50568:9;50581:10;50568:23;50560:55;;;;-1:-1:-1;;;50560:55:0;;;;;;;:::i;:::-;45735:8:::1;::::0;;;::::1;;;45727:39;;;::::0;-1:-1:-1;;;45727:39:0;;10807:2:1;45727:39:0::1;::::0;::::1;10789:21:1::0;10846:2;10826:18;;;10819:30;-1:-1:-1;;;10865:18:1;;;10858:48;10923:18;;45727:39:0::1;10605:342:1::0;45727:39:0::1;45785:9;:14:::0;45777:45:::1;;;::::0;-1:-1:-1;;;45777:45:0;;11154:2:1;45777:45:0::1;::::0;::::1;11136:21:1::0;11193:2;11173:18;;;11166:30;-1:-1:-1;;;11212:18:1;;;11205:48;11270:18;;45777:45:0::1;10952:342:1::0;45777:45:0::1;45841:8;45853:1;45841:13;45833:37;;;::::0;-1:-1:-1;;;45833:37:0;;11501:2:1;45833:37:0::1;::::0;::::1;11483:21:1::0;11540:2;11520:18;;;11513:30;-1:-1:-1;;;11559:18:1;;;11552:41;11610:18;;45833:37:0::1;11299:335:1::0;45833:37:0::1;45883:17;45919:8;45903:13;:11;:13::i;:::-;:24;;;;:::i;:::-;45883:44;;45969:3;45956:9;:16;;45948:51;;;::::0;-1:-1:-1;;;45948:51:0;;11841:2:1;45948:51:0::1;::::0;::::1;11823:21:1::0;11880:2;11860:18;;;11853:30;-1:-1:-1;;;11899:18:1;;;11892:52;11961:18;;45948:51:0::1;11639:346:1::0;45948:51:0::1;46036:10;46021:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;46020:27;46012:59;;;::::0;-1:-1:-1;;;46012:59:0;;12192:2:1;46012:59:0::1;::::0;::::1;12174:21:1::0;12231:2;12211:18;;;12204:30;-1:-1:-1;;;12250:18:1;;;12243:49;12309:18;;46012:59:0::1;11990:343:1::0;46012:59:0::1;46107:10;46092:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;46092:33:0::1;46121:4;46092:33;::::0;;46154:3:::1;46141:16:::0;;;46138:96:::1;;46174:8;:16:::0;;-1:-1:-1;;46205:17:0;;::::1;::::0;;46138:96:::1;46246:31;46256:10;46268:8;46246:9;:31::i;49772:121::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49837:8:::1;:17:::0;;-1:-1:-1;;49865:20:0;49837:17;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;49865:20:0;;;;;;::::1;::::0;;;::::1;::::0;;49772:121::o;44290:81::-;;;;;;;:::i;50219:146::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50437:6:::1;::::0;50307:8;;50437:6:::1;;50436:7;50428:38;;;;-1:-1:-1::0;;;50428:38:0::1;;;;;;;:::i;:::-;44079:4;50501:8;50485:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50477:72;;;;-1:-1:-1::0;;;50477:72:0::1;;;;;;;:::i;:::-;50568:9;50581:10;50568:23;50560:55;;;;-1:-1:-1::0;;;50560:55:0::1;;;;;;;:::i;:::-;50328:29:::2;50338:8;50348;50328:9;:29::i;49130:115::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49210:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;23802:104::-:0;23858:13;23891:7;23884:14;;;;;:::i;25977:308::-;41804:10;-1:-1:-1;;;;;26076:31:0;;;26072:61;;26116:17;;-1:-1:-1;;;26116:17:0;;;;;;;;;;;26072:61;41804:10;26146:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26146:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26146:60:0;;;;;;;;;;26222:55;;540:41:1;;;26146:49:0;;41804:10;26222:55;;513:18:1;26222:55:0;;;;;;;25977:308;;:::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;-1:-1:-1;;;;;27294:14:0;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;-1:-1:-1;;;27417:40:0;;;;;;;;;;;48471:108;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48545:11:::1;:26:::0;48471:108::o;47569:608::-;47635:13;47900:17;47908:8;47900:7;:17::i;:::-;47892:77;;;;-1:-1:-1;;;47892:77:0;;12540:2:1;47892:77:0;;;12522:21:1;12579:2;12559:18;;;12552:30;12618:34;12598:18;;;12591:62;-1:-1:-1;;;12669:18:1;;;12662:45;12724:19;;47892:77:0;12338:411:1;47892:77:0;47994:8;;;;;;;47990:180;;;48050:11;48063:26;48080:8;48063:16;:26::i;:::-;48033:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48019:81;;47569:608;;;:::o;47990:180::-;48149:9;48142:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47569:608;;;:::o;47990:180::-;47569:608;;;:::o;49548:87::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49610:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;49610:17:0;;::::1;::::0;;;::::1;::::0;;49548:87::o;48364:97::-;48408:13;48441:12;48434:19;;;;;:::i;4988:201::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;14696:2:1;5069:73:0::1;::::0;::::1;14678:21:1::0;14735:2;14715:18;;;14708:30;14774:34;14754:18;;;14747:62;-1:-1:-1;;;14825:18:1;;;14818:36;14871:19;;5069:73:0::1;14494:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;44252:25::-;;;;;;;:::i;27735:273::-;27792:4;27848:7;45244:1;27829:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:152;;;;-1:-1:-1;;27933:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27933:43:0;:48;;27735:273::o;20937:1129::-;21004:7;21039;;45244:1;21088:23;21084:915;;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:23;;;:17;:23;;;;;;;-1:-1:-1;;;21285:23:0;;:28;;21281:699;;21804:113;21811:6;21821:1;21811:11;21804:113;;-1:-1:-1;;;21882:6:0;21864:25;;;;:17;:25;;;;;;21804:113;;;21950:6;20937:1129;-1:-1:-1;;;20937:1129:0:o;21281:699::-;21156:843;21130:869;22027:31;;-1:-1:-1;;;22027:31:0;;;;;;;;;;;32974:2515;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;-1:-1:-1;;;;;33163:45:0;33179:19;-1:-1:-1;;;;;33163:45:0;;33159:86;;33217:28;;-1:-1:-1;;;33217:28:0;;;;;;;;;;;33159:86;33258:22;41804:10;-1:-1:-1;;;;;33284:27:0;;;;:87;;-1:-1:-1;33328:43:0;33345:4;41804:10;26356:164;:::i;33328:43::-;33284:147;;;-1:-1:-1;41804:10:0;33388:20;33400:7;33388:11;:20::i;:::-;-1:-1:-1;;;;;33388:43:0;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;-1:-1:-1;;;33476:35:0;;;;;;;;;;;33445:66;-1:-1:-1;;;;;33526:16:0;;33522:52;;33551:23;;-1:-1:-1;;;33551:23:0;;;;;;;;;;;33522:52;33703:24;;;;:15;:24;;;;;;;;33696:31;;-1:-1:-1;;;;;;33696:31:0;;;-1:-1:-1;;;;;34095:24:0;;;;;:18;:24;;;;;34093:26;;-1:-1:-1;;34093:26:0;;;34164:22;;;;;;;34162:24;;-1:-1:-1;34162:24:0;;;34457:26;;;:17;:26;;;;;-1:-1:-1;;;34545:15:0;15292:3;34545:41;34503:84;;:128;;34457:174;;;34751:46;;:51;;34747:626;;34855:1;34845:11;;34823:19;34978:30;;;:17;:30;;;;;;:35;;34974:384;;35116:13;;35101:11;:28;35097:242;;35263:30;;;;:17;:30;;;;;:52;;;35097:242;34804:569;34747:626;35420:7;35416:2;-1:-1:-1;;;;;35401:27:0;35410:4;-1:-1:-1;;;;;35401:27:0;;;;;;;;;;;33078:2411;;32974:2515;;;:::o;45261:359::-;45334:5;45322:9;:17;45318:295;;;45357:9;45380:10;45423:17;45435:5;45423:9;:17;:::i;:::-;45372:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45356:104;;;45483:4;45475:32;;;;-1:-1:-1;;;45475:32:0;;15443:2:1;45475:32:0;;;15425:21:1;15482:2;15462:18;;;15455:30;-1:-1:-1;;;15501:18:1;;;15494:45;15556:18;;45475:32:0;15241:339:1;45318:295:0;45550:5;45538:9;:17;45534:79;;;45572:29;;-1:-1:-1;;;45572:29:0;;15787:2:1;45572:29:0;;;15769:21:1;15826:2;15806:18;;;15799:30;-1:-1:-1;;;15845:18:1;;;15838:49;15904:18;;45572:29:0;15585:343:1;28092:104:0;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;5349:191::-;5423:16;5442:6;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;5492:40;;5423:16;5492:40;5412:128;5349:191;:::o;39186:716::-;39370:88;;-1:-1:-1;;;39370:88:0;;39349:4;;-1:-1:-1;;;;;39370:45:0;;;;;:88;;41804:10;;39437:4;;39443:7;;39452:5;;39370:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39370:88:0;;;;;;;;-1:-1:-1;;39370:88:0;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39653:6;:13;39670:1;39653:18;39649:235;;39699:40;;-1:-1:-1;;;39699:40:0;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;-1:-1:-1;;;;;;39529:64:0;-1:-1:-1;;;39529:64:0;;-1:-1:-1;39366:529:0;39186:716;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28569:2236;28715:13;;-1:-1:-1;;;;;28743:16:0;;28739:48;;28768:19;;-1:-1:-1;;;28768:19:0;;;;;;;;;;;28739:48;28802:8;28814:1;28802:13;28798:44;;28824:18;;-1:-1:-1;;;28824:18:0;;;;;;;;;;;28798:44;-1:-1:-1;;;;;29391:22:0;;;;;;:18;:22;;;;14775:2;29391:22;;;:70;;29429:31;29417:44;;29391:70;;;29704:31;;;:17;:31;;;;;29797:15;15292:3;29797:41;29755:84;;-1:-1:-1;29875:13:0;;15555:3;29860:56;29755:162;29704:213;;:31;;29998:23;;;;30042:14;:19;30038:635;;30082:313;30113:38;;30138:12;;-1:-1:-1;;;;;30113:38:0;;;30130:1;;30113:38;;30130:1;;30113:38;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;-1:-1:-1;;;30284:40:0;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30570:40;;30595:14;;;;;-1:-1:-1;;;;;30570:40:0;;;30587:1;;30570:40;;30587:1;;30570:40;30653:3;30638:12;:18;30539:119;;30038:635;-1:-1:-1;30687:13:0;:28;30737:60;30766:1;30770:2;30774:12;30788:8;30737:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2195:160::-;2260:20;;2316:13;;2309:21;2299:32;;2289:60;;2345:1;2342;2335:12;2360:180;2416:6;2469:2;2457:9;2448:7;2444:23;2440:32;2437:52;;;2485:1;2482;2475:12;2437:52;2508:26;2524:9;2508:26;:::i;2727:328::-;2804:6;2812;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:52;;;2889:1;2886;2879:12;2841:52;2912:29;2931:9;2912:29;:::i;:::-;2902:39;;2960:38;2994:2;2983:9;2979:18;2960:38;:::i;:::-;2950:48;;3045:2;3034:9;3030:18;3017:32;3007:42;;2727:328;;;;;:::o;3060:186::-;3119:6;3172:2;3160:9;3151:7;3147:23;3143:32;3140:52;;;3188:1;3185;3178:12;3140:52;3211:29;3230:9;3211:29;:::i;3251:632::-;3422:2;3474:21;;;3544:13;;3447:18;;;3566:22;;;3393:4;;3422:2;3645:15;;;;3619:2;3604:18;;;3393:4;3688:169;3702:6;3699:1;3696:13;3688:169;;;3763:13;;3751:26;;3832:15;;;;3797:12;;;;3724:1;3717:9;3688:169;;;-1:-1:-1;3874:3:1;;3251:632;-1:-1:-1;;;;;;3251:632:1:o;3888:127::-;3949:10;3944:3;3940:20;3937:1;3930:31;3980:4;3977:1;3970:15;4004:4;4001:1;3994:15;4020:632;4085:5;4115:18;4156:2;4148:6;4145:14;4142:40;;;4162:18;;:::i;:::-;4237:2;4231:9;4205:2;4291:15;;-1:-1:-1;;4287:24:1;;;4313:2;4283:33;4279:42;4267:55;;;4337:18;;;4357:22;;;4334:46;4331:72;;;4383:18;;:::i;:::-;4423:10;4419:2;4412:22;4452:6;4443:15;;4482:6;4474;4467:22;4522:3;4513:6;4508:3;4504:16;4501:25;4498:45;;;4539:1;4536;4529:12;4498:45;4589:6;4584:3;4577:4;4569:6;4565:17;4552:44;4644:1;4637:4;4628:6;4620;4616:19;4612:30;4605:41;;;;4020:632;;;;;:::o;4657:222::-;4700:5;4753:3;4746:4;4738:6;4734:17;4730:27;4720:55;;4771:1;4768;4761:12;4720:55;4793:80;4869:3;4860:6;4847:20;4840:4;4832:6;4828:17;4793:80;:::i;4884:322::-;4953:6;5006:2;4994:9;4985:7;4981:23;4977:32;4974:52;;;5022:1;5019;5012:12;4974:52;5062:9;5049:23;5095:18;5087:6;5084:30;5081:50;;;5127:1;5124;5117:12;5081:50;5150;5192:7;5183:6;5172:9;5168:22;5150:50;:::i;5211:390::-;5286:6;5294;5347:2;5335:9;5326:7;5322:23;5318:32;5315:52;;;5363:1;5360;5353:12;5315:52;5386:26;5402:9;5386:26;:::i;:::-;5376:36;;5463:2;5452:9;5448:18;5435:32;5490:18;5482:6;5479:30;5476:50;;;5522:1;5519;5512:12;5476:50;5545;5587:7;5578:6;5567:9;5563:22;5545:50;:::i;:::-;5535:60;;;5211:390;;;;;:::o;5606:254::-;5674:6;5682;5735:2;5723:9;5714:7;5710:23;5706:32;5703:52;;;5751:1;5748;5741:12;5703:52;5787:9;5774:23;5764:33;;5816:38;5850:2;5839:9;5835:18;5816:38;:::i;:::-;5806:48;;5606:254;;;;;:::o;5865:::-;5930:6;5938;5991:2;5979:9;5970:7;5966:23;5962:32;5959:52;;;6007:1;6004;5997:12;5959:52;6030:29;6049:9;6030:29;:::i;:::-;6020:39;;6078:35;6109:2;6098:9;6094:18;6078:35;:::i;6124:667::-;6219:6;6227;6235;6243;6296:3;6284:9;6275:7;6271:23;6267:33;6264:53;;;6313:1;6310;6303:12;6264:53;6336:29;6355:9;6336:29;:::i;:::-;6326:39;;6384:38;6418:2;6407:9;6403:18;6384:38;:::i;:::-;6374:48;;6469:2;6458:9;6454:18;6441:32;6431:42;;6524:2;6513:9;6509:18;6496:32;6551:18;6543:6;6540:30;6537:50;;;6583:1;6580;6573:12;6537:50;6606:22;;6659:4;6651:13;;6647:27;-1:-1:-1;6637:55:1;;6688:1;6685;6678:12;6637:55;6711:74;6777:7;6772:2;6759:16;6754:2;6750;6746:11;6711:74;:::i;:::-;6701:84;;;6124:667;;;;;;;:::o;6796:260::-;6864:6;6872;6925:2;6913:9;6904:7;6900:23;6896:32;6893:52;;;6941:1;6938;6931:12;6893:52;6964:29;6983:9;6964:29;:::i;:::-;6954:39;;7012:38;7046:2;7035:9;7031:18;7012:38;:::i;7061:380::-;7140:1;7136:12;;;;7183;;;7204:61;;7258:4;7250:6;7246:17;7236:27;;7204:61;7311:2;7303:6;7300:14;7280:18;7277:38;7274:161;;7357:10;7352:3;7348:20;7345:1;7338:31;7392:4;7389:1;7382:15;7420:4;7417:1;7410:15;7274:161;;7061:380;;;:::o;7446:356::-;7648:2;7630:21;;;7667:18;;;7660:30;7726:34;7721:2;7706:18;;7699:62;7793:2;7778:18;;7446:356::o;7807:342::-;8009:2;7991:21;;;8048:2;8028:18;;;8021:30;-1:-1:-1;;;8082:2:1;8067:18;;8060:48;8140:2;8125:18;;7807:342::o;8154:127::-;8215:10;8210:3;8206:20;8203:1;8196:31;8246:4;8243:1;8236:15;8270:4;8267:1;8260:15;8286:128;8326:3;8357:1;8353:6;8350:1;8347:13;8344:39;;;8363:18;;:::i;:::-;-1:-1:-1;8399:9:1;;8286:128::o;8419:345::-;8621:2;8603:21;;;8660:2;8640:18;;;8633:30;-1:-1:-1;;;8694:2:1;8679:18;;8672:51;8755:2;8740:18;;8419:345::o;8769:343::-;8971:2;8953:21;;;9010:2;8990:18;;;8983:30;-1:-1:-1;;;9044:2:1;9029:18;;9022:49;9103:2;9088:18;;8769:343::o;10160:168::-;10200:7;10266:1;10262;10258:6;10254:14;10251:1;10248:21;10243:1;10236:9;10229:17;10225:45;10222:71;;;10273:18;;:::i;:::-;-1:-1:-1;10313:9:1;;10160:168::o;10333:127::-;10394:10;10389:3;10385:20;10382:1;10375:31;10425:4;10422:1;10415:15;10449:4;10446:1;10439:15;10465:135;10504:3;10525:17;;;10522:43;;10545:18;;:::i;:::-;-1:-1:-1;10592:1:1;10581:13;;10465:135::o;12880:185::-;12922:3;12960:5;12954:12;12975:52;13020:6;13015:3;13008:4;13001:5;12997:16;12975:52;:::i;:::-;13043:16;;;;;12880:185;-1:-1:-1;;12880:185:1:o;13188:1301::-;13465:3;13494:1;13527:6;13521:13;13557:3;13579:1;13607:9;13603:2;13599:18;13589:28;;13667:2;13656:9;13652:18;13689;13679:61;;13733:4;13725:6;13721:17;13711:27;;13679:61;13759:2;13807;13799:6;13796:14;13776:18;13773:38;13770:165;;-1:-1:-1;;;13834:33:1;;13890:4;13887:1;13880:15;13920:4;13841:3;13908:17;13770:165;13951:18;13978:104;;;;14096:1;14091:320;;;;13944:467;;13978:104;-1:-1:-1;;14011:24:1;;13999:37;;14056:16;;;;-1:-1:-1;13978:104:1;;14091:320;12827:1;12820:14;;;12864:4;12851:18;;14186:1;14200:165;14214:6;14211:1;14208:13;14200:165;;;14292:14;;14279:11;;;14272:35;14335:16;;;;14229:10;;14200:165;;;14204:3;;14394:6;14389:3;14385:16;14378:23;;13944:467;;;;;;;14427:56;14452:30;14478:3;14470:6;14452:30;:::i;:::-;-1:-1:-1;;;13130:20:1;;13175:1;13166:11;;13070:113;14427:56;14420:63;13188:1301;-1:-1:-1;;;;;13188:1301:1:o;14901:125::-;14941:4;14969:1;14966;14963:8;14960:34;;;14974:18;;:::i;:::-;-1:-1:-1;15011:9:1;;14901:125::o;15933:500::-;-1:-1:-1;;;;;16202:15:1;;;16184:34;;16254:15;;16249:2;16234:18;;16227:43;16301:2;16286:18;;16279:34;;;16349:3;16344:2;16329:18;;16322:31;;;16127:4;;16370:57;;16407:19;;16399:6;16370:57;:::i;:::-;16362:65;15933:500;-1:-1:-1;;;;;;15933:500:1:o;16438:249::-;16507:6;16560:2;16548:9;16539:7;16535:23;16531:32;16528:52;;;16576:1;16573;16566:12;16528:52;16608:9;16602:16;16627:30;16651:5;16627:30;:::i;16692:127::-;16753:10;16748:3;16744:20;16741:1;16734:31;16784:4;16781:1;16774:15;16808:4;16805:1;16798:15;16824:120;16864:1;16890;16880:35;;16895:18;;:::i;:::-;-1:-1:-1;16929:9:1;;16824:120::o;16949:112::-;16981:1;17007;16997:35;;17012:18;;:::i;:::-;-1:-1:-1;17046:9:1;;16949:112::o
Swarm Source
ipfs://1de87d9ec11ed2a78d3803a484c1fdcb7d0917a0a9d65ecddb8aa55531c66b18
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.