ERC-721
Overview
Max Total Supply
1,060 BBMF
Holders
58
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
40 BBMFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Bobomfers
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-09 */ // File: @openzeppelin\contracts\utils\introspection\IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); } // File: @openzeppelin\contracts\token\ERC721\IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin\contracts\token\ERC721\IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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: @openzeppelin\contracts\token\ERC721\extensions\IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin\contracts\utils\Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // 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\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\introspection\ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: erc721a\contracts\ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 && !_ownerships[tokenId].burned; } 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 { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) 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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { 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 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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == 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 {} } // File: contracts\Bobomfers.sol // SPDX-License-Identifier: MIT /* _____ _ ___ | __ |___| |_ ___ _____| _|___ ___ ___ | __ -| . | . | . | | _| -_| _|_ -| |_____|___|___|___|_|_|_|_| |___|_| |___| *****************. ************************ ***************************, *************. .************** *** *********** **%&%% *********** * ********. . %&%%%%& %.**%%%%%%%%##%%%%%%%#((((#%%%%%%&%%%%%%%%%&%. (&&&&%&%&%%%%%(. ..,,**####### .%&&%%%%%%%&%% &%%%&%%%%%&% #####,A@KA $HP# ##,#%&&&%%%%%&%/ &%&%%%%%%&&%% ## *###(,%&%%&&&% %%%&%%%%&%%%% *#######/ *((, (###/. (%%%%%&%&& &&&&&%&&%%%%%%%#####( %%%%%%%%%%%%%%&& &&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%#%%&&%% %%%%%&%%%%%%%%%%%%%%%%%%%%%%%% &%%%%%%%%%%#((%%%%%%%%%%%%& #%&%%%%((((#*,**((((%%%&% ,.. %%%%%%((********(((%%%&% // ,,.,. %&%&%%%%%%%%%%%%%&%&( /&&&&/ .,*,,. %%%%%%%%%&%&& %%&&&& .,*,,, &%&& &B&%&& **,*,,. &%%& %A%%& ,,,,,*. ,*,****,****. &&&&&&@&%/////////%N%%& **,,,**. **,. ***, ***,///////,**, #@ & &&&&&&&&&&&&#A%%& *..*,,,* **,, **,* &N%#% ..,,,,* / *,*, **,* ,**//*,/*,,,***, %&&&&&&&&&&&&&&&&&&%A&&& ..,,,,*. *,,/////// .,**, &&&%%%%%%%%%&&&&&&&/ /// .,,,,,,., ,*******.***, ( *,,,,,,,. *************.**** & */ pragma solidity ^0.8.4; contract Bobomfers is ERC721A { using Strings for uint256; uint256 public cost = 0.0069 ether; uint256 public freeMints = 1000; bool public salePaused = true; uint256 public constant maxMints = 20; uint256 public constant maxSupply = 8888; address public constant ownerWallet = 0xcd21866158d7f2F1303C905476d0cEa09b849e11; address public constant devWallet = 0xFf7235657b8D083e18A1B59Ca49D1D4785466ce2; address public owner; string public contractMetadata; string public baseTokenURI; string erm = "Unauthorized"; constructor(string memory _contractMetadata, string memory _baseTokenURI) ERC721A("Bobomfers", "BBMF") { owner = msg.sender; contractMetadata = _contractMetadata; baseTokenURI = _baseTokenURI; } function _mint(address to, uint256 amount) internal { _safeMint(to, amount); } function mint(uint256 quantity) external payable { uint256 supply = totalSupply(); uint256 mintCost = (supply <= freeMints) ? 0 : cost; if (msg.sender == owner) { mintCost = 0; } else { require(!salePaused, "Sale paused"); require(quantity <= maxMints, "Exceeded max mints per trx"); } require(quantity > 0, "Mint atleast 1"); require(supply + quantity <= maxSupply, "Sold out!"); require(msg.value >= mintCost * quantity, "Insufficient funds"); _mint(msg.sender, quantity); } function airdrop(address to, uint256 quantity) external { require(msg.sender == owner, erm); uint256 supply = totalSupply(); require(supply + quantity <= maxSupply, "Sold out!"); _mint(to, quantity); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function contractURI() public view returns (string memory) { return contractMetadata; } function getCost() public view returns (uint256) { uint256 currentCost = (totalSupply() <= freeMints) ? 0 : cost; return currentCost; } function setCost(uint256 _newCost) external { require(msg.sender == owner, erm); cost = _newCost; } function setFreeMints(uint256 _newfreeMints) external { require(msg.sender == owner, erm); freeMints = _newfreeMints; } function setBaseTokenUri(string memory _base) external { require(msg.sender == owner, erm); baseTokenURI = _base; } function setcontractMeta(string memory _newMeta) external { require(msg.sender == owner, erm); contractMetadata = _newMeta; } function pauseSale(bool _state) external { require(msg.sender == owner, erm); salePaused = _state; } function withdraw() external { require(msg.sender == owner, erm); payable(devWallet).transfer(address(this).balance * 15 / 100); payable(ownerWallet).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_contractMetadata","type":"string"},{"internalType":"string","name":"_baseTokenURI","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":"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":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMints","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreeMints","type":"uint256"}],"name":"setFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newMeta","type":"string"}],"name":"setcontractMeta","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6618838370f340006008556103e8600955600a805460ff1916600117905560c0604052600c60808190526b155b985d5d1a1bdc9a5e995960a21b60a09081526200004d91600d919062000133565b503480156200005b57600080fd5b5060405162002073380380620020738339810160408190526200007e916200028c565b6040805180820182526009815268426f626f6d6665727360b81b602080830191825283518085019094526004845263212126a360e11b908401528151919291620000cb9160029162000133565b508051620000e190600390602084019062000133565b50600080555050600a8054610100600160a81b031916336101000217905581516200011490600b90602085019062000133565b5080516200012a90600c90602084019062000133565b50505062000346565b8280546200014190620002f3565b90600052602060002090601f016020900481019282620001655760008555620001b0565b82601f106200018057805160ff1916838001178555620001b0565b82800160010185558215620001b0579182015b82811115620001b057825182559160200191906001019062000193565b50620001be929150620001c2565b5090565b5b80821115620001be5760008155600101620001c3565b600082601f830112620001ea578081fd5b81516001600160401b038082111562000207576200020762000330565b604051601f8301601f19908116603f0116810190828211818310171562000232576200023262000330565b816040528381526020925086838588010111156200024e578485fd5b8491505b8382101562000271578582018301518183018401529082019062000252565b838211156200028257848385830101525b9695505050505050565b600080604083850312156200029f578182fd5b82516001600160401b0380821115620002b6578384fd5b620002c486838701620001d9565b93506020850151915080821115620002da578283fd5b50620002e985828601620001d9565b9150509250929050565b600181811c908216806200030857607f821691505b602082108114156200032a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611d1d80620003566000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b6b6f0c3116100a0578063d547cfb71161006f578063d547cfb71461058d578063d5abeb01146105a2578063e7db8fb0146105b8578063e8a3d485146105d8578063e985e9c5146105ed57600080fd5b8063b6b6f0c314610523578063b88d4fde14610538578063bd3e19d414610558578063c87b56dd1461056d57600080fd5b806395d89b41116100dc57806395d89b41146104c6578063a0712d68146104db578063a22cb465146104ee578063a76b4d561461050e57600080fd5b80638da5cb5b146104315780638ea5220f146104565780639335dcb71461047e57806395652cfa146104a657600080fd5b806323b872dd116101905780635d08c1ae1161015f5780635d08c1ae146103a15780636352211e146103bb57806370a08231146103db57806380b17335146103fb5780638ba4cc3c1461041157600080fd5b806323b872dd1461032c5780633ccfd60b1461034c57806342842e0e1461036157806344a0d68a1461038157600080fd5b80630cfed2a2116101cc5780630cfed2a2146102af57806313faede6146102cf57806318160ddd146102f35780631b7918381461030c57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046119b0565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610688565b60405161022a9190611ade565b34801561026157600080fd5b50610275610270366004611a2e565b61071a565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461196d565b61075e565b005b3480156102bb57600080fd5b506102ad6102ca366004611996565b6107ec565b3480156102db57600080fd5b506102e560085481565b60405190815260200161022a565b3480156102ff57600080fd5b50600154600054036102e5565b34801561031857600080fd5b506102ad6103273660046119e8565b61083c565b34801561033857600080fd5b506102ad610347366004611890565b610887565b34801561035857600080fd5b506102ad610892565b34801561036d57600080fd5b506102ad61037c366004611890565b610961565b34801561038d57600080fd5b506102ad61039c366004611a2e565b61097c565b3480156103ad57600080fd5b50600a5461021e9060ff1681565b3480156103c757600080fd5b506102756103d6366004611a2e565b6109b5565b3480156103e757600080fd5b506102e56103f6366004611844565b6109c7565b34801561040757600080fd5b506102e560095481565b34801561041d57600080fd5b506102ad61042c36600461196d565b610a16565b34801561043d57600080fd5b50600a546102759061010090046001600160a01b031681565b34801561046257600080fd5b5061027573ff7235657b8d083e18a1b59ca49d1d4785466ce281565b34801561048a57600080fd5b5061027573cd21866158d7f2f1303c905476d0cea09b849e1181565b3480156104b257600080fd5b506102ad6104c13660046119e8565b610aac565b3480156104d257600080fd5b50610248610af3565b6102ad6104e9366004611a2e565b610b02565b3480156104fa57600080fd5b506102ad610509366004611944565b610cbf565b34801561051a57600080fd5b50610248610d55565b34801561052f57600080fd5b506102e5601481565b34801561054457600080fd5b506102ad6105533660046118cb565b610de3565b34801561056457600080fd5b506102e5610e34565b34801561057957600080fd5b50610248610588366004611a2e565b610e5d565b34801561059957600080fd5b50610248610ee2565b3480156105ae57600080fd5b506102e56122b881565b3480156105c457600080fd5b506102ad6105d3366004611a2e565b610eef565b3480156105e457600080fd5b50610248610f28565b3480156105f957600080fd5b5061021e61060836600461185e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061066757506001600160e01b03198216635b5e139f60e01b145b8061068257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069790611c25565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611c25565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600061072582610f37565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610769826109b5565b9050806001600160a01b0316836001600160a01b0316141561079e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107be57506107bc8133610608565b155b156107dc576040516367d9dca160e11b815260040160405180910390fd5b6107e7838383610f62565b505050565b600a54600d9061010090046001600160a01b031633146108285760405162461bcd60e51b815260040161081f9190611af1565b60405180910390fd5b50600a805460ff1916911515919091179055565b600a54600d9061010090046001600160a01b0316331461086f5760405162461bcd60e51b815260040161081f9190611af1565b50805161088390600b906020840190611709565b5050565b6107e7838383610fbe565b600a54600d9061010090046001600160a01b031633146108c55760405162461bcd60e51b815260040161081f9190611af1565b5073ff7235657b8d083e18a1b59ca49d1d4785466ce26108fc60646108eb47600f611bc3565b6108f59190611baf565b6040518115909202916000818181858888f1935050505015801561091d573d6000803e3d6000fd5b5060405173cd21866158d7f2f1303c905476d0cea09b849e11904780156108fc02916000818181858888f1935050505015801561095e573d6000803e3d6000fd5b50565b6107e783838360405180602001604052806000815250610de3565b600a54600d9061010090046001600160a01b031633146109af5760405162461bcd60e51b815260040161081f9190611af1565b50600855565b60006109c0826111d4565b5192915050565b60006001600160a01b0382166109f0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600a54600d9061010090046001600160a01b03163314610a495760405162461bcd60e51b815260040161081f9190611af1565b506000610a596001546000540390565b90506122b8610a688383611b97565b1115610aa25760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b6107e783836112f0565b600a54600d9061010090046001600160a01b03163314610adf5760405162461bcd60e51b815260040161081f9190611af1565b50805161088390600c906020840190611709565b60606003805461069790611c25565b6000610b116001546000540390565b90506000600954821115610b2757600854610b2a565b60005b600a5490915061010090046001600160a01b0316331415610b4d57506000610bdf565b600a5460ff1615610b8e5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b604482015260640161081f565b6014831115610bdf5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e74732070657220747278000000000000604482015260640161081f565b60008311610c205760405162461bcd60e51b815260206004820152600e60248201526d4d696e742061746c65617374203160901b604482015260640161081f565b6122b8610c2d8484611b97565b1115610c675760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b610c718382611bc3565b341015610cb55760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081f565b6107e733846112f0565b6001600160a01b038216331415610ce95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610d6290611c25565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8e90611c25565b8015610ddb5780601f10610db057610100808354040283529160200191610ddb565b820191906000526020600020905b815481529060010190602001808311610dbe57829003601f168201915b505050505081565b610dee848484610fbe565b6001600160a01b0383163b15158015610e105750610e0e848484846112fa565b155b15610e2e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600080600954610e476001546000540390565b1115610e5557600854610682565b600092915050565b6060610e6882610f37565b610e8557604051630a14c4b560e41b815260040160405180910390fd5b6000610e8f6113f2565b9050805160001415610eb05760405180602001604052806000815250610edb565b80610eba84611401565b604051602001610ecb929190611a72565b6040516020818303038152906040525b9392505050565b600c8054610d6290611c25565b600a54600d9061010090046001600160a01b03163314610f225760405162461bcd60e51b815260040161081f9190611af1565b50600955565b6060600b805461069790611c25565b6000805482108015610682575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fc9826111d4565b80519091506000906001600160a01b0316336001600160a01b03161480610ff757508151610ff79033610608565b806110125750336110078461071a565b6001600160a01b0316145b90508061103257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110675760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661108e57604051633a954ecd60e21b815260040160405180910390fd5b61109e6000848460000151610f62565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661118a5760005481101561118a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156112d757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112d55780516001600160a01b03161561126b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112d0579392505050565b61126b565b505b604051636f96cda160e11b815260040160405180910390fd5b610883828261151b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061132f903390899088908890600401611aa1565b602060405180830381600087803b15801561134957600080fd5b505af1925050508015611379575060408051601f3d908101601f19168201909252611376918101906119cc565b60015b6113d4573d8080156113a7576040519150601f19603f3d011682016040523d82523d6000602084013e6113ac565b606091505b5080516113cc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461069790611c25565b6060816114255750506040805180820190915260018152600360fc1b602082015290565b8160005b811561144f578061143981611c60565b91506114489050600a83611baf565b9150611429565b60008167ffffffffffffffff81111561147857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114a2576020820181803683370190505b5090505b84156113ea576114b7600183611be2565b91506114c4600a86611c7b565b6114cf906030611b97565b60f81b8183815181106114f257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611514600a86611baf565b94506114a6565b6108838282604051806020016040528060008152506107e783838360016000546001600160a01b03851661156157604051622e076360e81b815260040160405180910390fd5b8361157f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561163157506001600160a01b0387163b15155b156116ba575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461168260008884806001019550886112fa565b61169f576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116375782600054146116b557600080fd5b611700565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156116bb575b506000556111cd565b82805461171590611c25565b90600052602060002090601f016020900481019282611737576000855561177d565b82601f1061175057805160ff191683800117855561177d565b8280016001018555821561177d579182015b8281111561177d578251825591602001919060010190611762565b5061178992915061178d565b5090565b5b80821115611789576000815560010161178e565b600067ffffffffffffffff808411156117bd576117bd611cbb565b604051601f8501601f19908116603f011681019082821181831017156117e5576117e5611cbb565b816040528093508581528686860111156117fe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461182f57600080fd5b919050565b8035801515811461182f57600080fd5b600060208284031215611855578081fd5b610edb82611818565b60008060408385031215611870578081fd5b61187983611818565b915061188760208401611818565b90509250929050565b6000806000606084860312156118a4578081fd5b6118ad84611818565b92506118bb60208501611818565b9150604084013590509250925092565b600080600080608085870312156118e0578081fd5b6118e985611818565b93506118f760208601611818565b925060408501359150606085013567ffffffffffffffff811115611919578182fd5b8501601f81018713611929578182fd5b611938878235602084016117a2565b91505092959194509250565b60008060408385031215611956578182fd5b61195f83611818565b915061188760208401611834565b6000806040838503121561197f578182fd5b61198883611818565b946020939093013593505050565b6000602082840312156119a7578081fd5b610edb82611834565b6000602082840312156119c1578081fd5b8135610edb81611cd1565b6000602082840312156119dd578081fd5b8151610edb81611cd1565b6000602082840312156119f9578081fd5b813567ffffffffffffffff811115611a0f578182fd5b8201601f81018413611a1f578182fd5b6113ea848235602084016117a2565b600060208284031215611a3f578081fd5b5035919050565b60008151808452611a5e816020860160208601611bf9565b601f01601f19169290920160200192915050565b60008351611a84818460208801611bf9565b835190830190611a98818360208801611bf9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ad490830184611a46565b9695505050505050565b602081526000610edb6020830184611a46565b6000602080835281845483600182811c915080831680611b1257607f831692505b858310811415611b3057634e487b7160e01b87526022600452602487fd5b878601838152602001818015611b4d5760018114611b5e57611b88565b60ff19861682528782019650611b88565b60008b815260209020895b86811015611b8257815484820152908501908901611b69565b83019750505b50949998505050505050505050565b60008219821115611baa57611baa611c8f565b500190565b600082611bbe57611bbe611ca5565b500490565b6000816000190483118215151615611bdd57611bdd611c8f565b500290565b600082821015611bf457611bf4611c8f565b500390565b60005b83811015611c14578181015183820152602001611bfc565b83811115610e2e5750506000910152565b600181811c90821680611c3957607f821691505b60208210811415611c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c7457611c74611c8f565b5060010190565b600082611c8a57611c8a611ca5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095e57600080fdfea2646970667358221220fab3002f327565e5d0db152181255eb75b224efa69b2550859d92b31b7f092de64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f626f626f6d666572732e6d7970696e6174612e636c6f75642f697066732f516d507a72474563426d58524c354a4d616668433942394462394839317351396a4d464b6b69756764666d54504b000000000000000000000000000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f626f626f6d666572732e6d7970696e6174612e636c6f75642f697066732f516d616d7745665966507a39376f6a786e587550377265544c594e557451634c656a6a6e72565342766751354c722f0000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b6b6f0c3116100a0578063d547cfb71161006f578063d547cfb71461058d578063d5abeb01146105a2578063e7db8fb0146105b8578063e8a3d485146105d8578063e985e9c5146105ed57600080fd5b8063b6b6f0c314610523578063b88d4fde14610538578063bd3e19d414610558578063c87b56dd1461056d57600080fd5b806395d89b41116100dc57806395d89b41146104c6578063a0712d68146104db578063a22cb465146104ee578063a76b4d561461050e57600080fd5b80638da5cb5b146104315780638ea5220f146104565780639335dcb71461047e57806395652cfa146104a657600080fd5b806323b872dd116101905780635d08c1ae1161015f5780635d08c1ae146103a15780636352211e146103bb57806370a08231146103db57806380b17335146103fb5780638ba4cc3c1461041157600080fd5b806323b872dd1461032c5780633ccfd60b1461034c57806342842e0e1461036157806344a0d68a1461038157600080fd5b80630cfed2a2116101cc5780630cfed2a2146102af57806313faede6146102cf57806318160ddd146102f35780631b7918381461030c57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046119b0565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610688565b60405161022a9190611ade565b34801561026157600080fd5b50610275610270366004611a2e565b61071a565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461196d565b61075e565b005b3480156102bb57600080fd5b506102ad6102ca366004611996565b6107ec565b3480156102db57600080fd5b506102e560085481565b60405190815260200161022a565b3480156102ff57600080fd5b50600154600054036102e5565b34801561031857600080fd5b506102ad6103273660046119e8565b61083c565b34801561033857600080fd5b506102ad610347366004611890565b610887565b34801561035857600080fd5b506102ad610892565b34801561036d57600080fd5b506102ad61037c366004611890565b610961565b34801561038d57600080fd5b506102ad61039c366004611a2e565b61097c565b3480156103ad57600080fd5b50600a5461021e9060ff1681565b3480156103c757600080fd5b506102756103d6366004611a2e565b6109b5565b3480156103e757600080fd5b506102e56103f6366004611844565b6109c7565b34801561040757600080fd5b506102e560095481565b34801561041d57600080fd5b506102ad61042c36600461196d565b610a16565b34801561043d57600080fd5b50600a546102759061010090046001600160a01b031681565b34801561046257600080fd5b5061027573ff7235657b8d083e18a1b59ca49d1d4785466ce281565b34801561048a57600080fd5b5061027573cd21866158d7f2f1303c905476d0cea09b849e1181565b3480156104b257600080fd5b506102ad6104c13660046119e8565b610aac565b3480156104d257600080fd5b50610248610af3565b6102ad6104e9366004611a2e565b610b02565b3480156104fa57600080fd5b506102ad610509366004611944565b610cbf565b34801561051a57600080fd5b50610248610d55565b34801561052f57600080fd5b506102e5601481565b34801561054457600080fd5b506102ad6105533660046118cb565b610de3565b34801561056457600080fd5b506102e5610e34565b34801561057957600080fd5b50610248610588366004611a2e565b610e5d565b34801561059957600080fd5b50610248610ee2565b3480156105ae57600080fd5b506102e56122b881565b3480156105c457600080fd5b506102ad6105d3366004611a2e565b610eef565b3480156105e457600080fd5b50610248610f28565b3480156105f957600080fd5b5061021e61060836600461185e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061066757506001600160e01b03198216635b5e139f60e01b145b8061068257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069790611c25565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611c25565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600061072582610f37565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610769826109b5565b9050806001600160a01b0316836001600160a01b0316141561079e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107be57506107bc8133610608565b155b156107dc576040516367d9dca160e11b815260040160405180910390fd5b6107e7838383610f62565b505050565b600a54600d9061010090046001600160a01b031633146108285760405162461bcd60e51b815260040161081f9190611af1565b60405180910390fd5b50600a805460ff1916911515919091179055565b600a54600d9061010090046001600160a01b0316331461086f5760405162461bcd60e51b815260040161081f9190611af1565b50805161088390600b906020840190611709565b5050565b6107e7838383610fbe565b600a54600d9061010090046001600160a01b031633146108c55760405162461bcd60e51b815260040161081f9190611af1565b5073ff7235657b8d083e18a1b59ca49d1d4785466ce26108fc60646108eb47600f611bc3565b6108f59190611baf565b6040518115909202916000818181858888f1935050505015801561091d573d6000803e3d6000fd5b5060405173cd21866158d7f2f1303c905476d0cea09b849e11904780156108fc02916000818181858888f1935050505015801561095e573d6000803e3d6000fd5b50565b6107e783838360405180602001604052806000815250610de3565b600a54600d9061010090046001600160a01b031633146109af5760405162461bcd60e51b815260040161081f9190611af1565b50600855565b60006109c0826111d4565b5192915050565b60006001600160a01b0382166109f0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600a54600d9061010090046001600160a01b03163314610a495760405162461bcd60e51b815260040161081f9190611af1565b506000610a596001546000540390565b90506122b8610a688383611b97565b1115610aa25760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b6107e783836112f0565b600a54600d9061010090046001600160a01b03163314610adf5760405162461bcd60e51b815260040161081f9190611af1565b50805161088390600c906020840190611709565b60606003805461069790611c25565b6000610b116001546000540390565b90506000600954821115610b2757600854610b2a565b60005b600a5490915061010090046001600160a01b0316331415610b4d57506000610bdf565b600a5460ff1615610b8e5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b604482015260640161081f565b6014831115610bdf5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e74732070657220747278000000000000604482015260640161081f565b60008311610c205760405162461bcd60e51b815260206004820152600e60248201526d4d696e742061746c65617374203160901b604482015260640161081f565b6122b8610c2d8484611b97565b1115610c675760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b610c718382611bc3565b341015610cb55760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081f565b6107e733846112f0565b6001600160a01b038216331415610ce95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610d6290611c25565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8e90611c25565b8015610ddb5780601f10610db057610100808354040283529160200191610ddb565b820191906000526020600020905b815481529060010190602001808311610dbe57829003601f168201915b505050505081565b610dee848484610fbe565b6001600160a01b0383163b15158015610e105750610e0e848484846112fa565b155b15610e2e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600080600954610e476001546000540390565b1115610e5557600854610682565b600092915050565b6060610e6882610f37565b610e8557604051630a14c4b560e41b815260040160405180910390fd5b6000610e8f6113f2565b9050805160001415610eb05760405180602001604052806000815250610edb565b80610eba84611401565b604051602001610ecb929190611a72565b6040516020818303038152906040525b9392505050565b600c8054610d6290611c25565b600a54600d9061010090046001600160a01b03163314610f225760405162461bcd60e51b815260040161081f9190611af1565b50600955565b6060600b805461069790611c25565b6000805482108015610682575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fc9826111d4565b80519091506000906001600160a01b0316336001600160a01b03161480610ff757508151610ff79033610608565b806110125750336110078461071a565b6001600160a01b0316145b90508061103257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110675760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661108e57604051633a954ecd60e21b815260040160405180910390fd5b61109e6000848460000151610f62565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661118a5760005481101561118a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156112d757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112d55780516001600160a01b03161561126b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112d0579392505050565b61126b565b505b604051636f96cda160e11b815260040160405180910390fd5b610883828261151b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061132f903390899088908890600401611aa1565b602060405180830381600087803b15801561134957600080fd5b505af1925050508015611379575060408051601f3d908101601f19168201909252611376918101906119cc565b60015b6113d4573d8080156113a7576040519150601f19603f3d011682016040523d82523d6000602084013e6113ac565b606091505b5080516113cc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461069790611c25565b6060816114255750506040805180820190915260018152600360fc1b602082015290565b8160005b811561144f578061143981611c60565b91506114489050600a83611baf565b9150611429565b60008167ffffffffffffffff81111561147857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114a2576020820181803683370190505b5090505b84156113ea576114b7600183611be2565b91506114c4600a86611c7b565b6114cf906030611b97565b60f81b8183815181106114f257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611514600a86611baf565b94506114a6565b6108838282604051806020016040528060008152506107e783838360016000546001600160a01b03851661156157604051622e076360e81b815260040160405180910390fd5b8361157f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561163157506001600160a01b0387163b15155b156116ba575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461168260008884806001019550886112fa565b61169f576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116375782600054146116b557600080fd5b611700565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156116bb575b506000556111cd565b82805461171590611c25565b90600052602060002090601f016020900481019282611737576000855561177d565b82601f1061175057805160ff191683800117855561177d565b8280016001018555821561177d579182015b8281111561177d578251825591602001919060010190611762565b5061178992915061178d565b5090565b5b80821115611789576000815560010161178e565b600067ffffffffffffffff808411156117bd576117bd611cbb565b604051601f8501601f19908116603f011681019082821181831017156117e5576117e5611cbb565b816040528093508581528686860111156117fe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461182f57600080fd5b919050565b8035801515811461182f57600080fd5b600060208284031215611855578081fd5b610edb82611818565b60008060408385031215611870578081fd5b61187983611818565b915061188760208401611818565b90509250929050565b6000806000606084860312156118a4578081fd5b6118ad84611818565b92506118bb60208501611818565b9150604084013590509250925092565b600080600080608085870312156118e0578081fd5b6118e985611818565b93506118f760208601611818565b925060408501359150606085013567ffffffffffffffff811115611919578182fd5b8501601f81018713611929578182fd5b611938878235602084016117a2565b91505092959194509250565b60008060408385031215611956578182fd5b61195f83611818565b915061188760208401611834565b6000806040838503121561197f578182fd5b61198883611818565b946020939093013593505050565b6000602082840312156119a7578081fd5b610edb82611834565b6000602082840312156119c1578081fd5b8135610edb81611cd1565b6000602082840312156119dd578081fd5b8151610edb81611cd1565b6000602082840312156119f9578081fd5b813567ffffffffffffffff811115611a0f578182fd5b8201601f81018413611a1f578182fd5b6113ea848235602084016117a2565b600060208284031215611a3f578081fd5b5035919050565b60008151808452611a5e816020860160208601611bf9565b601f01601f19169290920160200192915050565b60008351611a84818460208801611bf9565b835190830190611a98818360208801611bf9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ad490830184611a46565b9695505050505050565b602081526000610edb6020830184611a46565b6000602080835281845483600182811c915080831680611b1257607f831692505b858310811415611b3057634e487b7160e01b87526022600452602487fd5b878601838152602001818015611b4d5760018114611b5e57611b88565b60ff19861682528782019650611b88565b60008b815260209020895b86811015611b8257815484820152908501908901611b69565b83019750505b50949998505050505050505050565b60008219821115611baa57611baa611c8f565b500190565b600082611bbe57611bbe611ca5565b500490565b6000816000190483118215151615611bdd57611bdd611c8f565b500290565b600082821015611bf457611bf4611c8f565b500390565b60005b83811015611c14578181015183820152602001611bfc565b83811115610e2e5750506000910152565b600181811c90821680611c3957607f821691505b60208210811415611c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c7457611c74611c8f565b5060010190565b600082611c8a57611c8a611ca5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095e57600080fdfea2646970667358221220fab3002f327565e5d0db152181255eb75b224efa69b2550859d92b31b7f092de64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f626f626f6d666572732e6d7970696e6174612e636c6f75642f697066732f516d507a72474563426d58524c354a4d616668433942394462394839317351396a4d464b6b69756764666d54504b000000000000000000000000000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f626f626f6d666572732e6d7970696e6174612e636c6f75642f697066732f516d616d7745665966507a39376f6a786e587550377265544c594e557451634c656a6a6e72565342766751354c722f0000000000000000000000
-----Decoded View---------------
Arg [0] : _contractMetadata (string): https://bobomfers.mypinata.cloud/ipfs/QmPzrGEcBmXRL5JMafhC9B9Db9H91sQ9jMFKkiugdfmTPK
Arg [1] : _baseTokenURI (string): https://bobomfers.mypinata.cloud/ipfs/QmamwEfYfPz97ojxnXuP7reTLYNUtQcLejjnrVSBvgQ5Lr/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [3] : 68747470733a2f2f626f626f6d666572732e6d7970696e6174612e636c6f7564
Arg [4] : 2f697066732f516d507a72474563426d58524c354a4d61666843394239446239
Arg [5] : 4839317351396a4d464b6b69756764666d54504b000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [7] : 68747470733a2f2f626f626f6d666572732e6d7970696e6174612e636c6f7564
Arg [8] : 2f697066732f516d616d7745665966507a39376f6a786e587550377265544c59
Arg [9] : 4e557451634c656a6a6e72565342766751354c722f0000000000000000000000
Deployed Bytecode Sourcemap
45992:3113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25712:305;;;;;;;;;;-1:-1:-1;25712:305:0;;;;;:::i;:::-;;:::i;:::-;;;6053:14:1;;6046:22;6028:41;;6016:2;6001:18;25712:305:0;;;;;;;;29097:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30600:204::-;;;;;;;;;;-1:-1:-1;30600:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5351:32:1;;;5333:51;;5321:2;5306:18;30600:204:0;5288:102:1;30163:371:0;;;;;;;;;;-1:-1:-1;30163:371:0;;;;;:::i;:::-;;:::i;:::-;;48755:123;;;;;;;;;;-1:-1:-1;48755:123:0;;;;;:::i;:::-;;:::i;46065:34::-;;;;;;;;;;;;;;;;;;;9371:25:1;;;9359:2;9344:18;46065:34:0;9326:76:1;24961:303:0;;;;;;;;;;-1:-1:-1;25215:12:0;;25005:7;25199:13;:28;24961:303;;48599:148;;;;;;;;;;-1:-1:-1;48599:148:0;;;;;:::i;:::-;;:::i;31457:170::-;;;;;;;;;;-1:-1:-1;31457:170:0;;;;;:::i;:::-;;:::i;48886:216::-;;;;;;;;;;;;;:::i;31698:185::-;;;;;;;;;;-1:-1:-1;31698:185:0;;;;;:::i;:::-;;:::i;48169:122::-;;;;;;;;;;-1:-1:-1;48169:122:0;;;;;:::i;:::-;;:::i;46144:29::-;;;;;;;;;;-1:-1:-1;46144:29:0;;;;;;;;28906:124;;;;;;;;;;-1:-1:-1;28906:124:0;;;;;:::i;:::-;;:::i;26081:206::-;;;;;;;;;;-1:-1:-1;26081:206:0;;;;;:::i;:::-;;:::i;46106:31::-;;;;;;;;;;;;;;;;47523:242;;;;;;;;;;-1:-1:-1;47523:242:0;;;;;:::i;:::-;;:::i;46443:20::-;;;;;;;;;;-1:-1:-1;46443:20:0;;;;;;;-1:-1:-1;;;;;46443:20:0;;;46358:78;;;;;;;;;;;;46394:42;46358:78;;46271:80;;;;;;;;;;;;46309:42;46271:80;;48453:138;;;;;;;;;;-1:-1:-1;48453:138:0;;;;;:::i;:::-;;:::i;29266:104::-;;;;;;;;;;;;;:::i;46914:601::-;;;;;;:::i;:::-;;:::i;30876:279::-;;;;;;;;;;-1:-1:-1;30876:279:0;;;;;:::i;:::-;;:::i;46470:30::-;;;;;;;;;;;;;:::i;46180:37::-;;;;;;;;;;;;46215:2;46180:37;;31954:369;;;;;;;;;;-1:-1:-1;31954:369:0;;;;;:::i;:::-;;:::i;48003:158::-;;;;;;;;;;;;;:::i;29441:318::-;;;;;;;;;;-1:-1:-1;29441:318:0;;;;;:::i;:::-;;:::i;46507:26::-;;;;;;;;;;;;;:::i;46224:40::-;;;;;;;;;;;;46260:4;46224:40;;48299:142;;;;;;;;;;-1:-1:-1;48299:142:0;;;;;:::i;:::-;;:::i;47894:101::-;;;;;;;;;;;;;:::i;31226:164::-;;;;;;;;;;-1:-1:-1;31226:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31347:25:0;;;31323:4;31347:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31226:164;25712:305;25814:4;-1:-1:-1;;;;;;25851:40:0;;-1:-1:-1;;;25851:40:0;;:105;;-1:-1:-1;;;;;;;25908:48:0;;-1:-1:-1;;;25908:48:0;25851:105;:158;;;-1:-1:-1;;;;;;;;;;21171:40:0;;;25973:36;25831:178;25712:305;-1:-1:-1;;25712:305:0:o;29097:100::-;29151:13;29184:5;29177:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29097:100;:::o;30600:204::-;30668:7;30693:16;30701:7;30693;:16::i;:::-;30688:64;;30718:34;;-1:-1:-1;;;30718:34:0;;;;;;;;;;;30688:64;-1:-1:-1;30772:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30772:24:0;;30600:204::o;30163:371::-;30236:13;30252:24;30268:7;30252:15;:24::i;:::-;30236:40;;30297:5;-1:-1:-1;;;;;30291:11:0;:2;-1:-1:-1;;;;;30291:11:0;;30287:48;;;30311:24;;-1:-1:-1;;;30311:24:0;;;;;;;;;;;30287:48;17945:10;-1:-1:-1;;;;;30352:21:0;;;;;;:63;;-1:-1:-1;30378:37:0;30395:5;17945:10;31226:164;:::i;30378:37::-;30377:38;30352:63;30348:138;;;30439:35;;-1:-1:-1;;;30439:35:0;;;;;;;;;;;30348:138;30498:28;30507:2;30511:7;30520:5;30498:8;:28::i;:::-;30163:371;;;:::o;48755:123::-;48829:5;;48836:3;;48829:5;;;-1:-1:-1;;;;;48829:5:0;48815:10;:19;48807:33;;;;-1:-1:-1;;;48807:33:0;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;48851:10:0;:19;;-1:-1:-1;;48851:19:0;;;;;;;;;;48755:123::o;48599:148::-;48690:5;;48697:3;;48690:5;;;-1:-1:-1;;;;;48690:5:0;48676:10;:19;48668:33;;;;-1:-1:-1;;;48668:33:0;;;;;;;;:::i;:::-;-1:-1:-1;48712:27:0;;;;:16;;:27;;;;;:::i;:::-;;48599:148;:::o;31457:170::-;31591:28;31601:4;31607:2;31611:7;31591:9;:28::i;48886:216::-;48948:5;;48955:3;;48948:5;;;-1:-1:-1;;;;;48948:5:0;48934:10;:19;48926:33;;;;-1:-1:-1;;;48926:33:0;;;;;;;;:::i;:::-;-1:-1:-1;46394:42:0;48970:61;49027:3;48998:26;:21;49022:2;48998:26;:::i;:::-;:32;;;;:::i;:::-;48970:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49042:52:0;;46309:42;;49072:21;49042:52;;;;;;;;;49072:21;46309:42;49042:52;;;;;;;;;;;;;;;;;;;;;48886:216::o;31698:185::-;31836:39;31853:4;31859:2;31863:7;31836:39;;;;;;;;;;;;:16;:39::i;48169:122::-;48246:5;;48253:3;;48246:5;;;-1:-1:-1;;;;;48246:5:0;48232:10;:19;48224:33;;;;-1:-1:-1;;;48224:33:0;;;;;;;;:::i;:::-;-1:-1:-1;48268:4:0;:15;48169:122::o;28906:124::-;28970:7;28997:20;29009:7;28997:11;:20::i;:::-;:25;;28906:124;-1:-1:-1;;28906:124:0:o;26081:206::-;26145:7;-1:-1:-1;;;;;26169:19:0;;26165:60;;26197:28;;-1:-1:-1;;;26197:28:0;;;;;;;;;;;26165:60;-1:-1:-1;;;;;;26251:19:0;;;;;:12;:19;;;;;:27;;;;26081:206::o;47523:242::-;47612:5;;47619:3;;47612:5;;;-1:-1:-1;;;;;47612:5:0;47598:10;:19;47590:33;;;;-1:-1:-1;;;47590:33:0;;;;;;;;:::i;:::-;;47634:14;47651:13;25215:12;;25005:7;25199:13;:28;;24961:303;47651:13;47634:30;-1:-1:-1;46260:4:0;47683:17;47692:8;47634:30;47683:17;:::i;:::-;:30;;47675:52;;;;-1:-1:-1;;;47675:52:0;;9090:2:1;47675:52:0;;;9072:21:1;9129:1;9109:18;;;9102:29;-1:-1:-1;;;9147:18:1;;;9140:39;9196:18;;47675:52:0;9062:158:1;47675:52:0;47738:19;47744:2;47748:8;47738:5;:19::i;48453:138::-;48541:5;;48548:3;;48541:5;;;-1:-1:-1;;;;;48541:5:0;48527:10;:19;48519:33;;;;-1:-1:-1;;;48519:33:0;;;;;;;;:::i;:::-;-1:-1:-1;48563:20:0;;;;:12;;:20;;;;;:::i;29266:104::-;29322:13;29355:7;29348:14;;;;;:::i;46914:601::-;46974:14;46991:13;25215:12;;25005:7;25199:13;:28;;24961:303;46991:13;46974:30;;47015:16;47045:9;;47035:6;:19;;47034:32;;47062:4;;47034:32;;;47058:1;47034:32;47095:5;;47015:51;;-1:-1:-1;47095:5:0;;;-1:-1:-1;;;;;47095:5:0;47081:10;:19;47077:206;;;-1:-1:-1;47128:1:0;47077:206;;;47171:10;;;;47170:11;47162:35;;;;-1:-1:-1;;;47162:35:0;;7705:2:1;47162:35:0;;;7687:21:1;7744:2;7724:18;;;7717:30;-1:-1:-1;;;7763:18:1;;;7756:41;7814:18;;47162:35:0;7677:161:1;47162:35:0;46215:2;47220:8;:20;;47212:59;;;;-1:-1:-1;;;47212:59:0;;8045:2:1;47212:59:0;;;8027:21:1;8084:2;8064:18;;;8057:30;8123:28;8103:18;;;8096:56;8169:18;;47212:59:0;8017:176:1;47212:59:0;47312:1;47301:8;:12;47293:39;;;;-1:-1:-1;;;47293:39:0;;8400:2:1;47293:39:0;;;8382:21:1;8439:2;8419:18;;;8412:30;-1:-1:-1;;;8458:18:1;;;8451:44;8512:18;;47293:39:0;8372:164:1;47293:39:0;46260:4;47351:17;47360:8;47351:6;:17;:::i;:::-;:30;;47343:52;;;;-1:-1:-1;;;47343:52:0;;9090:2:1;47343:52:0;;;9072:21:1;9129:1;9109:18;;;9102:29;-1:-1:-1;;;9147:18:1;;;9140:39;9196:18;;47343:52:0;9062:158:1;47343:52:0;47427:19;47438:8;47427;:19;:::i;:::-;47414:9;:32;;47406:63;;;;-1:-1:-1;;;47406:63:0;;8743:2:1;47406:63:0;;;8725:21:1;8782:2;8762:18;;;8755:30;-1:-1:-1;;;8801:18:1;;;8794:48;8859:18;;47406:63:0;8715:168:1;47406:63:0;47480:27;47486:10;47498:8;47480:5;:27::i;30876:279::-;-1:-1:-1;;;;;30967:24:0;;17945:10;30967:24;30963:54;;;31000:17;;-1:-1:-1;;;31000:17:0;;;;;;;;;;;30963:54;17945:10;31030:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31030:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31030:53:0;;;;;;;;;;31099:48;;6028:41:1;;;31030:42:0;;17945:10;31099:48;;6001:18:1;31099:48:0;;;;;;;30876:279;;:::o;46470:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31954:369::-;32121:28;32131:4;32137:2;32141:7;32121:9;:28::i;:::-;-1:-1:-1;;;;;32164:13:0;;10213:19;:23;;32164:76;;;;;32184:56;32215:4;32221:2;32225:7;32234:5;32184:30;:56::i;:::-;32183:57;32164:76;32160:156;;;32264:40;;-1:-1:-1;;;32264:40:0;;;;;;;;;;;32160:156;31954:369;;;;:::o;48003:158::-;48043:7;48063:19;48103:9;;48086:13;25215:12;;25005:7;25199:13;:28;;24961:303;48086:13;:26;;48085:39;;48120:4;;48085:39;;;48116:1;48063:61;48003:158;-1:-1:-1;;48003:158:0:o;29441:318::-;29514:13;29545:16;29553:7;29545;:16::i;:::-;29540:59;;29570:29;;-1:-1:-1;;;29570:29:0;;;;;;;;;;;29540:59;29612:21;29636:10;:8;:10::i;:::-;29612:34;;29670:7;29664:21;29689:1;29664:26;;:87;;;;;;;;;;;;;;;;;29717:7;29726:18;:7;:16;:18::i;:::-;29700:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29664:87;29657:94;29441:318;-1:-1:-1;;;29441:318:0:o;46507:26::-;;;;;;;:::i;48299:142::-;48386:5;;48393:3;;48386:5;;;-1:-1:-1;;;;;48386:5:0;48372:10;:19;48364:33;;;;-1:-1:-1;;;48364:33:0;;;;;;;;:::i;:::-;-1:-1:-1;48408:9:0;:25;48299:142::o;47894:101::-;47938:13;47971:16;47964:23;;;;;:::i;32578:187::-;32635:4;32699:13;;32689:7;:23;32659:98;;;;-1:-1:-1;;32730:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32730:27:0;;;;32729:28;;32578:187::o;40189:196::-;40304:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40304:29:0;-1:-1:-1;;;;;40304:29:0;;;;;;;;;40349:28;;40304:24;;40349:28;;;;;;;40189:196;;;:::o;35691:2112::-;35806:35;35844:20;35856:7;35844:11;:20::i;:::-;35919:18;;35806:58;;-1:-1:-1;35877:22:0;;-1:-1:-1;;;;;35903:34:0;17945:10;-1:-1:-1;;;;;35903:34:0;;:101;;;-1:-1:-1;35971:18:0;;35954:50;;17945:10;31226:164;:::i;35954:50::-;35903:154;;;-1:-1:-1;17945:10:0;36021:20;36033:7;36021:11;:20::i;:::-;-1:-1:-1;;;;;36021:36:0;;35903:154;35877:181;;36076:17;36071:66;;36102:35;;-1:-1:-1;;;36102:35:0;;;;;;;;;;;36071:66;36174:4;-1:-1:-1;;;;;36152:26:0;:13;:18;;;-1:-1:-1;;;;;36152:26:0;;36148:67;;36187:28;;-1:-1:-1;;;36187:28:0;;;;;;;;;;;36148:67;-1:-1:-1;;;;;36230:16:0;;36226:52;;36255:23;;-1:-1:-1;;;36255:23:0;;;;;;;;;;;36226:52;36399:49;36416:1;36420:7;36429:13;:18;;;36399:8;:49::i;:::-;-1:-1:-1;;;;;36744:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36744:31:0;;;;;;;-1:-1:-1;;36744:31:0;;;;;;;36790:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36790:29:0;;;;;;;;;;;36836:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36881:61:0;;;;-1:-1:-1;;;36926:15:0;36881:61;;;;;;;;;;;37216:11;;;37246:24;;;;;:29;37216:11;;37246:29;37242:445;;37471:13;;37457:11;:27;37453:219;;;37541:18;;;37509:24;;;:11;:24;;;;;;;;:50;;37624:28;;;;37582:70;;-1:-1:-1;;;37582:70:0;-1:-1:-1;;;;;;37582:70:0;;;-1:-1:-1;;;;;37509:50:0;;;37582:70;;;;;;;37453:219;35691:2112;37734:7;37730:2;-1:-1:-1;;;;;37715:27:0;37724:4;-1:-1:-1;;;;;37715:27:0;;;;;;;;;;;37753:42;35691:2112;;;;;:::o;27736:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27846:7:0;27929:13;;27922:4;:20;27891:886;;;27963:31;27997:17;;;:11;:17;;;;;;;;;27963:51;;;;;;;;;-1:-1:-1;;;;;27963:51:0;;;;-1:-1:-1;;;27963:51:0;;;;;;;;;;;-1:-1:-1;;;27963:51:0;;;;;;;;;;;;;;28033:729;;28083:14;;-1:-1:-1;;;;;28083:28:0;;28079:101;;28147:9;27736:1108;-1:-1:-1;;;27736:1108:0:o;28079:101::-;-1:-1:-1;;;28522:6:0;28567:17;;;;:11;:17;;;;;;;;;28555:29;;;;;;;;;-1:-1:-1;;;;;28555:29:0;;;;;-1:-1:-1;;;28555:29:0;;;;;;;;;;;-1:-1:-1;;;28555:29:0;;;;;;;;;;;;;28615:28;28611:109;;28683:9;27736:1108;-1:-1:-1;;;27736:1108:0:o;28611:109::-;28482:261;;;27891:886;;28805:31;;-1:-1:-1;;;28805:31:0;;;;;;;;;;;46810:96;46877:21;46887:2;46891:6;46877:9;:21::i;40877:667::-;41061:72;;-1:-1:-1;;;41061:72:0;;41040:4;;-1:-1:-1;;;;;41061:36:0;;;;;:72;;17945:10;;41112:4;;41118:7;;41127:5;;41061:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41061:72:0;;;;;;;;-1:-1:-1;;41061:72:0;;;;;;;;;;;;:::i;:::-;;;41057:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41295:13:0;;41291:235;;41341:40;;-1:-1:-1;;;41341:40:0;;;;;;;;;;;41291:235;41484:6;41478:13;41469:6;41465:2;41461:15;41454:38;41057:480;-1:-1:-1;;;;;;41180:55:0;-1:-1:-1;;;41180:55:0;;-1:-1:-1;41057:480:0;40877:667;;;;;;:::o;47773:113::-;47833:13;47866:12;47859:19;;;;;:::i;18442:723::-;18498:13;18719:10;18715:53;;-1:-1:-1;;18746:10:0;;;;;;;;;;;;-1:-1:-1;;;18746:10:0;;;;;18442:723::o;18715:53::-;18793:5;18778:12;18834:78;18841:9;;18834:78;;18867:8;;;;:::i;:::-;;-1:-1:-1;18890:10:0;;-1:-1:-1;18898:2:0;18890:10;;:::i;:::-;;;18834:78;;;18922:19;18954:6;18944:17;;;;;;-1:-1:-1;;;18944:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18944:17:0;;18922:39;;18972:154;18979:10;;18972:154;;19006:11;19016:1;19006:11;;:::i;:::-;;-1:-1:-1;19075:10:0;19083:2;19075:5;:10;:::i;:::-;19062:24;;:2;:24;:::i;:::-;19049:39;;19032:6;19039;19032:14;;;;;;-1:-1:-1;;;19032:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19032:56:0;;;;;;;;-1:-1:-1;19103:11:0;19112:2;19103:11;;:::i;:::-;;;18972:154;;32773:104;32842:27;32852:2;32856:8;32842:27;;;;;;;;;;;;33363:32;33369:2;33373:8;33383:5;33390:4;33801:20;33824:13;-1:-1:-1;;;;;33852:16:0;;33848:48;;33877:19;;-1:-1:-1;;;33877:19:0;;;;;;;;;;;33848:48;33911:13;33907:44;;33933:18;;-1:-1:-1;;;33933:18:0;;;;;;;;;;;33907:44;-1:-1:-1;;;;;34302:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34361:49:0;;34302:44;;;;;;;;34361:49;;;;-1:-1:-1;;34302:44:0;;;;;;34361:49;;;;;;;;;;;;;;;;34427:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34477:66:0;;;;-1:-1:-1;;;34527:15:0;34477:66;;;;;;;;;;34427:25;34624:23;;;34668:4;:23;;;;-1:-1:-1;;;;;;34676:13:0;;10213:19;:23;;34676:15;34664:641;;;34712:314;34743:38;;34768:12;;-1:-1:-1;;;;;34743:38:0;;;34760:1;;34743:38;;34760:1;;34743:38;34809:69;34848:1;34852:2;34856:14;;;;;;34872:5;34809:30;:69::i;:::-;34804:174;;34914:40;;-1:-1:-1;;;34914:40:0;;;;;;;;;;;34804:174;35021:3;35005:12;:19;;34712:314;;35107:12;35090:13;;:29;35086:43;;35121:8;;;35086:43;34664:641;;;35170:120;35201:40;;35226:14;;;;;-1:-1:-1;;;;;35201:40:0;;;35218:1;;35201:40;;35218:1;;35201:40;35285:3;35269:12;:19;;35170:120;;34664:641;-1:-1:-1;35319:13:0;:28;35369:60;31954:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:257::-;4491:3;4529:5;4523:12;4556:6;4551:3;4544:19;4572:63;4628:6;4621:4;4616:3;4612:14;4605:4;4598:5;4594:16;4572:63;:::i;:::-;4689:2;4668:15;-1:-1:-1;;4664:29:1;4655:39;;;;4696:4;4651:50;;4499:208;-1:-1:-1;;4499:208:1:o;4712:470::-;4891:3;4929:6;4923:13;4945:53;4991:6;4986:3;4979:4;4971:6;4967:17;4945:53;:::i;:::-;5061:13;;5020:16;;;;5083:57;5061:13;5020:16;5117:4;5105:17;;5083:57;:::i;:::-;5156:20;;4899:283;-1:-1:-1;;;;4899:283:1:o;5395:488::-;-1:-1:-1;;;;;5664:15:1;;;5646:34;;5716:15;;5711:2;5696:18;;5689:43;5763:2;5748:18;;5741:34;;;5811:3;5806:2;5791:18;;5784:31;;;5589:4;;5832:45;;5857:19;;5849:6;5832:45;:::i;:::-;5824:53;5598:285;-1:-1:-1;;;;;;5598:285:1:o;6080:219::-;6229:2;6218:9;6211:21;6192:4;6249:44;6289:2;6278:9;6274:18;6266:6;6249:44;:::i;6304:1194::-;6413:4;6442:2;6471;6460:9;6453:21;6494:4;6530:6;6524:13;6560:4;6583:1;6611:9;6607:2;6603:18;6593:28;;6671:2;6660:9;6656:18;6693;6683:2;;6737:4;6729:6;6725:17;6715:27;;6683:2;6790;6782:6;6779:14;6759:18;6756:38;6753:2;;;-1:-1:-1;;;6817:34:1;;6874:4;6871:1;6864:15;6905:4;6824;6892:18;6753:2;6975:18;;;9625:19;;;9677:4;9668:14;7018:18;7045:100;;;;7159:1;7154:318;;;;7011:461;;7045:100;-1:-1:-1;;7078:24:1;;7066:37;;7123:12;;;;-1:-1:-1;7045:100:1;;7154:318;9454:4;9473:17;;;9523:4;9507:21;;7249:4;7266:165;7280:6;7277:1;7274:13;7266:165;;;7358:14;;7345:11;;;7338:35;7401:16;;;;7295:10;;7266:165;;;7451:11;;;-1:-1:-1;;7011:461:1;-1:-1:-1;7489:3:1;;6422:1076;-1:-1:-1;;;;;;;;;6422:1076:1:o;9693:128::-;9733:3;9764:1;9760:6;9757:1;9754:13;9751:2;;;9770:18;;:::i;:::-;-1:-1:-1;9806:9:1;;9741:80::o;9826:120::-;9866:1;9892;9882:2;;9897:18;;:::i;:::-;-1:-1:-1;9931:9:1;;9872:74::o;9951:168::-;9991:7;10057:1;10053;10049:6;10045:14;10042:1;10039:21;10034:1;10027:9;10020:17;10016:45;10013:2;;;10064:18;;:::i;:::-;-1:-1:-1;10104:9:1;;10003:116::o;10124:125::-;10164:4;10192:1;10189;10186:8;10183:2;;;10197:18;;:::i;:::-;-1:-1:-1;10234:9:1;;10173:76::o;10254:258::-;10326:1;10336:113;10350:6;10347:1;10344:13;10336:113;;;10426:11;;;10420:18;10407:11;;;10400:39;10372:2;10365:10;10336:113;;;10467:6;10464:1;10461:13;10458:2;;;-1:-1:-1;;10502:1:1;10484:16;;10477:27;10307:205::o;10517:380::-;10596:1;10592:12;;;;10639;;;10660:2;;10714:4;10706:6;10702:17;10692:27;;10660:2;10767;10759:6;10756:14;10736:18;10733:38;10730:2;;;10813:10;10808:3;10804:20;10801:1;10794:31;10848:4;10845:1;10838:15;10876:4;10873:1;10866:15;10730:2;;10572:325;;;:::o;10902:135::-;10941:3;-1:-1:-1;;10962:17:1;;10959:2;;;10982:18;;:::i;:::-;-1:-1:-1;11029:1:1;11018:13;;10949:88::o;11042:112::-;11074:1;11100;11090:2;;11105:18;;:::i;:::-;-1:-1:-1;11139:9:1;;11080:74::o;11159:127::-;11220:10;11215:3;11211:20;11208:1;11201:31;11251:4;11248:1;11241:15;11275:4;11272:1;11265:15;11291:127;11352:10;11347:3;11343:20;11340:1;11333:31;11383:4;11380:1;11373:15;11407:4;11404:1;11397:15;11423:127;11484:10;11479:3;11475:20;11472:1;11465:31;11515:4;11512:1;11505:15;11539:4;11536:1;11529:15;11555:131;-1:-1:-1;;;;;;11629:32:1;;11619:43;;11609:2;;11676:1;11673;11666:12
Swarm Source
ipfs://fab3002f327565e5d0db152181255eb75b224efa69b2550859d92b31b7f092de
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.