Contract
0x2dd080d1e23a1c5323b449e295d6bf4e5b2e79e7
1
Polygon Sponsored slots available. Book your slot here!
[ Download CSV Export ]
OVERVIEW
An official collection of WolfSafePoorPeople Token fans. Find a variety of wolves in the mystery box with a surprise prize of 25,000$.
Latest 15 internal transactions
[ Download CSV Export ]
Contract Name:
WolfiCollection
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-09-29 */ /** *Submitted for verification at BscScan.com on 2021-09-21 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/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 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/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 tokenId); /** * @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/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: @openzeppelin/contracts/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/Address.sol pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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/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/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/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/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // try pay with wspp pragma solidity >=0.4.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; contract WolfiCollection is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 3 * 1e18; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 50; bool public paused = false; mapping(address => bool) public whitelisted; uint amountEGGC; address payTokenEGGC; address vault; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); //mint(msg.sender, 20); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(address _to, uint256 _mintAmount) public payable { IBEP20 EGGC = IBEP20(payTokenEGGC); require(EGGC.transferFrom(msg.sender, vault, amountEGGC)); uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { if(whitelisted[msg.sender] != true) { require(msg.value >= cost * _mintAmount); } } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function setCost(uint256 _newCost) public onlyOwner() { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function whitelistUser(address _user) public onlyOwner { whitelisted[_user] = true; } function removeWhitelistUser(address _user) public onlyOwner { whitelisted[_user] = false; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function setPayEGGC(address _pay) public onlyOwner { payTokenEGGC = _pay; } function setPriceEGGC(uint _price) public onlyOwner { amountEGGC = _price; } function setVault(address _vault) public onlyOwner { vault = _vault; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pay","type":"address"}],"name":"setPayEGGC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceEGGC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001a8565b506729a2241af62c0000600d55612710600e556032600f556010805460ff191690553480156200005757600080fd5b50604051620029b1380380620029b18339810160408190526200007a9162000301565b82518390839062000093906000906020850190620001a8565b508051620000a9906001906020840190620001a8565b505050620000c6620000c0620000da60201b60201c565b620000de565b620000d18162000130565b505050620003e1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200018f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a490600b906020840190620001a8565b5050565b828054620001b6906200038e565b90600052602060002090601f016020900481019282620001da576000855562000225565b82601f10620001f557805160ff191683800117855562000225565b8280016001018555821562000225579182015b828111156200022557825182559160200191906001019062000208565b506200023392915062000237565b5090565b5b8082111562000233576000815560010162000238565b600082601f8301126200025f578081fd5b81516001600160401b03808211156200027c576200027c620003cb565b604051601f8301601f19908116603f01168101908282118183101715620002a757620002a7620003cb565b81604052838152602092508683858801011115620002c3578485fd5b8491505b83821015620002e65785820183015181830184015290820190620002c7565b83821115620002f757848385830101525b9695505050505050565b60008060006060848603121562000316578283fd5b83516001600160401b03808211156200032d578485fd5b6200033b878388016200024e565b9450602086015191508082111562000351578384fd5b6200035f878388016200024e565b9350604086015191508082111562000375578283fd5b5062000384868287016200024e565b9150509250925092565b600181811c90821680620003a357607f821691505b60208210811415620003c557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6125c080620003f16000396000f3fe6080604052600436106102305760003560e01c806355f804b31161012e578063a22cb465116100ab578063d936547e1161006f578063d936547e1461063f578063da3ef23f1461066f578063e985e9c51461068f578063ee7ca4aa146106d8578063f2fde38b146106f857600080fd5b8063a22cb465146105b4578063b88d4fde146105d4578063c6682862146105f4578063c87b56dd14610609578063d5abeb011461062957600080fd5b806370a08231116100f257806370a082311461052c578063715018a61461054c5780637f00c7a6146105615780638da5cb5b1461058157806395d89b411461059f57600080fd5b806355f804b31461049d5780635c975abb146104bd5780636352211e146104d75780636817031b146104f75780636c0360eb1461051757600080fd5b806323b872dd116101bc57806342842e0e1161018057806342842e0e146103f0578063438b63001461041057806344a0d68a1461043d5780634a4c560d1461045d5780634f6ccce71461047d57600080fd5b806323b872dd146103755780632f745c591461039557806330cc7ae0146103b55780633ccfd60b146103d557806340c10f19146103dd57600080fd5b8063095ea7b311610203578063095ea7b3146102e657806313faede61461030657806318160ddd1461032a5780631edb24f71461033f578063239c70ae1461035f57600080fd5b806301ffc9a71461023557806302329a291461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b5061025561025036600461213c565b610718565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004612104565b610743565b005b34801561029857600080fd5b506102a1610789565b6040516102619190612341565b3480156102ba57600080fd5b506102ce6102c93660046121ba565b61081b565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a6103013660046120db565b6108b0565b34801561031257600080fd5b5061031c600d5481565b604051908152602001610261565b34801561033657600080fd5b5060085461031c565b34801561034b57600080fd5b5061028a61035a366004611fa5565b6109c6565b34801561036b57600080fd5b5061031c600f5481565b34801561038157600080fd5b5061028a610390366004611ff1565b610a12565b3480156103a157600080fd5b5061031c6103b03660046120db565b610a43565b3480156103c157600080fd5b5061028a6103d0366004611fa5565b610ad9565b61028a610b24565b61028a6103eb3660046120db565b610b74565b3480156103fc57600080fd5b5061028a61040b366004611ff1565b610ce1565b34801561041c57600080fd5b5061043061042b366004611fa5565b610cfc565b60405161026191906122fd565b34801561044957600080fd5b5061028a6104583660046121ba565b610dba565b34801561046957600080fd5b5061028a610478366004611fa5565b610de9565b34801561048957600080fd5b5061031c6104983660046121ba565b610e37565b3480156104a957600080fd5b5061028a6104b8366004612174565b610ed8565b3480156104c957600080fd5b506010546102559060ff1681565b3480156104e357600080fd5b506102ce6104f23660046121ba565b610f19565b34801561050357600080fd5b5061028a610512366004611fa5565b610f90565b34801561052357600080fd5b506102a1610fdc565b34801561053857600080fd5b5061031c610547366004611fa5565b61106a565b34801561055857600080fd5b5061028a6110f1565b34801561056d57600080fd5b5061028a61057c3660046121ba565b611125565b34801561058d57600080fd5b50600a546001600160a01b03166102ce565b3480156105ab57600080fd5b506102a1611154565b3480156105c057600080fd5b5061028a6105cf3660046120a5565b611163565b3480156105e057600080fd5b5061028a6105ef36600461202c565b611228565b34801561060057600080fd5b506102a1611260565b34801561061557600080fd5b506102a16106243660046121ba565b61126d565b34801561063557600080fd5b5061031c600e5481565b34801561064b57600080fd5b5061025561065a366004611fa5565b60116020526000908152604090205460ff1681565b34801561067b57600080fd5b5061028a61068a366004612174565b61134b565b34801561069b57600080fd5b506102556106aa366004611fbf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106e457600080fd5b5061028a6106f33660046121ba565b611388565b34801561070457600080fd5b5061028a610713366004611fa5565b6113b7565b60006001600160e01b0319821663780e9d6360e01b148061073d575061073d82611452565b92915050565b600a546001600160a01b031633146107765760405162461bcd60e51b815260040161076d906123a6565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610798906124ba565b80601f01602080910402602001604051908101604052809291908181526020018280546107c4906124ba565b80156108115780601f106107e657610100808354040283529160200191610811565b820191906000526020600020905b8154815290600101906020018083116107f457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076d565b506000908152600460205260409020546001600160a01b031690565b60006108bb82610f19565b9050806001600160a01b0316836001600160a01b031614156109295760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076d565b336001600160a01b0382161480610945575061094581336106aa565b6109b75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076d565b6109c183836114a2565b505050565b600a546001600160a01b031633146109f05760405162461bcd60e51b815260040161076d906123a6565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b610a1c3382611510565b610a385760405162461bcd60e51b815260040161076d906123db565b6109c1838383611607565b6000610a4e8361106a565b8210610ab05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b035760405162461bcd60e51b815260040161076d906123a6565b6001600160a01b03166000908152601160205260409020805460ff19169055565b600a546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161076d906123a6565b60405133904780156108fc02916000818181858888f19350505050610b7257600080fd5b565b6013546014546012546040516323b872dd60e01b81523360048201526001600160a01b039283166024820152604481019190915291169081906323b872dd90606401602060405180830381600087803b158015610bd057600080fd5b505af1158015610be4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c089190612120565b610c1157600080fd5b6000610c1c60085490565b60105490915060ff1615610c2f57600080fd5b60008311610c3c57600080fd5b600f54831115610c4b57600080fd5b600e54610c58848361242c565b1115610c6357600080fd5b600a546001600160a01b03163314610cab573360009081526011602052604090205460ff161515600114610cab5782600d54610c9f9190612458565b341015610cab57600080fd5b60015b838111610cda57610cc885610cc3838561242c565b6117b2565b80610cd2816124f5565b915050610cae565b5050505050565b6109c183838360405180602001604052806000815250611228565b60606000610d098361106a565b905060008167ffffffffffffffff811115610d3457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d5d578160200160208202803683370190505b50905060005b82811015610db257610d758582610a43565b828281518110610d9557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610daa816124f5565b915050610d63565b509392505050565b600a546001600160a01b03163314610de45760405162461bcd60e51b815260040161076d906123a6565b600d55565b600a546001600160a01b03163314610e135760405162461bcd60e51b815260040161076d906123a6565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6000610e4260085490565b8210610ea55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076d565b60088281548110610ec657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f025760405162461bcd60e51b815260040161076d906123a6565b8051610f1590600b906020840190611e7a565b5050565b6000818152600260205260408120546001600160a01b03168061073d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076d565b600a546001600160a01b03163314610fba5760405162461bcd60e51b815260040161076d906123a6565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600b8054610fe9906124ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611015906124ba565b80156110625780601f1061103757610100808354040283529160200191611062565b820191906000526020600020905b81548152906001019060200180831161104557829003601f168201915b505050505081565b60006001600160a01b0382166110d55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461111b5760405162461bcd60e51b815260040161076d906123a6565b610b7260006117cc565b600a546001600160a01b0316331461114f5760405162461bcd60e51b815260040161076d906123a6565b600f55565b606060018054610798906124ba565b6001600160a01b0382163314156111bc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112323383611510565b61124e5760405162461bcd60e51b815260040161076d906123db565b61125a8484848461181e565b50505050565b600c8054610fe9906124ba565b6000818152600260205260409020546060906001600160a01b03166112ec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076d565b60006112f6611851565b905060008151116113165760405180602001604052806000815250611344565b8061132084611860565b600c604051602001611334939291906121fe565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113755760405162461bcd60e51b815260040161076d906123a6565b8051610f1590600c906020840190611e7a565b600a546001600160a01b031633146113b25760405162461bcd60e51b815260040161076d906123a6565b601255565b600a546001600160a01b031633146113e15760405162461bcd60e51b815260040161076d906123a6565b6001600160a01b0381166114465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076d565b61144f816117cc565b50565b60006001600160e01b031982166380ac58cd60e01b148061148357506001600160e01b03198216635b5e139f60e01b145b8061073d57506301ffc9a760e01b6001600160e01b031983161461073d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114d782610f19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076d565b600061159483610f19565b9050806001600160a01b0316846001600160a01b031614806115cf5750836001600160a01b03166115c48461081b565b6001600160a01b0316145b806115ff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661161a82610f19565b6001600160a01b0316146116825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076d565b6001600160a01b0382166116e45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076d565b6116ef83838361197a565b6116fa6000826114a2565b6001600160a01b0383166000908152600360205260408120805460019290611723908490612477565b90915550506001600160a01b038216600090815260036020526040812080546001929061175190849061242c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f15828260405180602001604052806000815250611a32565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611829848484611607565b61183584848484611a65565b61125a5760405162461bcd60e51b815260040161076d90612354565b6060600b8054610798906124ba565b6060816118845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ae5780611898816124f5565b91506118a79050600a83612444565b9150611888565b60008167ffffffffffffffff8111156118d757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090505b84156115ff57611916600183612477565b9150611923600a86612510565b61192e90603061242c565b60f81b81838151811061195157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611973600a86612444565b9450611905565b6001600160a01b0383166119d5576119d081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119f8565b816001600160a01b0316836001600160a01b0316146119f8576119f88382611b72565b6001600160a01b038216611a0f576109c181611c0f565b826001600160a01b0316826001600160a01b0316146109c1576109c18282611ce8565b611a3c8383611d2c565b611a496000848484611a65565b6109c15760405162461bcd60e51b815260040161076d90612354565b60006001600160a01b0384163b15611b6757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa99033908990889088906004016122c0565b602060405180830381600087803b158015611ac357600080fd5b505af1925050508015611af3575060408051601f3d908101601f19168201909252611af091810190612158565b60015b611b4d573d808015611b21576040519150601f19603f3d011682016040523d82523d6000602084013e611b26565b606091505b508051611b455760405162461bcd60e51b815260040161076d90612354565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115ff565b506001949350505050565b60006001611b7f8461106a565b611b899190612477565b600083815260076020526040902054909150808214611bdc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c2190600190612477565b60008381526009602052604081205460088054939450909284908110611c5757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611c8657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ccc57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611cf38361106a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076d565b6000818152600260205260409020546001600160a01b031615611de75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076d565b611df36000838361197a565b6001600160a01b0382166000908152600360205260408120805460019290611e1c90849061242c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e86906124ba565b90600052602060002090601f016020900481019282611ea85760008555611eee565b82601f10611ec157805160ff1916838001178555611eee565b82800160010185558215611eee579182015b82811115611eee578251825591602001919060010190611ed3565b50611efa929150611efe565b5090565b5b80821115611efa5760008155600101611eff565b600067ffffffffffffffff80841115611f2e57611f2e612550565b604051601f8501601f19908116603f01168101908282118183101715611f5657611f56612550565b81604052809350858152868686011115611f6f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fa057600080fd5b919050565b600060208284031215611fb6578081fd5b61134482611f89565b60008060408385031215611fd1578081fd5b611fda83611f89565b9150611fe860208401611f89565b90509250929050565b600080600060608486031215612005578081fd5b61200e84611f89565b925061201c60208501611f89565b9150604084013590509250925092565b60008060008060808587031215612041578081fd5b61204a85611f89565b935061205860208601611f89565b925060408501359150606085013567ffffffffffffffff81111561207a578182fd5b8501601f8101871361208a578182fd5b61209987823560208401611f13565b91505092959194509250565b600080604083850312156120b7578182fd5b6120c083611f89565b915060208301356120d081612566565b809150509250929050565b600080604083850312156120ed578182fd5b6120f683611f89565b946020939093013593505050565b600060208284031215612115578081fd5b813561134481612566565b600060208284031215612131578081fd5b815161134481612566565b60006020828403121561214d578081fd5b813561134481612574565b600060208284031215612169578081fd5b815161134481612574565b600060208284031215612185578081fd5b813567ffffffffffffffff81111561219b578182fd5b8201601f810184136121ab578182fd5b6115ff84823560208401611f13565b6000602082840312156121cb578081fd5b5035919050565b600081518084526121ea81602086016020860161248e565b601f01601f19169290920160200192915050565b6000845160206122118285838a0161248e565b8551918401916122248184848a0161248e565b85549201918390600181811c908083168061224057607f831692505b85831081141561225e57634e487b7160e01b88526022600452602488fd5b8080156122725760018114612283576122af565b60ff198516885283880195506122af565b60008b815260209020895b858110156122a75781548a82015290840190880161228e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f3908301846121d2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561233557835183529284019291840191600101612319565b50909695505050505050565b60208152600061134460208301846121d2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561243f5761243f612524565b500190565b6000826124535761245361253a565b500490565b600081600019048311821515161561247257612472612524565b500290565b60008282101561248957612489612524565b500390565b60005b838110156124a9578181015183820152602001612491565b8381111561125a5750506000910152565b600181811c908216806124ce57607f821691505b602082108114156124ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561250957612509612524565b5060010190565b60008261251f5761251f61253a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461144f57600080fd5b6001600160e01b03198116811461144f57600080fdfea2646970667358221220d4b40e17467e18f972be2751275e6a90e4d13728fe1fd25f99cd31317a1c7e2364736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013576f6c6661626c6520436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004574f4643000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6642693156597835335a4a4a35797273556733385344506f3959556555584158396d35536767784c746f717a2f00000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013576f6c6661626c6520436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004574f4643000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6642693156597835335a4a4a35797273556733385344506f3959556555584158396d35536767784c746f717a2f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Wolfable Collection
Arg [1] : _symbol (string): WOFC
Arg [2] : _initBaseURI (string): ipfs://QmfBi1VYx53ZJJ5yrsUg38SDPo9YUeUXAX9m5SggxLtoqz/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 576f6c6661626c6520436f6c6c656374696f6e00000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 574f464300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d6642693156597835335a4a4a3579727355673338534450
Arg [9] : 6f3959556555584158396d35536767784c746f717a2f00000000000000000000
Deployed ByteCode Sourcemap
46392:3323:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34736:224;;;;;;;;;;-1:-1:-1;34736:224:0;;;;;:::i;:::-;;:::i;:::-;;;8351:14:1;;8344:22;8326:41;;8314:2;8299:18;34736:224:0;;;;;;;;49013:73;;;;;;;;;;-1:-1:-1;49013:73:0;;;;;:::i;:::-;;:::i;:::-;;22628:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24187:221::-;;;;;;;;;;-1:-1:-1;24187:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6629:32:1;;;6611:51;;6599:2;6584:18;24187:221:0;6566:102:1;23710:411:0;;;;;;;;;;-1:-1:-1;23710:411:0;;;;;:::i;:::-;;:::i;46551:30::-;;;;;;;;;;;;;;;;;;;15955:25:1;;;15943:2;15928:18;46551:30:0;15910:76:1;35376:113:0;;;;;;;;;;-1:-1:-1;35464:10:0;:17;35376:113;;49424:97;;;;;;;;;;-1:-1:-1;49424:97:0;;;;;:::i;:::-;;:::i;46623:33::-;;;;;;;;;;;;;;;;25077:339;;;;;;;;;;-1:-1:-1;25077:339:0;;;;;:::i;:::-;;:::i;35044:256::-;;;;;;;;;;-1:-1:-1;35044:256:0;;;;;:::i;:::-;;:::i;49192:100::-;;;;;;;;;;-1:-1:-1;49192:100:0;;;;;:::i;:::-;;:::i;49298:114::-;;;:::i;47158:606::-;;;;;;:::i;:::-;;:::i;25487:185::-;;;;;;;;;;-1:-1:-1;25487:185:0;;;;;:::i;:::-;;:::i;47770:348::-;;;;;;;;;;-1:-1:-1;47770:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48569:82::-;;;;;;;;;;-1:-1:-1;48569:82:0;;;;;:::i;:::-;;:::i;49092:93::-;;;;;;;;;;-1:-1:-1;49092:93:0;;;;;:::i;:::-;;:::i;35566:233::-;;;;;;;;;;-1:-1:-1;35566:233:0;;;;;:::i;:::-;;:::i;48781:98::-;;;;;;;;;;-1:-1:-1;48781:98:0;;;;;:::i;:::-;;:::i;46661:26::-;;;;;;;;;;-1:-1:-1;46661:26:0;;;;;;;;22322:239;;;;;;;;;;-1:-1:-1;22322:239:0;;;;;:::i;:::-;;:::i;49633:79::-;;;;;;;;;;-1:-1:-1;49633:79:0;;;;;:::i;:::-;;:::i;46483:21::-;;;;;;;;;;;;;:::i;22052:208::-;;;;;;;;;;-1:-1:-1;22052:208:0;;;;;:::i;:::-;;:::i;42525:94::-;;;;;;;;;;;;;:::i;48657:118::-;;;;;;;;;;-1:-1:-1;48657:118:0;;;;;:::i;:::-;;:::i;41874:87::-;;;;;;;;;;-1:-1:-1;41947:6:0;;-1:-1:-1;;;;;41947:6:0;41874:87;;22797:104;;;;;;;;;;;;;:::i;24480:295::-;;;;;;;;;;-1:-1:-1;24480:295:0;;;;;:::i;:::-;;:::i;25743:328::-;;;;;;;;;;-1:-1:-1;25743:328:0;;;;;:::i;:::-;;:::i;46509:37::-;;;;;;;;;;;;;:::i;48124:423::-;;;;;;;;;;-1:-1:-1;48124:423:0;;;;;:::i;:::-;;:::i;46586:32::-;;;;;;;;;;;;;;;;46692:43;;;;;;;;;;-1:-1:-1;46692:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48885:122;;;;;;;;;;-1:-1:-1;48885:122:0;;;;;:::i;:::-;;:::i;24846:164::-;;;;;;;;;;-1:-1:-1;24846:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24967:25:0;;;24943:4;24967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24846:164;49535:86;;;;;;;;;;-1:-1:-1;49535:86:0;;;;;:::i;:::-;;:::i;42774:192::-;;;;;;;;;;-1:-1:-1;42774:192:0;;;;;:::i;:::-;;:::i;34736:224::-;34838:4;-1:-1:-1;;;;;;34862:50:0;;-1:-1:-1;;;34862:50:0;;:90;;;34916:36;34940:11;34916:23;:36::i;:::-;34855:97;34736:224;-1:-1:-1;;34736:224:0:o;49013:73::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;;;;;;;;;49065:6:::1;:15:::0;;-1:-1:-1;;49065:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49013:73::o;22628:100::-;22682:13;22715:5;22708:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22628:100;:::o;24187:221::-;24263:7;27670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27670:16:0;24283:73;;;;-1:-1:-1;;;24283:73:0;;13178:2:1;24283:73:0;;;13160:21:1;13217:2;13197:18;;;13190:30;13256:34;13236:18;;;13229:62;-1:-1:-1;;;13307:18:1;;;13300:42;13359:19;;24283:73:0;13150:234:1;24283:73:0;-1:-1:-1;24376:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24376:24:0;;24187:221::o;23710:411::-;23791:13;23807:23;23822:7;23807:14;:23::i;:::-;23791:39;;23855:5;-1:-1:-1;;;;;23849:11:0;:2;-1:-1:-1;;;;;23849:11:0;;;23841:57;;;;-1:-1:-1;;;23841:57:0;;14778:2:1;23841:57:0;;;14760:21:1;14817:2;14797:18;;;14790:30;14856:34;14836:18;;;14829:62;-1:-1:-1;;;14907:18:1;;;14900:31;14948:19;;23841:57:0;14750:223:1;23841:57:0;20237:10;-1:-1:-1;;;;;23933:21:0;;;;:62;;-1:-1:-1;23958:37:0;23975:5;20237:10;24846:164;:::i;23958:37::-;23911:168;;;;-1:-1:-1;;;23911:168:0;;11571:2:1;23911:168:0;;;11553:21:1;11610:2;11590:18;;;11583:30;11649:34;11629:18;;;11622:62;11720:26;11700:18;;;11693:54;11764:19;;23911:168:0;11543:246:1;23911:168:0;24092:21;24101:2;24105:7;24092:8;:21::i;:::-;23710:411;;;:::o;49424:97::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;49481:12:::1;:19:::0;;-1:-1:-1;;;;;;49481:19:0::1;-1:-1:-1::0;;;;;49481:19:0;;;::::1;::::0;;;::::1;::::0;;49424:97::o;25077:339::-;25272:41;20237:10;25305:7;25272:18;:41::i;:::-;25264:103;;;;-1:-1:-1;;;25264:103:0;;;;;;;:::i;:::-;25380:28;25390:4;25396:2;25400:7;25380:9;:28::i;35044:256::-;35141:7;35177:23;35194:5;35177:16;:23::i;:::-;35169:5;:31;35161:87;;;;-1:-1:-1;;;35161:87:0;;8804:2:1;35161:87:0;;;8786:21:1;8843:2;8823:18;;;8816:30;8882:34;8862:18;;;8855:62;-1:-1:-1;;;8933:18:1;;;8926:41;8984:19;;35161:87:0;8776:233:1;35161:87:0;-1:-1:-1;;;;;;35266:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35044:256::o;49192:100::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49260:18:0::1;49281:5;49260:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;49260:26:0::1;::::0;;49192:100::o;49298:114::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;49358:47:::1;::::0;49366:10:::1;::::0;49383:21:::1;49358:47:::0;::::1;;;::::0;::::1;::::0;;;49383:21;49366:10;49358:47;::::1;;;;;;49350:56;;;::::0;::::1;;49298:114::o:0;47158:606::-;47249:12;;47307:5;;47314:10;;47277:48;;-1:-1:-1;;;47277:48:0;;47295:10;47277:48;;;6913:34:1;-1:-1:-1;;;;;47307:5:0;;;6963:18:1;;;6956:43;7015:18;;;7008:34;;;;47249:12:0;;;;;47277:17;;6848:18:1;;47277:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47269:57;;;;;;47333:14;47350:13;35464:10;:17;;35376:113;47350:13;47379:6;;47333:30;;-1:-1:-1;47379:6:0;;47378:7;47370:16;;;;;;47415:1;47401:11;:15;47393:24;;;;;;47447:13;;47432:11;:28;;47424:37;;;;;;47500:9;;47476:20;47485:11;47476:6;:20;:::i;:::-;:33;;47468:42;;;;;;41947:6;;-1:-1:-1;;;;;41947:6:0;47523:10;:21;47519:146;;47572:10;47560:23;;;;:11;:23;;;;;;;;:31;;:23;:31;47557:101;;47634:11;47627:4;;:18;;;;:::i;:::-;47614:9;:31;;47606:40;;;;;;47690:1;47673:86;47698:11;47693:1;:16;47673:86;;47725:26;47735:3;47740:10;47749:1;47740:6;:10;:::i;:::-;47725:9;:26::i;:::-;47711:3;;;;:::i;:::-;;;;47673:86;;;;47158:606;;;;:::o;25487:185::-;25625:39;25642:4;25648:2;25652:7;25625:39;;;;;;;;;;;;:16;:39::i;47770:348::-;47845:16;47873:23;47899:17;47909:6;47899:9;:17::i;:::-;47873:43;;47923:25;47965:15;47951:30;;;;;;-1:-1:-1;;;47951:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47951:30:0;;47923:58;;47993:9;47988:103;48008:15;48004:1;:19;47988:103;;;48053:30;48073:6;48081:1;48053:19;:30::i;:::-;48039:8;48048:1;48039:11;;;;;;-1:-1:-1;;;48039:11:0;;;;;;;;;;;;;;;;;;:44;48025:3;;;;:::i;:::-;;;;47988:103;;;-1:-1:-1;48104:8:0;47770:348;-1:-1:-1;;;47770:348:0:o;48569:82::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;48630:4:::1;:15:::0;48569:82::o;49092:93::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49154:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;49154:25:0::1;49175:4;49154:25;::::0;;49092:93::o;35566:233::-;35641:7;35677:30;35464:10;:17;;35376:113;35677:30;35669:5;:38;35661:95;;;;-1:-1:-1;;;35661:95:0;;15598:2:1;35661:95:0;;;15580:21:1;15637:2;15617:18;;;15610:30;15676:34;15656:18;;;15649:62;-1:-1:-1;;;15727:18:1;;;15720:42;15779:19;;35661:95:0;15570:234:1;35661:95:0;35774:10;35785:5;35774:17;;;;;;-1:-1:-1;;;35774:17:0;;;;;;;;;;;;;;;;;35767:24;;35566:233;;;:::o;48781:98::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;48852:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48781:98:::0;:::o;22322:239::-;22394:7;22430:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22430:16:0;22465:19;22457:73;;;;-1:-1:-1;;;22457:73:0;;12407:2:1;22457:73:0;;;12389:21:1;12446:2;12426:18;;;12419:30;12485:34;12465:18;;;12458:62;-1:-1:-1;;;12536:18:1;;;12529:39;12585:19;;22457:73:0;12379:231:1;49633:79:0;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;49690:5:::1;:14:::0;;-1:-1:-1;;;;;;49690:14:0::1;-1:-1:-1::0;;;;;49690:14:0;;;::::1;::::0;;;::::1;::::0;;49633:79::o;46483:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22052:208::-;22124:7;-1:-1:-1;;;;;22152:19:0;;22144:74;;;;-1:-1:-1;;;22144:74:0;;11996:2:1;22144:74:0;;;11978:21:1;12035:2;12015:18;;;12008:30;12074:34;12054:18;;;12047:62;-1:-1:-1;;;12125:18:1;;;12118:40;12175:19;;22144:74:0;11968:232:1;22144:74:0;-1:-1:-1;;;;;;22236:16:0;;;;;:9;:16;;;;;;;22052:208::o;42525:94::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;42590:21:::1;42608:1;42590:9;:21::i;48657:118::-:0;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;48736:13:::1;:33:::0;48657:118::o;22797:104::-;22853:13;22886:7;22879:14;;;;;:::i;24480:295::-;-1:-1:-1;;;;;24583:24:0;;20237:10;24583:24;;24575:62;;;;-1:-1:-1;;;24575:62:0;;10804:2:1;24575:62:0;;;10786:21:1;10843:2;10823:18;;;10816:30;10882:27;10862:18;;;10855:55;10927:18;;24575:62:0;10776:175:1;24575:62:0;20237:10;24650:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24650:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24650:53:0;;;;;;;;;;24719:48;;8326:41:1;;;24650:42:0;;20237:10;24719:48;;8299:18:1;24719:48:0;;;;;;;24480:295;;:::o;25743:328::-;25918:41;20237:10;25951:7;25918:18;:41::i;:::-;25910:103;;;;-1:-1:-1;;;25910:103:0;;;;;;;:::i;:::-;26024:39;26038:4;26044:2;26048:7;26057:5;26024:13;:39::i;:::-;25743:328;;;;:::o;46509:37::-;;;;;;;:::i;48124:423::-;27646:4;27670:16;;;:7;:16;;;;;;48222:13;;-1:-1:-1;;;;;27670:16:0;48247:97;;;;-1:-1:-1;;;48247:97:0;;14362:2:1;48247:97:0;;;14344:21:1;14401:2;14381:18;;;14374:30;14440:34;14420:18;;;14413:62;-1:-1:-1;;;14491:18:1;;;14484:45;14546:19;;48247:97:0;14334:237:1;48247:97:0;48353:28;48384:10;:8;:10::i;:::-;48353:41;;48439:1;48414:14;48408:28;:32;:133;;;;;;;;;;;;;;;;;48476:14;48492:18;:7;:16;:18::i;:::-;48512:13;48459:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48408:133;48401:140;48124:423;-1:-1:-1;;;48124:423:0:o;48885:122::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;48968:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49535:86::-:0;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;49594:10:::1;:19:::0;49535:86::o;42774:192::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42863:22:0;::::1;42855:73;;;::::0;-1:-1:-1;;;42855:73:0;;9635:2:1;42855:73:0::1;::::0;::::1;9617:21:1::0;9674:2;9654:18;;;9647:30;9713:34;9693:18;;;9686:62;-1:-1:-1;;;9764:18:1;;;9757:36;9810:19;;42855:73:0::1;9607:228:1::0;42855:73:0::1;42939:19;42949:8;42939:9;:19::i;:::-;42774:192:::0;:::o;21683:305::-;21785:4;-1:-1:-1;;;;;;21822:40:0;;-1:-1:-1;;;21822:40:0;;:105;;-1:-1:-1;;;;;;;21879:48:0;;-1:-1:-1;;;21879:48:0;21822:105;:158;;;-1:-1:-1;;;;;;;;;;7623:40:0;;;21944:36;7514:157;31563:174;31638:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31638:29:0;-1:-1:-1;;;;;31638:29:0;;;;;;;;:24;;31692:23;31638:24;31692:14;:23::i;:::-;-1:-1:-1;;;;;31683:46:0;;;;;;;;;;;31563:174;;:::o;27875:348::-;27968:4;27670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27670:16:0;27985:73;;;;-1:-1:-1;;;27985:73:0;;11158:2:1;27985:73:0;;;11140:21:1;11197:2;11177:18;;;11170:30;11236:34;11216:18;;;11209:62;-1:-1:-1;;;11287:18:1;;;11280:42;11339:19;;27985:73:0;11130:234:1;27985:73:0;28069:13;28085:23;28100:7;28085:14;:23::i;:::-;28069:39;;28138:5;-1:-1:-1;;;;;28127:16:0;:7;-1:-1:-1;;;;;28127:16:0;;:51;;;;28171:7;-1:-1:-1;;;;;28147:31:0;:20;28159:7;28147:11;:20::i;:::-;-1:-1:-1;;;;;28147:31:0;;28127:51;:87;;;-1:-1:-1;;;;;;24967:25:0;;;24943:4;24967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28182:32;28119:96;27875:348;-1:-1:-1;;;;27875:348:0:o;30867:578::-;31026:4;-1:-1:-1;;;;;30999:31:0;:23;31014:7;30999:14;:23::i;:::-;-1:-1:-1;;;;;30999:31:0;;30991:85;;;;-1:-1:-1;;;30991:85:0;;13952:2:1;30991:85:0;;;13934:21:1;13991:2;13971:18;;;13964:30;14030:34;14010:18;;;14003:62;-1:-1:-1;;;14081:18:1;;;14074:39;14130:19;;30991:85:0;13924:231:1;30991:85:0;-1:-1:-1;;;;;31095:16:0;;31087:65;;;;-1:-1:-1;;;31087:65:0;;10399:2:1;31087:65:0;;;10381:21:1;10438:2;10418:18;;;10411:30;10477:34;10457:18;;;10450:62;-1:-1:-1;;;10528:18:1;;;10521:34;10572:19;;31087:65:0;10371:226:1;31087:65:0;31165:39;31186:4;31192:2;31196:7;31165:20;:39::i;:::-;31269:29;31286:1;31290:7;31269:8;:29::i;:::-;-1:-1:-1;;;;;31311:15:0;;;;;;:9;:15;;;;;:20;;31330:1;;31311:15;:20;;31330:1;;31311:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31342:13:0;;;;;;:9;:13;;;;;:18;;31359:1;;31342:13;:18;;31359:1;;31342:18;:::i;:::-;;;;-1:-1:-1;;31371:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31371:21:0;-1:-1:-1;;;;;31371:21:0;;;;;;;;;31410:27;;31371:16;;31410:27;;;;;;;30867:578;;;:::o;28565:110::-;28641:26;28651:2;28655:7;28641:26;;;;;;;;;;;;:9;:26::i;42974:173::-;43049:6;;;-1:-1:-1;;;;;43066:17:0;;;-1:-1:-1;;;;;;43066:17:0;;;;;;;43099:40;;43049:6;;;43066:17;43049:6;;43099:40;;43030:16;;43099:40;42974:173;;:::o;26953:315::-;27110:28;27120:4;27126:2;27130:7;27110:9;:28::i;:::-;27157:48;27180:4;27186:2;27190:7;27199:5;27157:22;:48::i;:::-;27149:111;;;;-1:-1:-1;;;27149:111:0;;;;;;;:::i;47037:102::-;47097:13;47126:7;47119:14;;;;;:::i;7989:723::-;8045:13;8266:10;8262:53;;-1:-1:-1;;8293:10:0;;;;;;;;;;;;-1:-1:-1;;;8293:10:0;;;;;7989:723::o;8262:53::-;8340:5;8325:12;8381:78;8388:9;;8381:78;;8414:8;;;;:::i;:::-;;-1:-1:-1;8437:10:0;;-1:-1:-1;8445:2:0;8437:10;;:::i;:::-;;;8381:78;;;8469:19;8501:6;8491:17;;;;;;-1:-1:-1;;;8491:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8491:17:0;;8469:39;;8519:154;8526:10;;8519:154;;8553:11;8563:1;8553:11;;:::i;:::-;;-1:-1:-1;8622:10:0;8630:2;8622:5;:10;:::i;:::-;8609:24;;:2;:24;:::i;:::-;8596:39;;8579:6;8586;8579:14;;;;;;-1:-1:-1;;;8579:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8579:56:0;;;;;;;;-1:-1:-1;8650:11:0;8659:2;8650:11;;:::i;:::-;;;8519:154;;36412:589;-1:-1:-1;;;;;36618:18:0;;36614:187;;36653:40;36685:7;37828:10;:17;;37801:24;;;;:15;:24;;;;;:44;;;37856:24;;;;;;;;;;;;37724:164;36653:40;36614:187;;;36723:2;-1:-1:-1;;;;;36715:10:0;:4;-1:-1:-1;;;;;36715:10:0;;36711:90;;36742:47;36775:4;36781:7;36742:32;:47::i;:::-;-1:-1:-1;;;;;36815:16:0;;36811:183;;36848:45;36885:7;36848:36;:45::i;36811:183::-;36921:4;-1:-1:-1;;;;;36915:10:0;:2;-1:-1:-1;;;;;36915:10:0;;36911:83;;36942:40;36970:2;36974:7;36942:27;:40::i;28902:321::-;29032:18;29038:2;29042:7;29032:5;:18::i;:::-;29083:54;29114:1;29118:2;29122:7;29131:5;29083:22;:54::i;:::-;29061:154;;;;-1:-1:-1;;;29061:154:0;;;;;;;:::i;32302:799::-;32457:4;-1:-1:-1;;;;;32478:13:0;;10837:20;10885:8;32474:620;;32514:72;;-1:-1:-1;;;32514:72:0;;-1:-1:-1;;;;;32514:36:0;;;;;:72;;20237:10;;32565:4;;32571:7;;32580:5;;32514:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32514:72:0;;;;;;;;-1:-1:-1;;32514:72:0;;;;;;;;;;;;:::i;:::-;;;32510:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32756:13:0;;32752:272;;32799:60;;-1:-1:-1;;;32799:60:0;;;;;;;:::i;32752:272::-;32974:6;32968:13;32959:6;32955:2;32951:15;32944:38;32510:529;-1:-1:-1;;;;;;32637:51:0;-1:-1:-1;;;32637:51:0;;-1:-1:-1;32630:58:0;;32474:620;-1:-1:-1;33078:4:0;32302:799;;;;;;:::o;38515:988::-;38781:22;38831:1;38806:22;38823:4;38806:16;:22::i;:::-;:26;;;;:::i;:::-;38843:18;38864:26;;;:17;:26;;;;;;38781:51;;-1:-1:-1;38997:28:0;;;38993:328;;-1:-1:-1;;;;;39064:18:0;;39042:19;39064:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39115:30;;;;;;:44;;;39232:30;;:17;:30;;;;;:43;;;38993:328;-1:-1:-1;39417:26:0;;;;:17;:26;;;;;;;;39410:33;;;-1:-1:-1;;;;;39461:18:0;;;;;:12;:18;;;;;:34;;;;;;;39454:41;38515:988::o;39798:1079::-;40076:10;:17;40051:22;;40076:21;;40096:1;;40076:21;:::i;:::-;40108:18;40129:24;;;:15;:24;;;;;;40502:10;:26;;40051:46;;-1:-1:-1;40129:24:0;;40051:46;;40502:26;;;;-1:-1:-1;;;40502:26:0;;;;;;;;;;;;;;;;;40480:48;;40566:11;40541:10;40552;40541:22;;;;;;-1:-1:-1;;;40541:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40646:28;;;:15;:28;;;;;;;:41;;;40818:24;;;;;40811:31;40853:10;:16;;;;;-1:-1:-1;;;40853:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39798:1079;;;;:::o;37302:221::-;37387:14;37404:20;37421:2;37404:16;:20::i;:::-;-1:-1:-1;;;;;37435:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37480:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37302:221:0:o;29559:382::-;-1:-1:-1;;;;;29639:16:0;;29631:61;;;;-1:-1:-1;;;29631:61:0;;12817:2:1;29631:61:0;;;12799:21:1;;;12836:18;;;12829:30;12895:34;12875:18;;;12868:62;12947:18;;29631:61:0;12789:182:1;29631:61:0;27646:4;27670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27670:16:0;:30;29703:58;;;;-1:-1:-1;;;29703:58:0;;10042:2:1;29703:58:0;;;10024:21:1;10081:2;10061:18;;;10054:30;10120;10100:18;;;10093:58;10168:18;;29703:58:0;10014:178:1;29703:58:0;29774:45;29803:1;29807:2;29811:7;29774:20;:45::i;:::-;-1:-1:-1;;;;;29832:13:0;;;;;;:9;:13;;;;;:18;;29849:1;;29832:13;:18;;29849:1;;29832:18;:::i;:::-;;;;-1:-1:-1;;29861:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29861:21:0;-1:-1:-1;;;;;29861:21:0;;;;;;;;29900:33;;29861:16;;;29900:33;;29861:16;;29900:33;29559:382;;:::o;-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:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:325::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2615:28;2637:5;2615:28;:::i;:::-;2662:5;2652:15;;;2432:241;;;;;:::o;2678:264::-;2746:6;2754;2807:2;2795:9;2786:7;2782:23;2778:32;2775:2;;;2828:6;2820;2813:22;2775:2;2856:29;2875:9;2856:29;:::i;:::-;2846:39;2932:2;2917:18;;;;2904:32;;-1:-1:-1;;;2765:177:1:o;2947:251::-;3003:6;3056:2;3044:9;3035:7;3031:23;3027:32;3024:2;;;3077:6;3069;3062:22;3024:2;3121:9;3108:23;3140:28;3162:5;3140:28;:::i;3203:255::-;3270:6;3323:2;3311:9;3302:7;3298:23;3294:32;3291:2;;;3344:6;3336;3329:22;3291:2;3381:9;3375:16;3400:28;3422:5;3400:28;:::i;3463:255::-;3521:6;3574:2;3562:9;3553:7;3549:23;3545:32;3542:2;;;3595:6;3587;3580:22;3542:2;3639:9;3626:23;3658:30;3682:5;3658:30;:::i;3723:259::-;3792:6;3845:2;3833:9;3824:7;3820:23;3816:32;3813:2;;;3866:6;3858;3851:22;3813:2;3903:9;3897:16;3922:30;3946:5;3922:30;:::i;3987:480::-;4056:6;4109:2;4097:9;4088:7;4084:23;4080:32;4077:2;;;4130:6;4122;4115:22;4077:2;4175:9;4162:23;4208:18;4200:6;4197:30;4194:2;;;4245:6;4237;4230:22;4194:2;4273:22;;4326:4;4318:13;;4314:27;-1:-1:-1;4304:2:1;;4360:6;4352;4345:22;4304:2;4388:73;4453:7;4448:2;4435:16;4430:2;4426;4422:11;4388:73;:::i;4472:190::-;4531:6;4584:2;4572:9;4563:7;4559:23;4555:32;4552:2;;;4605:6;4597;4590:22;4552:2;-1:-1:-1;4633:23:1;;4542:120;-1:-1:-1;4542:120:1:o;4667:257::-;4708:3;4746:5;4740:12;4773:6;4768:3;4761:19;4789:63;4845:6;4838:4;4833:3;4829:14;4822:4;4815:5;4811:16;4789:63;:::i;:::-;4906:2;4885:15;-1:-1:-1;;4881:29:1;4872:39;;;;4913:4;4868:50;;4716:208;-1:-1:-1;;4716:208:1:o;4929:1531::-;5153:3;5191:6;5185:13;5217:4;5230:51;5274:6;5269:3;5264:2;5256:6;5252:15;5230:51;:::i;:::-;5344:13;;5303:16;;;;5366:55;5344:13;5303:16;5388:15;;;5366:55;:::i;:::-;5512:13;;5443:20;;;5483:3;;5572:1;5594:18;;;;5647;;;;5674:2;;5752:4;5742:8;5738:19;5726:31;;5674:2;5815;5805:8;5802:16;5782:18;5779:40;5776:2;;;-1:-1:-1;;;5842:33:1;;5898:4;5895:1;5888:15;5928:4;5849:3;5916:17;5776:2;5959:18;5986:110;;;;6110:1;6105:330;;;;5952:483;;5986:110;-1:-1:-1;;6021:24:1;;6007:39;;6066:20;;;;-1:-1:-1;5986:110:1;;6105:330;16038:4;16057:17;;;16107:4;16091:21;;6200:3;6216:169;6230:8;6227:1;6224:15;6216:169;;;6312:14;;6297:13;;;6290:37;6355:16;;;;6247:10;;6216:169;;;6220:3;;6416:8;6409:5;6405:20;6398:27;;5952:483;-1:-1:-1;6451:3:1;;5161:1299;-1:-1:-1;;;;;;;;;;;5161:1299:1:o;7053:488::-;-1:-1:-1;;;;;7322:15:1;;;7304:34;;7374:15;;7369:2;7354:18;;7347:43;7421:2;7406:18;;7399:34;;;7469:3;7464:2;7449:18;;7442:31;;;7247:4;;7490:45;;7515:19;;7507:6;7490:45;:::i;:::-;7482:53;7256:285;-1:-1:-1;;;;;;7256:285:1:o;7546:635::-;7717:2;7769:21;;;7839:13;;7742:18;;;7861:22;;;7688:4;;7717:2;7940:15;;;;7914:2;7899:18;;;7688:4;7986:169;8000:6;7997:1;7994:13;7986:169;;;8061:13;;8049:26;;8130:15;;;;8095:12;;;;8022:1;8015:9;7986:169;;;-1:-1:-1;8172:3:1;;7697:484;-1:-1:-1;;;;;;7697:484:1:o;8378:219::-;8527:2;8516:9;8509:21;8490:4;8547:44;8587:2;8576:9;8572:18;8564:6;8547:44;:::i;9014:414::-;9216:2;9198:21;;;9255:2;9235:18;;;9228:30;9294:34;9289:2;9274:18;;9267:62;-1:-1:-1;;;9360:2:1;9345:18;;9338:48;9418:3;9403:19;;9188:240::o;13389:356::-;13591:2;13573:21;;;13610:18;;;13603:30;13669:34;13664:2;13649:18;;13642:62;13736:2;13721:18;;13563:182::o;14978:413::-;15180:2;15162:21;;;15219:2;15199:18;;;15192:30;15258:34;15253:2;15238:18;;15231:62;-1:-1:-1;;;15324:2:1;15309:18;;15302:47;15381:3;15366:19;;15152:239::o;16123:128::-;16163:3;16194:1;16190:6;16187:1;16184:13;16181:2;;;16200:18;;:::i;:::-;-1:-1:-1;16236:9:1;;16171:80::o;16256:120::-;16296:1;16322;16312:2;;16327:18;;:::i;:::-;-1:-1:-1;16361:9:1;;16302:74::o;16381:168::-;16421:7;16487:1;16483;16479:6;16475:14;16472:1;16469:21;16464:1;16457:9;16450:17;16446:45;16443:2;;;16494:18;;:::i;:::-;-1:-1:-1;16534:9:1;;16433:116::o;16554:125::-;16594:4;16622:1;16619;16616:8;16613:2;;;16627:18;;:::i;:::-;-1:-1:-1;16664:9:1;;16603:76::o;16684:258::-;16756:1;16766:113;16780:6;16777:1;16774:13;16766:113;;;16856:11;;;16850:18;16837:11;;;16830:39;16802:2;16795:10;16766:113;;;16897:6;16894:1;16891:13;16888:2;;;-1:-1:-1;;16932:1:1;16914:16;;16907:27;16737:205::o;16947:380::-;17026:1;17022:12;;;;17069;;;17090:2;;17144:4;17136:6;17132:17;17122:27;;17090:2;17197;17189:6;17186:14;17166:18;17163:38;17160:2;;;17243:10;17238:3;17234:20;17231:1;17224:31;17278:4;17275:1;17268:15;17306:4;17303:1;17296:15;17160:2;;17002:325;;;:::o;17332:135::-;17371:3;-1:-1:-1;;17392:17:1;;17389:2;;;17412:18;;:::i;:::-;-1:-1:-1;17459:1:1;17448:13;;17379:88::o;17472:112::-;17504:1;17530;17520:2;;17535:18;;:::i;:::-;-1:-1:-1;17569:9:1;;17510:74::o;17589:127::-;17650:10;17645:3;17641:20;17638:1;17631:31;17681:4;17678:1;17671:15;17705:4;17702:1;17695:15;17721:127;17782:10;17777:3;17773:20;17770:1;17763:31;17813:4;17810:1;17803:15;17837:4;17834:1;17827:15;17853:127;17914:10;17909:3;17905:20;17902:1;17895:31;17945:4;17942:1;17935:15;17969:4;17966:1;17959:15;17985:118;18071:5;18064:13;18057:21;18050:5;18047:32;18037:2;;18093:1;18090;18083:12;18108:131;-1:-1:-1;;;;;;18182:32:1;;18172:43;;18162:2;;18229:1;18226;18219:12
Swarm Source
ipfs://d4b40e17467e18f972be2751275e6a90e4d13728fe1fd25f99cd31317a1c7e23
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.