Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
562 BBPWTF
Holders
37
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
40 BBPWTFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BigBallsPapaWTF
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-22 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/tempDuku.sol pragma solidity >=0.8.9 <0.9.0; contract BigBallsPapaWTF is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public uriPrefix = ''; string public uriSuffix = '.json'; string public hiddenMetadataUri; uint256 public cost = 0.005 ether; uint256 public maxSupply = 3500; uint256 public freeMints = 500; uint256 public maxMintAmountPerTx = 20; bool public paused = true; bool public revealed = false; constructor( string memory _tokenName, string memory _tokenSymbol, string memory _hiddenMetadataUri ) ERC721A(_tokenName, _tokenSymbol) { setHiddenMetadataUri(_hiddenMetadataUri); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } modifier mintPriceCompliance(uint256 _mintAmount) { if(totalSupply() >= freeMints) { require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); } _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } 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 <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setFreeMints(uint256 _freeQty) public onlyOwner { freeMints = _freeQty; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } /* __ __ __ /\ \ /\ \__/\ \ __ \_\ \ __ \ \ ,_\ \ \____ ___ /\_\ /'_` \ /'__`\ \ \ \/\ \ '__`\ / __`\/\ \ /\ \L\ \/\ \L\.\_\ \ \_\ \ \L\ \/\ \L\ \ \ \ \ \___,_\ \__/.\_\\ \__\\ \_,__/\ \____/\ \_\ \/__,_ /\/__/\/_/ \/__/ \/___/ \/___/ \/_/ */ }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQty","type":"uint256"}],"name":"setFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","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":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"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
60a06040819052600060808190526200001b91600a91620001ca565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001ca565b506611c37937e08000600d55610dac600e556101f4600f5560146010556011805461ffff191660011790553480156200008257600080fd5b506040516200245638038062002456833981016040819052620000a5916200033d565b825183908390620000be906002906020850190620001ca565b508051620000d4906003906020840190620001ca565b5050600160005550620000e73362000100565b6001600955620000f78162000152565b5050506200040b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c690600c906020840190620001ca565b5050565b828054620001d890620003ce565b90600052602060002090601f016020900481019282620001fc576000855562000247565b82601f106200021757805160ff191683800117855562000247565b8280016001018555821562000247579182015b82811115620002475782518255916020019190600101906200022a565b506200025592915062000259565b5090565b5b808211156200025557600081556001016200025a565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029857600080fd5b81516001600160401b0380821115620002b557620002b562000270565b604051601f8301601f19908116603f01168101908282118183101715620002e057620002e062000270565b81604052838152602092508683858801011115620002fd57600080fd5b600091505b8382101562000321578582018301518183018401529082019062000302565b83821115620003335760008385830101525b9695505050505050565b6000806000606084860312156200035357600080fd5b83516001600160401b03808211156200036b57600080fd5b620003798783880162000286565b945060208601519150808211156200039057600080fd5b6200039e8783880162000286565b93506040860151915080821115620003b557600080fd5b50620003c48682870162000286565b9150509250925092565b600181811c90821680620003e357607f821691505b602082108114156200040557634e487b7160e01b600052602260045260246000fd5b50919050565b61203b806200041b6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a45ba8e7116100ab578063e0a808531161006f578063e0a8085314610614578063e7db8fb014610634578063e985e9c514610654578063efbd73f41461069d578063f2fde38b146106bd57600080fd5b8063a45ba8e714610589578063b071401b1461059e578063b88d4fde146105be578063c87b56dd146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b1461050d57806394354fd01461052b57806395d89b4114610541578063a0712d6814610556578063a22cb4651461056957600080fd5b806370a08231146104a2578063715018a6146104c25780637ec4a659146104d757806380b17335146104f757600080fd5b80633ccfd60b116101b15780635183022711610175578063518302271461041f5780635503a0e81461043e5780635c975abb1461045357806362b99ad41461046d5780636352211e1461048257600080fd5b80633ccfd60b1461037d57806342842e0e14610392578063438b6300146103b257806344a0d68a146103df5780634fdd43cb146103ff57600080fd5b806313faede6116101f857806313faede6146102db57806316ba10e0146102ff57806316c38b3c1461031f57806318160ddd1461033f57806323b872dd1461035d57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611a26565b6106dd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072f565b6040516102569190611a9b565b34801561028d57600080fd5b506102a161029c366004611aae565b6107c1565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611ae3565b610805565b005b3480156102e757600080fd5b506102f1600d5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611b99565b6108d8565b34801561032b57600080fd5b506102d961033a366004611bf2565b610922565b34801561034b57600080fd5b506102f1600154600054036000190190565b34801561036957600080fd5b506102d9610378366004611c0d565b61095f565b34801561038957600080fd5b506102d961096f565b34801561039e57600080fd5b506102d96103ad366004611c0d565b610a6a565b3480156103be57600080fd5b506103d26103cd366004611c49565b610a85565b6040516102569190611c64565b3480156103eb57600080fd5b506102d96103fa366004611aae565b610b66565b34801561040b57600080fd5b506102d961041a366004611b99565b610b95565b34801561042b57600080fd5b5060115461024a90610100900460ff1681565b34801561044a57600080fd5b50610274610bd2565b34801561045f57600080fd5b5060115461024a9060ff1681565b34801561047957600080fd5b50610274610c60565b34801561048e57600080fd5b506102a161049d366004611aae565b610c6d565b3480156104ae57600080fd5b506102f16104bd366004611c49565b610c78565b3480156104ce57600080fd5b506102d9610cc7565b3480156104e357600080fd5b506102d96104f2366004611b99565b610cfd565b34801561050357600080fd5b506102f1600f5481565b34801561051957600080fd5b506008546001600160a01b03166102a1565b34801561053757600080fd5b506102f160105481565b34801561054d57600080fd5b50610274610d3a565b6102d9610564366004611aae565b610d49565b34801561057557600080fd5b506102d9610584366004611ca8565b610ecd565b34801561059557600080fd5b50610274610f63565b3480156105aa57600080fd5b506102d96105b9366004611aae565b610f70565b3480156105ca57600080fd5b506102d96105d9366004611cdb565b610f9f565b3480156105ea57600080fd5b506102746105f9366004611aae565b610fe9565b34801561060a57600080fd5b506102f1600e5481565b34801561062057600080fd5b506102d961062f366004611bf2565b611158565b34801561064057600080fd5b506102d961064f366004611aae565b61119c565b34801561066057600080fd5b5061024a61066f366004611d57565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a957600080fd5b506102d96106b8366004611d81565b6111cb565b3480156106c957600080fd5b506102d96106d8366004611c49565b6112b9565b60006301ffc9a760e01b6001600160e01b03198316148061070e57506380ac58cd60e01b6001600160e01b03198316145b806107295750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073e90611da4565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90611da4565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b60006107cc82611354565b6107e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081082611389565b9050806001600160a01b0316836001600160a01b031614156108455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087c5761085f813361066f565b61087c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461090b5760405162461bcd60e51b815260040161090290611ddf565b60405180910390fd5b805161091e90600b906020840190611977565b5050565b6008546001600160a01b0316331461094c5760405162461bcd60e51b815260040161090290611ddf565b6011805460ff1916911515919091179055565b61096a8383836113f2565b505050565b6008546001600160a01b031633146109995760405162461bcd60e51b815260040161090290611ddf565b600260095414156109ec5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610902565b60026009556000610a056008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a4f576040519150601f19603f3d011682016040523d82523d6000602084013e610a54565b606091505b5050905080610a6257600080fd5b506001600955565b61096a83838360405180602001604052806000815250610f9f565b60606000610a9283610c78565b905060008167ffffffffffffffff811115610aaf57610aaf611b0d565b604051908082528060200260200182016040528015610ad8578160200160208202803683370190505b509050600160005b8381108015610af15750600e548211155b15610b5c576000610b0183610c6d565b9050866001600160a01b0316816001600160a01b03161415610b495782848381518110610b3057610b30611e14565b602090810291909101015281610b4581611e40565b9250505b82610b5381611e40565b93505050610ae0565b5090949350505050565b6008546001600160a01b03163314610b905760405162461bcd60e51b815260040161090290611ddf565b600d55565b6008546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161090290611ddf565b805161091e90600c906020840190611977565b600b8054610bdf90611da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b90611da4565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b505050505081565b600a8054610bdf90611da4565b600061072982611389565b60006001600160a01b038216610ca1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cf15760405162461bcd60e51b815260040161090290611ddf565b610cfb6000611595565b565b6008546001600160a01b03163314610d275760405162461bcd60e51b815260040161090290611ddf565b805161091e90600a906020840190611977565b60606003805461073e90611da4565b80600081118015610d5c57506010548111155b610d9f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610902565b600e5481610db4600154600054036000190190565b610dbe9190611e5b565b1115610e035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610902565b81600f54610e18600154600054036000190190565b10610e705780600d54610e2b9190611e73565b341015610e705760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610902565b60115460ff1615610ec35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610902565b61096a33846115e7565b6001600160a01b038216331415610ef75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610bdf90611da4565b6008546001600160a01b03163314610f9a5760405162461bcd60e51b815260040161090290611ddf565b601055565b610faa8484846113f2565b6001600160a01b0383163b15610fe357610fc684848484611601565b610fe3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ff482611354565b6110585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610902565b601154610100900460ff166110f957600c805461107490611da4565b80601f01602080910402602001604051908101604052809291908181526020018280546110a090611da4565b80156110ed5780601f106110c2576101008083540402835291602001916110ed565b820191906000526020600020905b8154815290600101906020018083116110d057829003601f168201915b50505050509050919050565b60006111036116f9565b905060008151116111235760405180602001604052806000815250611151565b8061112d84611708565b600b60405160200161114193929190611e92565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111825760405162461bcd60e51b815260040161090290611ddf565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111c65760405162461bcd60e51b815260040161090290611ddf565b600f55565b816000811180156111de57506010548111155b6112215760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610902565b600e5481611236600154600054036000190190565b6112409190611e5b565b11156112855760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610902565b6008546001600160a01b031633146112af5760405162461bcd60e51b815260040161090290611ddf565b61096a82846115e7565b6008546001600160a01b031633146112e35760405162461bcd60e51b815260040161090290611ddf565b6001600160a01b0381166113485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610902565b61135181611595565b50565b600081600111158015611368575060005482105b8015610729575050600090815260046020526040902054600160e01b161590565b600081806001116113d9576000548110156113d957600081815260046020526040902054600160e01b81166113d7575b806111515750600019016000818152600460205260409020546113b9565b505b604051636f96cda160e11b815260040160405180910390fd5b60006113fd82611389565b9050836001600160a01b0316816001600160a01b0316146114305760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061144e575061144e853361066f565b8061146957503361145e846107c1565b6001600160a01b0316145b90508061148957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114b057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661154d576001830160008181526004602052604090205461154b57600054811461154b5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61091e828260405180602001604052806000815250611806565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611636903390899088908890600401611f56565b602060405180830381600087803b15801561165057600080fd5b505af1925050508015611680575060408051601f3d908101601f1916820190925261167d91810190611f93565b60015b6116db573d8080156116ae576040519150601f19603f3d011682016040523d82523d6000602084013e6116b3565b606091505b5080516116d3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461073e90611da4565b60608161172c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611756578061174081611e40565b915061174f9050600a83611fc6565b9150611730565b60008167ffffffffffffffff81111561177157611771611b0d565b6040519080825280601f01601f19166020018201604052801561179b576020820181803683370190505b5090505b84156116f1576117b0600183611fda565b91506117bd600a86611ff1565b6117c8906030611e5b565b60f81b8183815181106117dd576117dd611e14565b60200101906001600160f81b031916908160001a9053506117ff600a86611fc6565b945061179f565b6000546001600160a01b03841661182f57604051622e076360e81b815260040160405180910390fd5b8261184d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611922575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118eb6000878480600101955087611601565b611908576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118a057826000541461191d57600080fd5b611967565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611923575b506000908155610fe39085838684565b82805461198390611da4565b90600052602060002090601f0160209004810192826119a557600085556119eb565b82601f106119be57805160ff19168380011785556119eb565b828001600101855582156119eb579182015b828111156119eb5782518255916020019190600101906119d0565b506119f79291506119fb565b5090565b5b808211156119f757600081556001016119fc565b6001600160e01b03198116811461135157600080fd5b600060208284031215611a3857600080fd5b813561115181611a10565b60005b83811015611a5e578181015183820152602001611a46565b83811115610fe35750506000910152565b60008151808452611a87816020860160208601611a43565b601f01601f19169290920160200192915050565b6020815260006111516020830184611a6f565b600060208284031215611ac057600080fd5b5035919050565b80356001600160a01b0381168114611ade57600080fd5b919050565b60008060408385031215611af657600080fd5b611aff83611ac7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b3e57611b3e611b0d565b604051601f8501601f19908116603f01168101908282118183101715611b6657611b66611b0d565b81604052809350858152868686011115611b7f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bab57600080fd5b813567ffffffffffffffff811115611bc257600080fd5b8201601f81018413611bd357600080fd5b6116f184823560208401611b23565b80358015158114611ade57600080fd5b600060208284031215611c0457600080fd5b61115182611be2565b600080600060608486031215611c2257600080fd5b611c2b84611ac7565b9250611c3960208501611ac7565b9150604084013590509250925092565b600060208284031215611c5b57600080fd5b61115182611ac7565b6020808252825182820181905260009190848201906040850190845b81811015611c9c57835183529284019291840191600101611c80565b50909695505050505050565b60008060408385031215611cbb57600080fd5b611cc483611ac7565b9150611cd260208401611be2565b90509250929050565b60008060008060808587031215611cf157600080fd5b611cfa85611ac7565b9350611d0860208601611ac7565b925060408501359150606085013567ffffffffffffffff811115611d2b57600080fd5b8501601f81018713611d3c57600080fd5b611d4b87823560208401611b23565b91505092959194509250565b60008060408385031215611d6a57600080fd5b611d7383611ac7565b9150611cd260208401611ac7565b60008060408385031215611d9457600080fd5b82359150611cd260208401611ac7565b600181811c90821680611db857607f821691505b60208210811415611dd957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611e5457611e54611e2a565b5060010190565b60008219821115611e6e57611e6e611e2a565b500190565b6000816000190483118215151615611e8d57611e8d611e2a565b500290565b600084516020611ea58285838a01611a43565b855191840191611eb88184848a01611a43565b8554920191600090600181811c9080831680611ed557607f831692505b858310811415611ef357634e487b7160e01b85526022600452602485fd5b808015611f075760018114611f1857611f45565b60ff19851688528388019550611f45565b60008b81526020902060005b85811015611f3d5781548a820152908401908801611f24565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f8990830184611a6f565b9695505050505050565b600060208284031215611fa557600080fd5b815161115181611a10565b634e487b7160e01b600052601260045260246000fd5b600082611fd557611fd5611fb0565b500490565b600082821015611fec57611fec611e2a565b500390565b60008261200057612000611fb0565b50069056fea2646970667358221220f3e601a263a3182bb5bf3022226e145d8402627cce2d69a1116e9fb3af2c9cbc64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f42696742616c6c73506170615774660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642425057544600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6478623334506665656a79645273477836426b317a4e31386a4638416f51616e5a3651466e4b6f6b485333762f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063a45ba8e7116100ab578063e0a808531161006f578063e0a8085314610614578063e7db8fb014610634578063e985e9c514610654578063efbd73f41461069d578063f2fde38b146106bd57600080fd5b8063a45ba8e714610589578063b071401b1461059e578063b88d4fde146105be578063c87b56dd146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b1461050d57806394354fd01461052b57806395d89b4114610541578063a0712d6814610556578063a22cb4651461056957600080fd5b806370a08231146104a2578063715018a6146104c25780637ec4a659146104d757806380b17335146104f757600080fd5b80633ccfd60b116101b15780635183022711610175578063518302271461041f5780635503a0e81461043e5780635c975abb1461045357806362b99ad41461046d5780636352211e1461048257600080fd5b80633ccfd60b1461037d57806342842e0e14610392578063438b6300146103b257806344a0d68a146103df5780634fdd43cb146103ff57600080fd5b806313faede6116101f857806313faede6146102db57806316ba10e0146102ff57806316c38b3c1461031f57806318160ddd1461033f57806323b872dd1461035d57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611a26565b6106dd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072f565b6040516102569190611a9b565b34801561028d57600080fd5b506102a161029c366004611aae565b6107c1565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611ae3565b610805565b005b3480156102e757600080fd5b506102f1600d5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611b99565b6108d8565b34801561032b57600080fd5b506102d961033a366004611bf2565b610922565b34801561034b57600080fd5b506102f1600154600054036000190190565b34801561036957600080fd5b506102d9610378366004611c0d565b61095f565b34801561038957600080fd5b506102d961096f565b34801561039e57600080fd5b506102d96103ad366004611c0d565b610a6a565b3480156103be57600080fd5b506103d26103cd366004611c49565b610a85565b6040516102569190611c64565b3480156103eb57600080fd5b506102d96103fa366004611aae565b610b66565b34801561040b57600080fd5b506102d961041a366004611b99565b610b95565b34801561042b57600080fd5b5060115461024a90610100900460ff1681565b34801561044a57600080fd5b50610274610bd2565b34801561045f57600080fd5b5060115461024a9060ff1681565b34801561047957600080fd5b50610274610c60565b34801561048e57600080fd5b506102a161049d366004611aae565b610c6d565b3480156104ae57600080fd5b506102f16104bd366004611c49565b610c78565b3480156104ce57600080fd5b506102d9610cc7565b3480156104e357600080fd5b506102d96104f2366004611b99565b610cfd565b34801561050357600080fd5b506102f1600f5481565b34801561051957600080fd5b506008546001600160a01b03166102a1565b34801561053757600080fd5b506102f160105481565b34801561054d57600080fd5b50610274610d3a565b6102d9610564366004611aae565b610d49565b34801561057557600080fd5b506102d9610584366004611ca8565b610ecd565b34801561059557600080fd5b50610274610f63565b3480156105aa57600080fd5b506102d96105b9366004611aae565b610f70565b3480156105ca57600080fd5b506102d96105d9366004611cdb565b610f9f565b3480156105ea57600080fd5b506102746105f9366004611aae565b610fe9565b34801561060a57600080fd5b506102f1600e5481565b34801561062057600080fd5b506102d961062f366004611bf2565b611158565b34801561064057600080fd5b506102d961064f366004611aae565b61119c565b34801561066057600080fd5b5061024a61066f366004611d57565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a957600080fd5b506102d96106b8366004611d81565b6111cb565b3480156106c957600080fd5b506102d96106d8366004611c49565b6112b9565b60006301ffc9a760e01b6001600160e01b03198316148061070e57506380ac58cd60e01b6001600160e01b03198316145b806107295750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073e90611da4565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90611da4565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b60006107cc82611354565b6107e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081082611389565b9050806001600160a01b0316836001600160a01b031614156108455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087c5761085f813361066f565b61087c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461090b5760405162461bcd60e51b815260040161090290611ddf565b60405180910390fd5b805161091e90600b906020840190611977565b5050565b6008546001600160a01b0316331461094c5760405162461bcd60e51b815260040161090290611ddf565b6011805460ff1916911515919091179055565b61096a8383836113f2565b505050565b6008546001600160a01b031633146109995760405162461bcd60e51b815260040161090290611ddf565b600260095414156109ec5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610902565b60026009556000610a056008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a4f576040519150601f19603f3d011682016040523d82523d6000602084013e610a54565b606091505b5050905080610a6257600080fd5b506001600955565b61096a83838360405180602001604052806000815250610f9f565b60606000610a9283610c78565b905060008167ffffffffffffffff811115610aaf57610aaf611b0d565b604051908082528060200260200182016040528015610ad8578160200160208202803683370190505b509050600160005b8381108015610af15750600e548211155b15610b5c576000610b0183610c6d565b9050866001600160a01b0316816001600160a01b03161415610b495782848381518110610b3057610b30611e14565b602090810291909101015281610b4581611e40565b9250505b82610b5381611e40565b93505050610ae0565b5090949350505050565b6008546001600160a01b03163314610b905760405162461bcd60e51b815260040161090290611ddf565b600d55565b6008546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161090290611ddf565b805161091e90600c906020840190611977565b600b8054610bdf90611da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b90611da4565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b505050505081565b600a8054610bdf90611da4565b600061072982611389565b60006001600160a01b038216610ca1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cf15760405162461bcd60e51b815260040161090290611ddf565b610cfb6000611595565b565b6008546001600160a01b03163314610d275760405162461bcd60e51b815260040161090290611ddf565b805161091e90600a906020840190611977565b60606003805461073e90611da4565b80600081118015610d5c57506010548111155b610d9f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610902565b600e5481610db4600154600054036000190190565b610dbe9190611e5b565b1115610e035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610902565b81600f54610e18600154600054036000190190565b10610e705780600d54610e2b9190611e73565b341015610e705760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610902565b60115460ff1615610ec35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610902565b61096a33846115e7565b6001600160a01b038216331415610ef75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610bdf90611da4565b6008546001600160a01b03163314610f9a5760405162461bcd60e51b815260040161090290611ddf565b601055565b610faa8484846113f2565b6001600160a01b0383163b15610fe357610fc684848484611601565b610fe3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ff482611354565b6110585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610902565b601154610100900460ff166110f957600c805461107490611da4565b80601f01602080910402602001604051908101604052809291908181526020018280546110a090611da4565b80156110ed5780601f106110c2576101008083540402835291602001916110ed565b820191906000526020600020905b8154815290600101906020018083116110d057829003601f168201915b50505050509050919050565b60006111036116f9565b905060008151116111235760405180602001604052806000815250611151565b8061112d84611708565b600b60405160200161114193929190611e92565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111825760405162461bcd60e51b815260040161090290611ddf565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111c65760405162461bcd60e51b815260040161090290611ddf565b600f55565b816000811180156111de57506010548111155b6112215760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610902565b600e5481611236600154600054036000190190565b6112409190611e5b565b11156112855760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610902565b6008546001600160a01b031633146112af5760405162461bcd60e51b815260040161090290611ddf565b61096a82846115e7565b6008546001600160a01b031633146112e35760405162461bcd60e51b815260040161090290611ddf565b6001600160a01b0381166113485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610902565b61135181611595565b50565b600081600111158015611368575060005482105b8015610729575050600090815260046020526040902054600160e01b161590565b600081806001116113d9576000548110156113d957600081815260046020526040902054600160e01b81166113d7575b806111515750600019016000818152600460205260409020546113b9565b505b604051636f96cda160e11b815260040160405180910390fd5b60006113fd82611389565b9050836001600160a01b0316816001600160a01b0316146114305760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061144e575061144e853361066f565b8061146957503361145e846107c1565b6001600160a01b0316145b90508061148957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114b057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661154d576001830160008181526004602052604090205461154b57600054811461154b5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61091e828260405180602001604052806000815250611806565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611636903390899088908890600401611f56565b602060405180830381600087803b15801561165057600080fd5b505af1925050508015611680575060408051601f3d908101601f1916820190925261167d91810190611f93565b60015b6116db573d8080156116ae576040519150601f19603f3d011682016040523d82523d6000602084013e6116b3565b606091505b5080516116d3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461073e90611da4565b60608161172c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611756578061174081611e40565b915061174f9050600a83611fc6565b9150611730565b60008167ffffffffffffffff81111561177157611771611b0d565b6040519080825280601f01601f19166020018201604052801561179b576020820181803683370190505b5090505b84156116f1576117b0600183611fda565b91506117bd600a86611ff1565b6117c8906030611e5b565b60f81b8183815181106117dd576117dd611e14565b60200101906001600160f81b031916908160001a9053506117ff600a86611fc6565b945061179f565b6000546001600160a01b03841661182f57604051622e076360e81b815260040160405180910390fd5b8261184d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611922575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118eb6000878480600101955087611601565b611908576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118a057826000541461191d57600080fd5b611967565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611923575b506000908155610fe39085838684565b82805461198390611da4565b90600052602060002090601f0160209004810192826119a557600085556119eb565b82601f106119be57805160ff19168380011785556119eb565b828001600101855582156119eb579182015b828111156119eb5782518255916020019190600101906119d0565b506119f79291506119fb565b5090565b5b808211156119f757600081556001016119fc565b6001600160e01b03198116811461135157600080fd5b600060208284031215611a3857600080fd5b813561115181611a10565b60005b83811015611a5e578181015183820152602001611a46565b83811115610fe35750506000910152565b60008151808452611a87816020860160208601611a43565b601f01601f19169290920160200192915050565b6020815260006111516020830184611a6f565b600060208284031215611ac057600080fd5b5035919050565b80356001600160a01b0381168114611ade57600080fd5b919050565b60008060408385031215611af657600080fd5b611aff83611ac7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b3e57611b3e611b0d565b604051601f8501601f19908116603f01168101908282118183101715611b6657611b66611b0d565b81604052809350858152868686011115611b7f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bab57600080fd5b813567ffffffffffffffff811115611bc257600080fd5b8201601f81018413611bd357600080fd5b6116f184823560208401611b23565b80358015158114611ade57600080fd5b600060208284031215611c0457600080fd5b61115182611be2565b600080600060608486031215611c2257600080fd5b611c2b84611ac7565b9250611c3960208501611ac7565b9150604084013590509250925092565b600060208284031215611c5b57600080fd5b61115182611ac7565b6020808252825182820181905260009190848201906040850190845b81811015611c9c57835183529284019291840191600101611c80565b50909695505050505050565b60008060408385031215611cbb57600080fd5b611cc483611ac7565b9150611cd260208401611be2565b90509250929050565b60008060008060808587031215611cf157600080fd5b611cfa85611ac7565b9350611d0860208601611ac7565b925060408501359150606085013567ffffffffffffffff811115611d2b57600080fd5b8501601f81018713611d3c57600080fd5b611d4b87823560208401611b23565b91505092959194509250565b60008060408385031215611d6a57600080fd5b611d7383611ac7565b9150611cd260208401611ac7565b60008060408385031215611d9457600080fd5b82359150611cd260208401611ac7565b600181811c90821680611db857607f821691505b60208210811415611dd957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611e5457611e54611e2a565b5060010190565b60008219821115611e6e57611e6e611e2a565b500190565b6000816000190483118215151615611e8d57611e8d611e2a565b500290565b600084516020611ea58285838a01611a43565b855191840191611eb88184848a01611a43565b8554920191600090600181811c9080831680611ed557607f831692505b858310811415611ef357634e487b7160e01b85526022600452602485fd5b808015611f075760018114611f1857611f45565b60ff19851688528388019550611f45565b60008b81526020902060005b85811015611f3d5781548a820152908401908801611f24565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f8990830184611a6f565b9695505050505050565b600060208284031215611fa557600080fd5b815161115181611a10565b634e487b7160e01b600052601260045260246000fd5b600082611fd557611fd5611fb0565b500490565b600082821015611fec57611fec611e2a565b500390565b60008261200057612000611fb0565b50069056fea2646970667358221220f3e601a263a3182bb5bf3022226e145d8402627cce2d69a1116e9fb3af2c9cbc64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f42696742616c6c73506170615774660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642425057544600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6478623334506665656a79645273477836426b317a4e31386a4638416f51616e5a3651466e4b6f6b485333762f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): BigBallsPapaWtf
Arg [1] : _tokenSymbol (string): BBPWTF
Arg [2] : _hiddenMetadataUri (string): ipfs://Qmdxb34PfeejydRsGx6Bk1zN18jF8AoQanZ6QFnKokHS3v/hidden.json
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 42696742616c6c73506170615774660000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4242505754460000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [8] : 697066733a2f2f516d6478623334506665656a79645273477836426b317a4e31
Arg [9] : 386a4638416f51616e5a3651466e4b6f6b485333762f68696464656e2e6a736f
Arg [10] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46768:4056:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21412:615;;;;;;;;;;-1:-1:-1;21412:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21412:615:0;;;;;;;;26425:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28493:204::-;;;;;;;;;;-1:-1:-1;28493:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28493:204:0;1528:203:1;27953:474:0;;;;;;;;;;-1:-1:-1;27953:474:0;;;;;:::i;:::-;;:::i;:::-;;46980:33;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;46980:33:0;2173:177:1;49939:100:0;;;;;;;;;;-1:-1:-1;49939:100:0;;;;;:::i;:::-;;:::i;50045:77::-;;;;;;;;;;-1:-1:-1;50045:77:0;;;;;:::i;:::-;;:::i;20466:315::-;;;;;;;;;;;;48928:1;20732:12;20519:7;20716:13;:28;-1:-1:-1;;20716:46:0;;20466:315;29379:170;;;;;;;;;;-1:-1:-1;29379:170:0;;;;;:::i;:::-;;:::i;50224:150::-;;;;;;;;;;;;;:::i;29620:185::-;;;;;;;;;;-1:-1:-1;29620:185:0;;;;;:::i;:::-;;:::i;48217:617::-;;;;;;;;;;-1:-1:-1;48217:617:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49479:74::-;;;;;;;;;;-1:-1:-1;49479:74:0;;;;;:::i;:::-;;:::i;49695:132::-;;;;;;;;;;-1:-1:-1;49695:132:0;;;;;:::i;:::-;;:::i;47164:28::-;;;;;;;;;;-1:-1:-1;47164:28:0;;;;;;;;;;;46902:33;;;;;;;;;;;;;:::i;47134:25::-;;;;;;;;;;-1:-1:-1;47134:25:0;;;;;;;;46869:28;;;;;;;;;;;;;:::i;26214:144::-;;;;;;;;;;-1:-1:-1;26214:144:0;;;;;:::i;:::-;;:::i;22091:224::-;;;;;;;;;;-1:-1:-1;22091:224:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;49833:100::-;;;;;;;;;;-1:-1:-1;49833:100:0;;;;;:::i;:::-;;:::i;47054:30::-;;;;;;;;;;;;;;;;6871:87;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;47089:38;;;;;;;;;;;;;;;;26594:104;;;;;;;;;;;;;:::i;47836:212::-;;;;;;:::i;:::-;;:::i;28769:308::-;;;;;;;;;;-1:-1:-1;28769:308:0;;;;;:::i;:::-;;:::i;46940:31::-;;;;;;;;;;;;;:::i;49559:130::-;;;;;;;;;;-1:-1:-1;49559:130:0;;;;;:::i;:::-;;:::i;29876:396::-;;;;;;;;;;-1:-1:-1;29876:396:0;;;;;:::i;:::-;;:::i;48941:445::-;;;;;;;;;;-1:-1:-1;48941:445:0;;;;;:::i;:::-;;:::i;47018:31::-;;;;;;;;;;;;;;;;49392:81;;;;;;;;;;-1:-1:-1;49392:81:0;;;;;:::i;:::-;;:::i;50128:90::-;;;;;;;;;;-1:-1:-1;50128:90:0;;;;;:::i;:::-;;:::i;29148:164::-;;;;;;;;;;-1:-1:-1;29148:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29269:25:0;;;29245:4;29269:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29148:164;48056:155;;;;;;;;;;-1:-1:-1;48056:155:0;;;;;:::i;:::-;;:::i;7780:201::-;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;21412:615::-;21497:4;-1:-1:-1;;;;;;;;;21797:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21874:25:0;;;21797:102;:179;;;-1:-1:-1;;;;;;;;;;21951:25:0;;;21797:179;21777:199;21412:615;-1:-1:-1;;21412:615:0:o;26425:100::-;26479:13;26512:5;26505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26425:100;:::o;28493:204::-;28561:7;28586:16;28594:7;28586;:16::i;:::-;28581:64;;28611:34;;-1:-1:-1;;;28611:34:0;;;;;;;;;;;28581:64;-1:-1:-1;28665:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28665:24:0;;28493:204::o;27953:474::-;28026:13;28058:27;28077:7;28058:18;:27::i;:::-;28026:61;;28108:5;-1:-1:-1;;;;;28102:11:0;:2;-1:-1:-1;;;;;28102:11:0;;28098:48;;;28122:24;;-1:-1:-1;;;28122:24:0;;;;;;;;;;;28098:48;44596:10;-1:-1:-1;;;;;28163:28:0;;;28159:175;;28211:44;28228:5;44596:10;29148:164;:::i;28211:44::-;28206:128;;28283:35;;-1:-1:-1;;;28283:35:0;;;;;;;;;;;28206:128;28346:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28346:29:0;-1:-1:-1;;;;;28346:29:0;;;;;;;;;28391:28;;28346:24;;28391:28;;;;;;;28015:412;27953:474;;:::o;49939:100::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;;;;;;;;;50011:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49939:100:::0;:::o;50045:77::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;50101:6:::1;:15:::0;;-1:-1:-1;;50101:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50045:77::o;29379:170::-;29513:28;29523:4;29529:2;29533:7;29513:9;:28::i;:::-;29379:170;;;:::o;50224:150::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;::::0;-1:-1:-1;;;2435:63:0;;7494:2:1;2435:63:0::1;::::0;::::1;7476:21:1::0;7533:2;7513:18;;;7506:30;7572:33;7552:18;;;7545:61;7623:18;;2435:63:0::1;7292:355:1::0;2435:63:0::1;1845:1;2576:7;:18:::0;50282:7:::2;50303;6944:6:::0;;-1:-1:-1;;;;;6944:6:0;;6871:87;50303:7:::2;-1:-1:-1::0;;;;;50295:21:0::2;50324;50295:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50281:69;;;50365:2;50357:11;;;::::0;::::2;;-1:-1:-1::0;1801:1:0::1;2755:7;:22:::0;50224:150::o;29620:185::-;29758:39;29775:4;29781:2;29785:7;29758:39;;;;;;;;;;;;:16;:39::i;48217:617::-;48277:16;48302:23;48328:17;48338:6;48328:9;:17::i;:::-;48302:43;;48352:30;48399:15;48385:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48385:30:0;-1:-1:-1;48352:63:0;-1:-1:-1;48447:1:0;48422:22;48491:309;48516:15;48498;:33;:64;;;;;48553:9;;48535:14;:27;;48498:64;48491:309;;;48573:25;48601:23;48609:14;48601:7;:23::i;:::-;48573:51;;48660:6;-1:-1:-1;;;;;48639:27:0;:17;-1:-1:-1;;;;;48639:27:0;;48635:131;;;48712:14;48679:13;48693:15;48679:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;48739:17;;;;:::i;:::-;;;;48635:131;48776:16;;;;:::i;:::-;;;;48564:236;48491:309;;;-1:-1:-1;48815:13:0;;48217:617;-1:-1:-1;;;;48217:617:0:o;49479:74::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;49535:4:::1;:12:::0;49479:74::o;49695:132::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;49783:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;46902:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46869:28::-;;;;;;;:::i;26214:144::-;26278:7;26321:27;26340:7;26321:18;:27::i;22091:224::-;22155:7;-1:-1:-1;;;;;22179:19:0;;22175:60;;22207:28;;-1:-1:-1;;;22207:28:0;;;;;;;;;;;22175:60;-1:-1:-1;;;;;;22253:25:0;;;;;:18;:25;;;;;;17430:13;22253:54;;22091:224::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;49833:100::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;49905:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26594:104::-:0;26650:13;26683:7;26676:14;;;;;:::i;47836:212::-;47901:11;47486:1;47472:11;:15;:52;;;;;47506:18;;47491:11;:33;;47472:52;47464:85;;;;-1:-1:-1;;;47464:85:0;;8468:2:1;47464:85:0;;;8450:21:1;8507:2;8487:18;;;8480:30;-1:-1:-1;;;8526:18:1;;;8519:50;8586:18;;47464:85:0;8266:344:1;47464:85:0;47595:9;;47580:11;47564:13;48928:1;20732:12;20519:7;20716:13;:28;-1:-1:-1;;20716:46:0;;20466:315;47564:13;:27;;;;:::i;:::-;:40;;47556:73;;;;-1:-1:-1;;;47556:73:0;;8950:2:1;47556:73:0;;;8932:21:1;8989:2;8969:18;;;8962:30;-1:-1:-1;;;9008:18:1;;;9001:50;9068:18;;47556:73:0;8748:344:1;47556:73:0;47934:11:::1;47726:9;;47709:13;48928:1:::0;20732:12;20519:7;20716:13;:28;-1:-1:-1;;20716:46:0;;20466:315;47709:13:::1;:26;47706:111;;47774:11;47767:4;;:18;;;;:::i;:::-;47754:9;:31;;47746:63;;;::::0;-1:-1:-1;;;47746:63:0;;9472:2:1;47746:63:0::1;::::0;::::1;9454:21:1::0;9511:2;9491:18;;;9484:30;-1:-1:-1;;;9530:18:1;;;9523:49;9589:18;;47746:63:0::1;9270:343:1::0;47746:63:0::1;47963:6:::2;::::0;::::2;;47962:7;47954:43;;;::::0;-1:-1:-1;;;47954:43:0;;9820:2:1;47954:43:0::2;::::0;::::2;9802:21:1::0;9859:2;9839:18;;;9832:30;9898:25;9878:18;;;9871:53;9941:18;;47954:43:0::2;9618:347:1::0;47954:43:0::2;48006:36;44596:10:::0;48030:11:::2;48006:9;:36::i;28769:308::-:0;-1:-1:-1;;;;;28868:31:0;;44596:10;28868:31;28864:61;;;28908:17;;-1:-1:-1;;;28908:17:0;;;;;;;;;;;28864:61;44596:10;28938:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28938:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28938:60:0;;;;;;;;;;29014:55;;540:41:1;;;28938:49:0;;44596:10;29014:55;;513:18:1;29014:55:0;;;;;;;28769:308;;:::o;46940:31::-;;;;;;;:::i;49559:130::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;49643:18:::1;:40:::0;49559:130::o;29876:396::-;30043:28;30053:4;30059:2;30063:7;30043:9;:28::i;:::-;-1:-1:-1;;;;;30086:14:0;;;:19;30082:183;;30125:56;30156:4;30162:2;30166:7;30175:5;30125:30;:56::i;:::-;30120:145;;30209:40;;-1:-1:-1;;;30209:40:0;;;;;;;;;;;30120:145;29876:396;;;;:::o;48941:445::-;49015:13;49045:17;49053:8;49045:7;:17::i;:::-;49037:77;;;;-1:-1:-1;;;49037:77:0;;10172:2:1;49037:77:0;;;10154:21:1;10211:2;10191:18;;;10184:30;10250:34;10230:18;;;10223:62;-1:-1:-1;;;10301:18:1;;;10294:45;10356:19;;49037:77:0;9970:411:1;49037:77:0;49127:8;;;;;;;49123:64;;49162:17;49155:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48941:445;;;:::o;49123:64::-;49195:28;49226:10;:8;:10::i;:::-;49195:41;;49281:1;49256:14;49250:28;:32;:130;;;;;;;;;;;;;;;;;49318:14;49334:19;:8;:17;:19::i;:::-;49355:9;49301:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49250:130;49243:137;48941:445;-1:-1:-1;;;48941:445:0:o;49392:81::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;49450:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;49450:17:0;;::::1;::::0;;;::::1;::::0;;49392:81::o;50128:90::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;50192:9:::1;:20:::0;50128:90::o;48056:155::-;48142:11;47486:1;47472:11;:15;:52;;;;;47506:18;;47491:11;:33;;47472:52;47464:85;;;;-1:-1:-1;;;47464:85:0;;8468:2:1;47464:85:0;;;8450:21:1;8507:2;8487:18;;;8480:30;-1:-1:-1;;;8526:18:1;;;8519:50;8586:18;;47464:85:0;8266:344:1;47464:85:0;47595:9;;47580:11;47564:13;48928:1;20732:12;20519:7;20716:13;:28;-1:-1:-1;;20716:46:0;;20466:315;47564:13;:27;;;;:::i;:::-;:40;;47556:73;;;;-1:-1:-1;;;47556:73:0;;8950:2:1;47556:73:0;;;8932:21:1;8989:2;8969:18;;;8962:30;-1:-1:-1;;;9008:18:1;;;9001:50;9068:18;;47556:73:0;8748:344:1;47556:73:0;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23:::1;7083:68;;;;-1:-1:-1::0;;;7083:68:0::1;;;;;;;:::i;:::-;48172:33:::2;48182:9;48193:11;48172:9;:33::i;7780:201::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;12246:2:1;7861:73:0::1;::::0;::::1;12228:21:1::0;12285:2;12265:18;;;12258:30;12324:34;12304:18;;;12297:62;-1:-1:-1;;;12375:18:1;;;12368:36;12421:19;;7861:73:0::1;12044:402:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;30527:273::-;30584:4;30640:7;48928:1;30621:26;;:66;;;;;30674:13;;30664:7;:23;30621:66;:152;;;;-1:-1:-1;;30725:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30725:43:0;:48;;30527:273::o;23729:1129::-;23796:7;23831;;48928:1;23880:23;23876:915;;23933:13;;23926:4;:20;23922:869;;;23971:14;23988:23;;;:17;:23;;;;;;-1:-1:-1;;;24077:23:0;;24073:699;;24596:113;24603:11;24596:113;;-1:-1:-1;;;24674:6:0;24656:25;;;;:17;:25;;;;;;24596:113;;24073:699;23948:843;23922:869;24819:31;;-1:-1:-1;;;24819:31:0;;;;;;;;;;;35766:2515;35881:27;35911;35930:7;35911:18;:27::i;:::-;35881:57;;35996:4;-1:-1:-1;;;;;35955:45:0;35971:19;-1:-1:-1;;;;;35955:45:0;;35951:86;;36009:28;;-1:-1:-1;;;36009:28:0;;;;;;;;;;;35951:86;36050:22;44596:10;-1:-1:-1;;;;;36076:27:0;;;;:87;;-1:-1:-1;36120:43:0;36137:4;44596:10;29148:164;:::i;36120:43::-;36076:147;;;-1:-1:-1;44596:10:0;36180:20;36192:7;36180:11;:20::i;:::-;-1:-1:-1;;;;;36180:43:0;;36076:147;36050:174;;36242:17;36237:66;;36268:35;;-1:-1:-1;;;36268:35:0;;;;;;;;;;;36237:66;-1:-1:-1;;;;;36318:16:0;;36314:52;;36343:23;;-1:-1:-1;;;36343:23:0;;;;;;;;;;;36314:52;36495:24;;;;:15;:24;;;;;;;;36488:31;;-1:-1:-1;;;;;;36488:31:0;;;-1:-1:-1;;;;;36887:24:0;;;;;:18;:24;;;;;36885:26;;-1:-1:-1;;36885:26:0;;;36956:22;;;;;;;36954:24;;-1:-1:-1;36954:24:0;;;37249:26;;;:17;:26;;;;;-1:-1:-1;;;37337:15:0;18084:3;37337:41;37295:84;;:128;;37249:174;;;37543:46;;37539:626;;37647:1;37637:11;;37615:19;37770:30;;;:17;:30;;;;;;37766:384;;37908:13;;37893:11;:28;37889:242;;38055:30;;;;:17;:30;;;;;:52;;;37889:242;37596:569;37539:626;38212:7;38208:2;-1:-1:-1;;;;;38193:27:0;38202:4;-1:-1:-1;;;;;38193:27:0;;;;;;;;;;;35870:2411;;35766:2515;;;:::o;8141:191::-;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;;;;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;30884:104::-;30953:27;30963:2;30967:8;30953:27;;;;;;;;;;;;:9;:27::i;41978:716::-;42162:88;;-1:-1:-1;;;42162:88:0;;42141:4;;-1:-1:-1;;;;;42162:45:0;;;;;:88;;44596:10;;42229:4;;42235:7;;42244:5;;42162:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42162:88:0;;;;;;;;-1:-1:-1;;42162:88:0;;;;;;;;;;;;:::i;:::-;;;42158:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42445:13:0;;42441:235;;42491:40;;-1:-1:-1;;;42491:40:0;;;;;;;;;;;42441:235;42634:6;42628:13;42619:6;42615:2;42611:15;42604:38;42158:529;-1:-1:-1;;;;;;42321:64:0;-1:-1:-1;;;42321:64:0;;-1:-1:-1;42158:529:0;41978:716;;;;;;:::o;50380:104::-;50440:13;50469:9;50462:16;;;;;:::i;3157:723::-;3213:13;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3747:56:0;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;31361:2236;31484:20;31507:13;-1:-1:-1;;;;;31535:16:0;;31531:48;;31560:19;;-1:-1:-1;;;31560:19:0;;;;;;;;;;;31531:48;31594:13;31590:44;;31616:18;;-1:-1:-1;;;31616:18:0;;;;;;;;;;;31590:44;-1:-1:-1;;;;;32183:22:0;;;;;;:18;:22;;;;17567:2;32183:22;;;:70;;32221:31;32209:44;;32183:70;;;32496:31;;;:17;:31;;;;;32589:15;18084:3;32589:41;32547:84;;-1:-1:-1;32667:13:0;;18347:3;32652:56;32547:162;32496:213;;:31;;32790:23;;;;32834:14;:19;32830:635;;32874:313;32905:38;;32930:12;;-1:-1:-1;;;;;32905:38:0;;;32922:1;;32905:38;;32922:1;;32905:38;32971:69;33010:1;33014:2;33018:14;;;;;;33034:5;32971:30;:69::i;:::-;32966:174;;33076:40;;-1:-1:-1;;;33076:40:0;;;;;;;;;;;32966:174;33182:3;33167:12;:18;32874:313;;33268:12;33251:13;;:29;33247:43;;33282:8;;;33247:43;32830:635;;;33331:119;33362:40;;33387:14;;;;;-1:-1:-1;;;;;33362:40:0;;;33379:1;;33362:40;;33379:1;;33362:40;33445:3;33430:12;:18;33331:119;;32830:635;-1:-1:-1;33479:13:0;:28;;;33529:60;;33562:2;33566:12;33580:8;33529: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:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;2582:18;2623:2;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:1;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;3335:18;3327:6;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:1;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:254::-;6355:6;6363;6416:2;6404:9;6395:7;6391:23;6387:32;6384:52;;;6432:1;6429;6422:12;6384:52;6468:9;6455:23;6445:33;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;6931:356::-;7133:2;7115:21;;;7152:18;;;7145:30;7211:34;7206:2;7191:18;;7184:62;7278:2;7263:18;;6931:356::o;7862:127::-;7923:10;7918:3;7914:20;7911:1;7904:31;7954:4;7951:1;7944:15;7978:4;7975:1;7968:15;7994:127;8055:10;8050:3;8046:20;8043:1;8036:31;8086:4;8083:1;8076:15;8110:4;8107:1;8100:15;8126:135;8165:3;-1:-1:-1;;8186:17:1;;8183:43;;;8206:18;;:::i;:::-;-1:-1:-1;8253:1:1;8242:13;;8126:135::o;8615:128::-;8655:3;8686:1;8682:6;8679:1;8676:13;8673:39;;;8692:18;;:::i;:::-;-1:-1:-1;8728:9:1;;8615:128::o;9097:168::-;9137:7;9203:1;9199;9195:6;9191:14;9188:1;9185:21;9180:1;9173:9;9166:17;9162:45;9159:71;;;9210:18;;:::i;:::-;-1:-1:-1;9250:9:1;;9097:168::o;10512:1527::-;10736:3;10774:6;10768:13;10800:4;10813:51;10857:6;10852:3;10847:2;10839:6;10835:15;10813:51;:::i;:::-;10927:13;;10886:16;;;;10949:55;10927:13;10886:16;10971:15;;;10949:55;:::i;:::-;11093:13;;11026:20;;;11066:1;;11153;11175:18;;;;11228;;;;11255:93;;11333:4;11323:8;11319:19;11307:31;;11255:93;11396:2;11386:8;11383:16;11363:18;11360:40;11357:167;;;-1:-1:-1;;;11423:33:1;;11479:4;11476:1;11469:15;11509:4;11430:3;11497:17;11357:167;11540:18;11567:110;;;;11691:1;11686:328;;;;11533:481;;11567:110;-1:-1:-1;;11602:24:1;;11588:39;;11647:20;;;;-1:-1:-1;11567:110:1;;11686:328;10459:1;10452:14;;;10496:4;10483:18;;11781:1;11795:169;11809:8;11806:1;11803:15;11795:169;;;11891:14;;11876:13;;;11869:37;11934:16;;;;11826:10;;11795:169;;;11799:3;;11995:8;11988:5;11984:20;11977:27;;11533:481;-1:-1:-1;12030:3:1;;10512:1527;-1:-1:-1;;;;;;;;;;;10512:1527:1:o;12451:489::-;-1:-1:-1;;;;;12720:15:1;;;12702:34;;12772:15;;12767:2;12752:18;;12745:43;12819:2;12804:18;;12797:34;;;12867:3;12862:2;12847:18;;12840:31;;;12645:4;;12888:46;;12914:19;;12906:6;12888:46;:::i;:::-;12880:54;12451:489;-1:-1:-1;;;;;;12451:489:1:o;12945:249::-;13014:6;13067:2;13055:9;13046:7;13042:23;13038:32;13035:52;;;13083:1;13080;13073:12;13035:52;13115:9;13109:16;13134:30;13158:5;13134:30;:::i;13199:127::-;13260:10;13255:3;13251:20;13248:1;13241:31;13291:4;13288:1;13281:15;13315:4;13312:1;13305:15;13331:120;13371:1;13397;13387:35;;13402:18;;:::i;:::-;-1:-1:-1;13436:9:1;;13331:120::o;13456:125::-;13496:4;13524:1;13521;13518:8;13515:34;;;13529:18;;:::i;:::-;-1:-1:-1;13566:9:1;;13456:125::o;13586:112::-;13618:1;13644;13634:35;;13649:18;;:::i;:::-;-1:-1:-1;13683:9:1;;13586:112::o
Swarm Source
ipfs://f3e601a263a3182bb5bf3022226e145d8402627cce2d69a1116e9fb3af2c9cbc
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.