Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 139 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 23071884 | 214 days ago | IN | 0 ETH | 0.00000729 | ||||
| Safe Transfer Fr... | 15965378 | 1209 days ago | IN | 0 ETH | 0.00091892 | ||||
| Set Approval For... | 15676756 | 1249 days ago | IN | 0 ETH | 0.00107698 | ||||
| Set Approval For... | 15208001 | 1321 days ago | IN | 0 ETH | 0.00047238 | ||||
| Set Approval For... | 15132942 | 1332 days ago | IN | 0 ETH | 0.00035288 | ||||
| Set Approval For... | 15132922 | 1332 days ago | IN | 0 ETH | 0.00036343 | ||||
| Set Approval For... | 14998073 | 1355 days ago | IN | 0 ETH | 0.00094357 | ||||
| Set Approval For... | 14911342 | 1370 days ago | IN | 0 ETH | 0.00221541 | ||||
| Mint | 14681065 | 1407 days ago | IN | 0.15 ETH | 0.02474008 | ||||
| Withdraw | 14650406 | 1412 days ago | IN | 0 ETH | 0.00188321 | ||||
| Set Approval For... | 14553933 | 1427 days ago | IN | 0 ETH | 0.00172833 | ||||
| Set Approval For... | 14540808 | 1429 days ago | IN | 0 ETH | 0.00244105 | ||||
| Set Approval For... | 14534572 | 1430 days ago | IN | 0 ETH | 0.0020284 | ||||
| Set Approval For... | 14516018 | 1433 days ago | IN | 0 ETH | 0.00231799 | ||||
| Mint | 14465215 | 1441 days ago | IN | 0.01 ETH | 0.00208985 | ||||
| Transfer From | 14457286 | 1442 days ago | IN | 0 ETH | 0.00287742 | ||||
| Mint | 14457267 | 1442 days ago | IN | 0.08 ETH | 0.01284656 | ||||
| Set Approval For... | 14455506 | 1442 days ago | IN | 0 ETH | 0.00186037 | ||||
| Set Approval For... | 14451722 | 1443 days ago | IN | 0 ETH | 0.00189074 | ||||
| Transfer From | 14447582 | 1443 days ago | IN | 0 ETH | 0.00189932 | ||||
| Set Approval For... | 14447116 | 1443 days ago | IN | 0 ETH | 0.00140821 | ||||
| Safe Transfer Fr... | 14431102 | 1446 days ago | IN | 0 ETH | 0.00168172 | ||||
| Mint | 14431066 | 1446 days ago | IN | 0.05 ETH | 0.00852743 | ||||
| Safe Transfer Fr... | 14430808 | 1446 days ago | IN | 0 ETH | 0.00257589 | ||||
| Safe Transfer Fr... | 14430795 | 1446 days ago | IN | 0 ETH | 0.00348403 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CryptoMfers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-03-08
*/
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.1 (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/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.1 (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 {
_setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @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: contracts/CryptoMfers.sol
//SPDX-License-Identifier: MIT
// _________ __ _____ _____
// \_ ___ \_______ ___.__._______/ |_ ____ / \_/ ____\___________ ______
// / \ \/\_ __ < | |\____ \ __\/ _ \ / \ / \ __\/ __ \_ __ \/ ___/
// \ \____| | \/\___ || |_> > | ( <_> ) Y \ | \ ___/| | \/\___ \
// \______ /|__| / ____|| __/|__| \____/\____|__ /__| \___ >__| /____ >
// \/ \/ |__| \/ \/ \/ |___/|_|
pragma solidity ^0.8.0;
contract CryptoMfers is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIdTracker;
string public baseURI;
string public baseExtension = ".json";
uint256 public price = 0.01 ether;
uint256 public maxSupply = 10020;
uint256 public maxMintAmount = 100;
uint256 public communityPercentage = 10;
address public communityAddress = 0x21130E908bba2d41B63fbca7caA131285b8724F8;
constructor(string memory initBaseURI) ERC721("CryptoMfers", "CM") {
setBaseURI(initBaseURI);
}
// ********** internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
// ********** public
function mint(address to, uint256 amount) public payable {
uint256 supply = _tokenIdTracker.current();
require(amount > 0, "Too small amount");
require(amount <= maxMintAmount, "Too big amount");
require(supply + amount <= maxSupply, "Not enough NFTs to mint");
require(msg.value >= amount * price, "Not enough ETH");
for (uint256 i = 0; i < amount; i++) {
_safeMint(to, _tokenIdTracker.current());
_tokenIdTracker.increment();
}
}
function minted() public view returns (uint256) {
return _tokenIdTracker.current();
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId));
string memory currentBaseURI = _baseURI();
return string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension));
}
// ********** only owner
function setBaseURI(string memory newBaseURI) public onlyOwner {
baseURI = newBaseURI;
}
function withdraw() public payable onlyOwner {
require(address(this).balance > 0);
uint256 communityAmount = address(this).balance / (100 / communityPercentage);
(bool os1, ) = payable(communityAddress).call{value: communityAmount}("");
require(os1);
(bool os2, ) = payable(owner()).call{value: address(this).balance}("");
require(os2);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"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":"communityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityPercentage","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001fa565b50662386f26fc10000600a908155612724600b556064600c55600d55600e80546001600160a01b0319167321130e908bba2d41b63fbca7caa131285b8724f81790553480156200007757600080fd5b50604051620020a4380380620020a48339810160408190526200009a91620002a0565b604080518082018252600b81526a43727970746f4d6665727360a81b602080830191825283518085019094526002845261434d60f01b908401528151919291620000e791600091620001fa565b508051620000fd906001906020840190620001fa565b5050506200011a620001146200012c60201b60201c565b62000130565b620001258162000182565b50620003cf565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f6906008906020840190620001fa565b5050565b82805462000208906200037c565b90600052602060002090601f0160209004810192826200022c576000855562000277565b82601f106200024757805160ff191683800117855562000277565b8280016001018555821562000277579182015b82811115620002775782518255916020019190600101906200025a565b506200028592915062000289565b5090565b5b808211156200028557600081556001016200028a565b60006020808385031215620002b457600080fd5b82516001600160401b0380821115620002cc57600080fd5b818501915085601f830112620002e157600080fd5b815181811115620002f657620002f6620003b9565b604051601f8201601f19908116603f01168101908382118183101715620003215762000321620003b9565b8160405282815288868487010111156200033a57600080fd5b600093505b828410156200035e57848401860151818501870152928501926200033f565b82841115620003705760008684830101525b98975050505050505050565b600181811c908216806200039157607f821691505b60208210811415620003b357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611cc580620003df6000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd14610444578063d5abeb0114610464578063e985e9c51461047a578063f2fde38b146104c357600080fd5b8063b88d4fde146103f9578063c668286214610419578063c82403d61461042e57600080fd5b80638da5cb5b116100c65780638da5cb5b1461039057806395d89b41146103ae578063a035b1fe146103c3578063a22cb465146103d957600080fd5b806370a082311461033b578063715018a61461035b57806386e476dd1461037057600080fd5b80633ccfd60b116101595780634f02c420116101335780634f02c420146102d157806355f804b3146102e65780636352211e146103065780636c0360eb1461032657600080fd5b80633ccfd60b1461029657806340c10f191461029e57806342842e0e146102b157600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b314610230578063239c70ae1461025257806323b872dd14610276575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611875565b6104e3565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610535565b6040516101cd9190611a3e565b34801561020457600080fd5b506102186102133660046118f8565b6105c7565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461184b565b610661565b005b34801561025e57600080fd5b50610268600c5481565b6040519081526020016101cd565b34801561028257600080fd5b50610250610291366004611757565b610777565b6102506107a8565b6102506102ac36600461184b565b6108d0565b3480156102bd57600080fd5b506102506102cc366004611757565b610a4e565b3480156102dd57600080fd5b50610268610a69565b3480156102f257600080fd5b506102506103013660046118af565b610a79565b34801561031257600080fd5b506102186103213660046118f8565b610aba565b34801561033257600080fd5b506101eb610b31565b34801561034757600080fd5b50610268610356366004611702565b610bbf565b34801561036757600080fd5b50610250610c46565b34801561037c57600080fd5b50600e54610218906001600160a01b031681565b34801561039c57600080fd5b506006546001600160a01b0316610218565b3480156103ba57600080fd5b506101eb610c7c565b3480156103cf57600080fd5b50610268600a5481565b3480156103e557600080fd5b506102506103f436600461180f565b610c8b565b34801561040557600080fd5b50610250610414366004611793565b610c96565b34801561042557600080fd5b506101eb610cc8565b34801561043a57600080fd5b50610268600d5481565b34801561045057600080fd5b506101eb61045f3660046118f8565b610cd5565b34801561047057600080fd5b50610268600b5481565b34801561048657600080fd5b506101c1610495366004611724565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104cf57600080fd5b506102506104de366004611702565b610d3a565b60006001600160e01b031982166380ac58cd60e01b148061051457506001600160e01b03198216635b5e139f60e01b145b8061052f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461054490611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461057090611bb7565b80156105bd5780601f10610592576101008083540402835291602001916105bd565b820191906000526020600020905b8154815290600101906020018083116105a057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066c82610aba565b9050806001600160a01b0316836001600160a01b031614156106da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063c565b336001600160a01b03821614806106f657506106f68133610495565b6107685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063c565b6107728383610dd5565b505050565b6107813382610e43565b61079d5760405162461bcd60e51b815260040161063c90611ad8565b610772838383610f3a565b6006546001600160a01b031633146107d25760405162461bcd60e51b815260040161063c90611aa3565b600047116107df57600080fd5b6000600d5460646107f09190611b41565b6107fa9047611b41565b600e546040519192506000916001600160a01b039091169083908381818185875af1925050503d806000811461084c576040519150601f19603f3d011682016040523d82523d6000602084013e610851565b606091505b505090508061085f57600080fd5b60006108736006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108bd576040519150601f19603f3d011682016040523d82523d6000602084013e6108c2565b606091505b505090508061077257600080fd5b60006108db60075490565b9050600082116109205760405162461bcd60e51b815260206004820152601060248201526f151bdbc81cdb585b1b08185b5bdd5b9d60821b604482015260640161063c565b600c548211156109635760405162461bcd60e51b815260206004820152600e60248201526d151bdbc8189a59c8185b5bdd5b9d60921b604482015260640161063c565b600b546109708383611b29565b11156109be5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768204e46547320746f206d696e74000000000000000000604482015260640161063c565b600a546109cb9083611b55565b341015610a0b5760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161063c565b60005b82811015610a4857610a2884610a2360075490565b6110da565b610a36600780546001019055565b80610a4081611bf2565b915050610a0e565b50505050565b61077283838360405180602001604052806000815250610c96565b6000610a7460075490565b905090565b6006546001600160a01b03163314610aa35760405162461bcd60e51b815260040161063c90611aa3565b8051610ab69060089060208401906115d7565b5050565b6000818152600260205260408120546001600160a01b03168061052f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063c565b60088054610b3e90611bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a90611bb7565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b505050505081565b60006001600160a01b038216610c2a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c705760405162461bcd60e51b815260040161063c90611aa3565b610c7a60006110f4565b565b60606001805461054490611bb7565b610ab6338383611146565b610ca03383610e43565b610cbc5760405162461bcd60e51b815260040161063c90611ad8565b610a4884848484611215565b60098054610b3e90611bb7565b6000818152600260205260409020546060906001600160a01b0316610cf957600080fd5b6000610d03611248565b905080610d0f84611257565b6009604051602001610d239392919061193d565b604051602081830303815290604052915050919050565b6006546001600160a01b03163314610d645760405162461bcd60e51b815260040161063c90611aa3565b6001600160a01b038116610dc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063c565b610dd2816110f4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e0a82610aba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ebc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063c565b6000610ec783610aba565b9050806001600160a01b0316846001600160a01b03161480610f025750836001600160a01b0316610ef7846105c7565b6001600160a01b0316145b80610f3257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f4d82610aba565b6001600160a01b031614610fb55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161063c565b6001600160a01b0382166110175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063c565b611022600082610dd5565b6001600160a01b038316600090815260036020526040812080546001929061104b908490611b74565b90915550506001600160a01b0382166000908152600360205260408120805460019290611079908490611b29565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ab6828260405180602001604052806000815250611355565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156111a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611220848484610f3a565b61122c84848484611388565b610a485760405162461bcd60e51b815260040161063c90611a51565b60606008805461054490611bb7565b60608161127b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a5578061128f81611bf2565b915061129e9050600a83611b41565b915061127f565b60008167ffffffffffffffff8111156112c0576112c0611c63565b6040519080825280601f01601f1916602001820160405280156112ea576020820181803683370190505b5090505b8415610f32576112ff600183611b74565b915061130c600a86611c0d565b611317906030611b29565b60f81b81838151811061132c5761132c611c4d565b60200101906001600160f81b031916908160001a90535061134e600a86611b41565b94506112ee565b61135f8383611495565b61136c6000848484611388565b6107725760405162461bcd60e51b815260040161063c90611a51565b60006001600160a01b0384163b1561148a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113cc903390899088908890600401611a01565b602060405180830381600087803b1580156113e657600080fd5b505af1925050508015611416575060408051601f3d908101601f1916820190925261141391810190611892565b60015b611470573d808015611444576040519150601f19603f3d011682016040523d82523d6000602084013e611449565b606091505b5080516114685760405162461bcd60e51b815260040161063c90611a51565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f32565b506001949350505050565b6001600160a01b0382166114eb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063c565b6000818152600260205260409020546001600160a01b0316156115505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063c565b6001600160a01b0382166000908152600360205260408120805460019290611579908490611b29565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115e390611bb7565b90600052602060002090601f016020900481019282611605576000855561164b565b82601f1061161e57805160ff191683800117855561164b565b8280016001018555821561164b579182015b8281111561164b578251825591602001919060010190611630565b5061165792915061165b565b5090565b5b80821115611657576000815560010161165c565b600067ffffffffffffffff8084111561168b5761168b611c63565b604051601f8501601f19908116603f011681019082821181831017156116b3576116b3611c63565b816040528093508581528686860111156116cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116fd57600080fd5b919050565b60006020828403121561171457600080fd5b61171d826116e6565b9392505050565b6000806040838503121561173757600080fd5b611740836116e6565b915061174e602084016116e6565b90509250929050565b60008060006060848603121561176c57600080fd5b611775846116e6565b9250611783602085016116e6565b9150604084013590509250925092565b600080600080608085870312156117a957600080fd5b6117b2856116e6565b93506117c0602086016116e6565b925060408501359150606085013567ffffffffffffffff8111156117e357600080fd5b8501601f810187136117f457600080fd5b61180387823560208401611670565b91505092959194509250565b6000806040838503121561182257600080fd5b61182b836116e6565b91506020830135801515811461184057600080fd5b809150509250929050565b6000806040838503121561185e57600080fd5b611867836116e6565b946020939093013593505050565b60006020828403121561188757600080fd5b813561171d81611c79565b6000602082840312156118a457600080fd5b815161171d81611c79565b6000602082840312156118c157600080fd5b813567ffffffffffffffff8111156118d857600080fd5b8201601f810184136118e957600080fd5b610f3284823560208401611670565b60006020828403121561190a57600080fd5b5035919050565b60008151808452611929816020860160208601611b8b565b601f01601f19169290920160200192915050565b6000845160206119508285838a01611b8b565b8551918401916119638184848a01611b8b565b8554920191600090600181811c908083168061198057607f831692505b85831081141561199e57634e487b7160e01b85526022600452602485fd5b8080156119b257600181146119c3576119f0565b60ff198516885283880195506119f0565b60008b81526020902060005b858110156119e85781548a8201529084019088016119cf565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a3490830184611911565b9695505050505050565b60208152600061171d6020830184611911565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b3c57611b3c611c21565b500190565b600082611b5057611b50611c37565b500490565b6000816000190483118215151615611b6f57611b6f611c21565b500290565b600082821015611b8657611b86611c21565b500390565b60005b83811015611ba6578181015183820152602001611b8e565b83811115610a485750506000910152565b600181811c90821680611bcb57607f821691505b60208210811415611bec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0657611c06611c21565b5060010190565b600082611c1c57611c1c611c37565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dd257600080fdfea2646970667358221220e48d2a97a92c0281b38fdb7672efbbba3a1e9b38b4a83c4b16a297714322818464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6e6674732d3838382e61707073706f742e636f6d2f636f6c6c656374696f6e732f63727970746f2d6d666572732f6a736f6e2f0000000000000000000000000000
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd14610444578063d5abeb0114610464578063e985e9c51461047a578063f2fde38b146104c357600080fd5b8063b88d4fde146103f9578063c668286214610419578063c82403d61461042e57600080fd5b80638da5cb5b116100c65780638da5cb5b1461039057806395d89b41146103ae578063a035b1fe146103c3578063a22cb465146103d957600080fd5b806370a082311461033b578063715018a61461035b57806386e476dd1461037057600080fd5b80633ccfd60b116101595780634f02c420116101335780634f02c420146102d157806355f804b3146102e65780636352211e146103065780636c0360eb1461032657600080fd5b80633ccfd60b1461029657806340c10f191461029e57806342842e0e146102b157600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b314610230578063239c70ae1461025257806323b872dd14610276575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611875565b6104e3565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610535565b6040516101cd9190611a3e565b34801561020457600080fd5b506102186102133660046118f8565b6105c7565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461184b565b610661565b005b34801561025e57600080fd5b50610268600c5481565b6040519081526020016101cd565b34801561028257600080fd5b50610250610291366004611757565b610777565b6102506107a8565b6102506102ac36600461184b565b6108d0565b3480156102bd57600080fd5b506102506102cc366004611757565b610a4e565b3480156102dd57600080fd5b50610268610a69565b3480156102f257600080fd5b506102506103013660046118af565b610a79565b34801561031257600080fd5b506102186103213660046118f8565b610aba565b34801561033257600080fd5b506101eb610b31565b34801561034757600080fd5b50610268610356366004611702565b610bbf565b34801561036757600080fd5b50610250610c46565b34801561037c57600080fd5b50600e54610218906001600160a01b031681565b34801561039c57600080fd5b506006546001600160a01b0316610218565b3480156103ba57600080fd5b506101eb610c7c565b3480156103cf57600080fd5b50610268600a5481565b3480156103e557600080fd5b506102506103f436600461180f565b610c8b565b34801561040557600080fd5b50610250610414366004611793565b610c96565b34801561042557600080fd5b506101eb610cc8565b34801561043a57600080fd5b50610268600d5481565b34801561045057600080fd5b506101eb61045f3660046118f8565b610cd5565b34801561047057600080fd5b50610268600b5481565b34801561048657600080fd5b506101c1610495366004611724565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104cf57600080fd5b506102506104de366004611702565b610d3a565b60006001600160e01b031982166380ac58cd60e01b148061051457506001600160e01b03198216635b5e139f60e01b145b8061052f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461054490611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461057090611bb7565b80156105bd5780601f10610592576101008083540402835291602001916105bd565b820191906000526020600020905b8154815290600101906020018083116105a057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066c82610aba565b9050806001600160a01b0316836001600160a01b031614156106da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063c565b336001600160a01b03821614806106f657506106f68133610495565b6107685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063c565b6107728383610dd5565b505050565b6107813382610e43565b61079d5760405162461bcd60e51b815260040161063c90611ad8565b610772838383610f3a565b6006546001600160a01b031633146107d25760405162461bcd60e51b815260040161063c90611aa3565b600047116107df57600080fd5b6000600d5460646107f09190611b41565b6107fa9047611b41565b600e546040519192506000916001600160a01b039091169083908381818185875af1925050503d806000811461084c576040519150601f19603f3d011682016040523d82523d6000602084013e610851565b606091505b505090508061085f57600080fd5b60006108736006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108bd576040519150601f19603f3d011682016040523d82523d6000602084013e6108c2565b606091505b505090508061077257600080fd5b60006108db60075490565b9050600082116109205760405162461bcd60e51b815260206004820152601060248201526f151bdbc81cdb585b1b08185b5bdd5b9d60821b604482015260640161063c565b600c548211156109635760405162461bcd60e51b815260206004820152600e60248201526d151bdbc8189a59c8185b5bdd5b9d60921b604482015260640161063c565b600b546109708383611b29565b11156109be5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768204e46547320746f206d696e74000000000000000000604482015260640161063c565b600a546109cb9083611b55565b341015610a0b5760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161063c565b60005b82811015610a4857610a2884610a2360075490565b6110da565b610a36600780546001019055565b80610a4081611bf2565b915050610a0e565b50505050565b61077283838360405180602001604052806000815250610c96565b6000610a7460075490565b905090565b6006546001600160a01b03163314610aa35760405162461bcd60e51b815260040161063c90611aa3565b8051610ab69060089060208401906115d7565b5050565b6000818152600260205260408120546001600160a01b03168061052f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063c565b60088054610b3e90611bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a90611bb7565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b505050505081565b60006001600160a01b038216610c2a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c705760405162461bcd60e51b815260040161063c90611aa3565b610c7a60006110f4565b565b60606001805461054490611bb7565b610ab6338383611146565b610ca03383610e43565b610cbc5760405162461bcd60e51b815260040161063c90611ad8565b610a4884848484611215565b60098054610b3e90611bb7565b6000818152600260205260409020546060906001600160a01b0316610cf957600080fd5b6000610d03611248565b905080610d0f84611257565b6009604051602001610d239392919061193d565b604051602081830303815290604052915050919050565b6006546001600160a01b03163314610d645760405162461bcd60e51b815260040161063c90611aa3565b6001600160a01b038116610dc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063c565b610dd2816110f4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e0a82610aba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ebc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063c565b6000610ec783610aba565b9050806001600160a01b0316846001600160a01b03161480610f025750836001600160a01b0316610ef7846105c7565b6001600160a01b0316145b80610f3257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f4d82610aba565b6001600160a01b031614610fb55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161063c565b6001600160a01b0382166110175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063c565b611022600082610dd5565b6001600160a01b038316600090815260036020526040812080546001929061104b908490611b74565b90915550506001600160a01b0382166000908152600360205260408120805460019290611079908490611b29565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ab6828260405180602001604052806000815250611355565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156111a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611220848484610f3a565b61122c84848484611388565b610a485760405162461bcd60e51b815260040161063c90611a51565b60606008805461054490611bb7565b60608161127b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a5578061128f81611bf2565b915061129e9050600a83611b41565b915061127f565b60008167ffffffffffffffff8111156112c0576112c0611c63565b6040519080825280601f01601f1916602001820160405280156112ea576020820181803683370190505b5090505b8415610f32576112ff600183611b74565b915061130c600a86611c0d565b611317906030611b29565b60f81b81838151811061132c5761132c611c4d565b60200101906001600160f81b031916908160001a90535061134e600a86611b41565b94506112ee565b61135f8383611495565b61136c6000848484611388565b6107725760405162461bcd60e51b815260040161063c90611a51565b60006001600160a01b0384163b1561148a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113cc903390899088908890600401611a01565b602060405180830381600087803b1580156113e657600080fd5b505af1925050508015611416575060408051601f3d908101601f1916820190925261141391810190611892565b60015b611470573d808015611444576040519150601f19603f3d011682016040523d82523d6000602084013e611449565b606091505b5080516114685760405162461bcd60e51b815260040161063c90611a51565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f32565b506001949350505050565b6001600160a01b0382166114eb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063c565b6000818152600260205260409020546001600160a01b0316156115505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063c565b6001600160a01b0382166000908152600360205260408120805460019290611579908490611b29565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115e390611bb7565b90600052602060002090601f016020900481019282611605576000855561164b565b82601f1061161e57805160ff191683800117855561164b565b8280016001018555821561164b579182015b8281111561164b578251825591602001919060010190611630565b5061165792915061165b565b5090565b5b80821115611657576000815560010161165c565b600067ffffffffffffffff8084111561168b5761168b611c63565b604051601f8501601f19908116603f011681019082821181831017156116b3576116b3611c63565b816040528093508581528686860111156116cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116fd57600080fd5b919050565b60006020828403121561171457600080fd5b61171d826116e6565b9392505050565b6000806040838503121561173757600080fd5b611740836116e6565b915061174e602084016116e6565b90509250929050565b60008060006060848603121561176c57600080fd5b611775846116e6565b9250611783602085016116e6565b9150604084013590509250925092565b600080600080608085870312156117a957600080fd5b6117b2856116e6565b93506117c0602086016116e6565b925060408501359150606085013567ffffffffffffffff8111156117e357600080fd5b8501601f810187136117f457600080fd5b61180387823560208401611670565b91505092959194509250565b6000806040838503121561182257600080fd5b61182b836116e6565b91506020830135801515811461184057600080fd5b809150509250929050565b6000806040838503121561185e57600080fd5b611867836116e6565b946020939093013593505050565b60006020828403121561188757600080fd5b813561171d81611c79565b6000602082840312156118a457600080fd5b815161171d81611c79565b6000602082840312156118c157600080fd5b813567ffffffffffffffff8111156118d857600080fd5b8201601f810184136118e957600080fd5b610f3284823560208401611670565b60006020828403121561190a57600080fd5b5035919050565b60008151808452611929816020860160208601611b8b565b601f01601f19169290920160200192915050565b6000845160206119508285838a01611b8b565b8551918401916119638184848a01611b8b565b8554920191600090600181811c908083168061198057607f831692505b85831081141561199e57634e487b7160e01b85526022600452602485fd5b8080156119b257600181146119c3576119f0565b60ff198516885283880195506119f0565b60008b81526020902060005b858110156119e85781548a8201529084019088016119cf565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a3490830184611911565b9695505050505050565b60208152600061171d6020830184611911565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b3c57611b3c611c21565b500190565b600082611b5057611b50611c37565b500490565b6000816000190483118215151615611b6f57611b6f611c21565b500290565b600082821015611b8657611b86611c21565b500390565b60005b83811015611ba6578181015183820152602001611b8e565b83811115610a485750506000910152565b600181811c90821680611bcb57607f821691505b60208210811415611bec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0657611c06611c21565b5060010190565b600082611c1c57611c1c611c37565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dd257600080fdfea2646970667358221220e48d2a97a92c0281b38fdb7672efbbba3a1e9b38b4a83c4b16a297714322818464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6e6674732d3838382e61707073706f742e636f6d2f636f6c6c656374696f6e732f63727970746f2d6d666572732f6a736f6e2f0000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string): https://storage.googleapis.com/nfts-888.appspot.com/collections/crypto-mfers/json/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [2] : 68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6e
Arg [3] : 6674732d3838382e61707073706f742e636f6d2f636f6c6c656374696f6e732f
Arg [4] : 63727970746f2d6d666572732f6a736f6e2f0000000000000000000000000000
Deployed Bytecode Sourcemap
38340:2267:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;6913:14:1;;6906:22;6888:41;;6876:2;6861:18;25207:305:0;;;;;;;;26152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6211:32:1;;;6193:51;;6181:2;6166:18;27711:221:0;6047:203:1;27234:411:0;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;:::-;;38663:34;;;;;;;;;;;;;;;;;;;14659:25:1;;;14647:2;14632:18;38663:34:0;14513:177:1;28461:339:0;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;40201:403::-;;;:::i;39126:529::-;;;;;;:::i;:::-;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;39663:99::-;;;;;;;;;;;;;:::i;40091:102::-;;;;;;;;;;-1:-1:-1;40091:102:0;;;;;:::i;:::-;;:::i;25846:239::-;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;38512:21::-;;;;;;;;;;;;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;38750:76::-;;;;;;;;;;-1:-1:-1;38750:76:0;;;;-1:-1:-1;;;;;38750:76:0;;;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;26321:104;;;;;;;;;;;;;:::i;38584:33::-;;;;;;;;;;;;;;;;28004:155;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;29127:328::-;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;38540:37::-;;;;;;;;;;;;;:::i;38704:39::-;;;;;;;;;;;;;;;;39770:281;;;;;;;;;;-1:-1:-1;39770:281:0;;;;;:::i;:::-;;:::i;38624:32::-;;;;;;;;;;;;;;;;28230:164;;;;;;;;;;-1:-1:-1;28230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28230:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25207:305::-;25309:4;-1:-1:-1;;;;;;25346:40:0;;-1:-1:-1;;;25346:40:0;;:105;;-1:-1:-1;;;;;;;25403:48:0;;-1:-1:-1;;;25403:48:0;25346:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;25468:36;25326:178;25207:305;-1:-1:-1;;25207:305:0:o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;27807:73;;;;-1:-1:-1;;;27807:73:0;;12711:2:1;27807:73:0;;;12693:21:1;12750:2;12730:18;;;12723:30;12789:34;12769:18;;;12762:62;-1:-1:-1;;;12840:18:1;;;12833:42;12892:19;;27807:73:0;;;;;;;;;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;13895:2:1;27365:57:0;;;13877:21:1;13934:2;13914:18;;;13907:30;13973:34;13953:18;;;13946:62;-1:-1:-1;;;14024:18:1;;;14017:31;14065:19;;27365:57:0;13693:397:1;27365:57:0;4348:10;-1:-1:-1;;;;;27457:21:0;;;;:62;;-1:-1:-1;27482:37:0;27499:5;4348:10;28230:164;:::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;10064:2:1;27435:168:0;;;10046:21:1;10103:2;10083:18;;;10076:30;10142:34;10122:18;;;10115:62;10213:26;10193:18;;;10186:54;10257:19;;27435:168:0;9862:420:1;27435:168:0;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;28461:339::-;28656:41;4348:10;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;;;;;;:::i;:::-;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;40201:403::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40289:1:::1;40265:21;:25;40257:34;;;::::0;::::1;;40304:23;40361:19;;40355:3;:25;;;;:::i;:::-;40330:51;::::0;:21:::1;:51;:::i;:::-;40417:16;::::0;40409:58:::1;::::0;40304:77;;-1:-1:-1;40395:8:0::1;::::0;-1:-1:-1;;;;;40417:16:0;;::::1;::::0;40304:77;;40395:8;40409:58;40395:8;40409:58;40304:77;40417:16;40409:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40394:73;;;40486:3;40478:12;;;::::0;::::1;;40504:8;40526:7;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;40526:7:::1;-1:-1:-1::0;;;;;40518:21:0::1;40547;40518:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40503:70;;;40592:3;40584:12;;;::::0;::::1;39126:529:::0;39194:14;39211:25;:15;964:14;;872:114;39211:25;39194:42;;39266:1;39257:6;:10;39249:39;;;;-1:-1:-1;;;39249:39:0;;10900:2:1;39249:39:0;;;10882:21:1;10939:2;10919:18;;;10912:30;-1:-1:-1;;;10958:18:1;;;10951:46;11014:18;;39249:39:0;10698:340:1;39249:39:0;39317:13;;39307:6;:23;;39299:50;;;;-1:-1:-1;;;39299:50:0;;9308:2:1;39299:50:0;;;9290:21:1;9347:2;9327:18;;;9320:30;-1:-1:-1;;;9366:18:1;;;9359:44;9420:18;;39299:50:0;9106:338:1;39299:50:0;39387:9;;39368:15;39377:6;39368;:15;:::i;:::-;:28;;39360:64;;;;-1:-1:-1;;;39360:64:0;;12016:2:1;39360:64:0;;;11998:21:1;12055:2;12035:18;;;12028:30;12094:25;12074:18;;;12067:53;12137:18;;39360:64:0;11814:347:1;39360:64:0;39465:5;;39456:14;;:6;:14;:::i;:::-;39443:9;:27;;39435:54;;;;-1:-1:-1;;;39435:54:0;;12368:2:1;39435:54:0;;;12350:21:1;12407:2;12387:18;;;12380:30;-1:-1:-1;;;12426:18:1;;;12419:44;12480:18;;39435:54:0;12166:338:1;39435:54:0;39507:9;39502:146;39526:6;39522:1;:10;39502:146;;;39554:40;39564:2;39568:25;:15;964:14;;872:114;39568:25;39554:9;:40::i;:::-;39609:27;:15;1083:19;;1101:1;1083:19;;;994:127;39609:27;39534:3;;;;:::i;:::-;;;;39502:146;;;;39183:472;39126:529;;:::o;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;39663:99::-;39702:7;39729:25;:15;964:14;;872:114;39729:25;39722:32;;39663:99;:::o;40091:102::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40165:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40091:102:::0;:::o;25846:239::-;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;11245:2:1;25981:73:0;;;11227:21:1;11284:2;11264:18;;;11257:30;11323:34;11303:18;;;11296:62;-1:-1:-1;;;11374:18:1;;;11367:39;11423:19;;25981:73:0;11043:405:1;38512:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25576:208::-;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;10489:2:1;25668:74:0;;;10471:21:1;10528:2;10508:18;;;10501:30;10567:34;10547:18;;;10540:62;-1:-1:-1;;;10618:18:1;;;10611:40;10668:19;;25668:74:0;10287:406:1;25668:74:0;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;28004:155::-;28099:52;4348:10;28132:8;28142;28099:18;:52::i;29127:328::-;29302:41;4348:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;38540:37::-;;;;;;;:::i;39770:281::-;31030:4;31054:16;;;:7;:16;;;;;;39843:13;;-1:-1:-1;;;;;31054:16:0;39869:25;;;;;;39907:28;39938:10;:8;:10::i;:::-;39907:41;;39992:14;40008:18;:7;:16;:18::i;:::-;40028:13;39975:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39961:82;;;39770:281;;;:::o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;7785:2:1;6534:73:0::1;::::0;::::1;7767:21:1::0;7824:2;7804:18;;;7797:30;7863:34;7843:18;;;7836:62;-1:-1:-1;;;7914:18:1;;;7907:36;7960:19;;6534:73:0::1;7583:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;34947:174::-;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;31259:348::-;31352:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;31369:73;;;;-1:-1:-1;;;31369:73:0;;9651:2:1;31369:73:0;;;9633:21:1;9690:2;9670:18;;;9663:30;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:18:1;;;9773:42;9832:19;;31369:73:0;9449:408:1;31369:73:0;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;-1:-1:-1;;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31566:32;31503:96;31259:348;-1:-1:-1;;;;31259:348:0:o;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;13485:2:1;34375:85:0;;;13467:21:1;13524:2;13504:18;;;13497:30;13563:34;13543:18;;;13536:62;-1:-1:-1;;;13614:18:1;;;13607:39;13663:19;;34375:85:0;13283:405:1;34375:85:0;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;8549:2:1;34471:65:0;;;8531:21:1;8588:2;8568:18;;;8561:30;8627:34;8607:18;;;8600:62;-1:-1:-1;;;8678:18:1;;;8671:34;8722:19;;34471:65:0;8347:400:1;34471:65:0;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35263:315::-;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;8954:2:1;35401:55:0;;;8936:21:1;8993:2;8973:18;;;8966:30;9032:27;9012:18;;;9005:55;9077:18;;35401:55:0;8752:349:1;35401:55:0;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;;;;35529:41;;6888::1;;;35529::0;;6861:18:1;35529:41:0;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;;;;;;:::i;38982:108::-;39042:13;39075:7;39068:14;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32286:321;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;;;;;;:::i;36143:799::-;36298:4;-1:-1:-1;;;;;36319:13:0;;8155:20;8203:8;36315:620;;36355:72;;-1:-1:-1;;;36355:72:0;;-1:-1:-1;;;;;36355:36:0;;;;;:72;;4348:10;;36406:4;;36412:7;;36421:5;;36355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;;;;;;:::i;36593:272::-;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;-1:-1:-1;;;36478:51:0;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32943:382::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;11655:2:1;33015:61:0;;;11637:21:1;;;11674:18;;;11667:30;11733:34;11713:18;;;11706:62;11785:18;;33015:61:0;11453:356:1;33015:61:0;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;33087:58;;;;-1:-1:-1;;;33087:58:0;;8192:2:1;33087:58:0;;;8174:21:1;8231:2;8211:18;;;8204:30;8270;8250:18;;;8243:58;8318:18;;33087:58:0;7990:352:1;33087:58:0;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:1527::-;4529:3;4567:6;4561:13;4593:4;4606:51;4650:6;4645:3;4640:2;4632:6;4628:15;4606:51;:::i;:::-;4720:13;;4679:16;;;;4742:55;4720:13;4679:16;4764:15;;;4742:55;:::i;:::-;4886:13;;4819:20;;;4859:1;;4946;4968:18;;;;5021;;;;5048:93;;5126:4;5116:8;5112:19;5100:31;;5048:93;5189:2;5179:8;5176:16;5156:18;5153:40;5150:167;;;-1:-1:-1;;;5216:33:1;;5272:4;5269:1;5262:15;5302:4;5223:3;5290:17;5150:167;5333:18;5360:110;;;;5484:1;5479:328;;;;5326:481;;5360:110;-1:-1:-1;;5395:24:1;;5381:39;;5440:20;;;;-1:-1:-1;5360:110:1;;5479:328;14768:1;14761:14;;;14805:4;14792:18;;5574:1;5588:169;5602:8;5599:1;5596:15;5588:169;;;5684:14;;5669:13;;;5662:37;5727:16;;;;5619:10;;5588:169;;;5592:3;;5788:8;5781:5;5777:20;5770:27;;5326:481;-1:-1:-1;5823:3:1;;4305:1527;-1:-1:-1;;;;;;;;;;;4305:1527:1:o;6255:488::-;-1:-1:-1;;;;;6524:15:1;;;6506:34;;6576:15;;6571:2;6556:18;;6549:43;6623:2;6608:18;;6601:34;;;6671:3;6666:2;6651:18;;6644:31;;;6449:4;;6692:45;;6717:19;;6709:6;6692:45;:::i;:::-;6684:53;6255:488;-1:-1:-1;;;;;;6255:488:1:o;6940:219::-;7089:2;7078:9;7071:21;7052:4;7109:44;7149:2;7138:9;7134:18;7126:6;7109:44;:::i;7164:414::-;7366:2;7348:21;;;7405:2;7385:18;;;7378:30;7444:34;7439:2;7424:18;;7417:62;-1:-1:-1;;;7510:2:1;7495:18;;7488:48;7568:3;7553:19;;7164:414::o;12922:356::-;13124:2;13106:21;;;13143:18;;;13136:30;13202:34;13197:2;13182:18;;13175:62;13269:2;13254:18;;12922:356::o;14095:413::-;14297:2;14279:21;;;14336:2;14316:18;;;14309:30;14375:34;14370:2;14355:18;;14348:62;-1:-1:-1;;;14441:2:1;14426:18;;14419:47;14498:3;14483:19;;14095:413::o;14821:128::-;14861:3;14892:1;14888:6;14885:1;14882:13;14879:39;;;14898:18;;:::i;:::-;-1:-1:-1;14934:9:1;;14821:128::o;14954:120::-;14994:1;15020;15010:35;;15025:18;;:::i;:::-;-1:-1:-1;15059:9:1;;14954:120::o;15079:168::-;15119:7;15185:1;15181;15177:6;15173:14;15170:1;15167:21;15162:1;15155:9;15148:17;15144:45;15141:71;;;15192:18;;:::i;:::-;-1:-1:-1;15232:9:1;;15079:168::o;15252:125::-;15292:4;15320:1;15317;15314:8;15311:34;;;15325:18;;:::i;:::-;-1:-1:-1;15362:9:1;;15252:125::o;15382:258::-;15454:1;15464:113;15478:6;15475:1;15472:13;15464:113;;;15554:11;;;15548:18;15535:11;;;15528:39;15500:2;15493:10;15464:113;;;15595:6;15592:1;15589:13;15586:48;;;-1:-1:-1;;15630:1:1;15612:16;;15605:27;15382:258::o;15645:380::-;15724:1;15720:12;;;;15767;;;15788:61;;15842:4;15834:6;15830:17;15820:27;;15788:61;15895:2;15887:6;15884:14;15864:18;15861:38;15858:161;;;15941:10;15936:3;15932:20;15929:1;15922:31;15976:4;15973:1;15966:15;16004:4;16001:1;15994:15;15858:161;;15645:380;;;:::o;16030:135::-;16069:3;-1:-1:-1;;16090:17:1;;16087:43;;;16110:18;;:::i;:::-;-1:-1:-1;16157:1:1;16146:13;;16030:135::o;16170:112::-;16202:1;16228;16218:35;;16233:18;;:::i;:::-;-1:-1:-1;16267:9:1;;16170:112::o;16287:127::-;16348:10;16343:3;16339:20;16336:1;16329:31;16379:4;16376:1;16369:15;16403:4;16400:1;16393:15;16419:127;16480:10;16475:3;16471:20;16468:1;16461:31;16511:4;16508:1;16501:15;16535:4;16532:1;16525:15;16551:127;16612:10;16607:3;16603:20;16600:1;16593:31;16643:4;16640:1;16633:15;16667:4;16664:1;16657:15;16683:127;16744:10;16739:3;16735:20;16732:1;16725:31;16775:4;16772:1;16765:15;16799:4;16796:1;16789:15;16815:131;-1:-1:-1;;;;;;16889:32:1;;16879:43;;16869:71;;16936:1;16933;16926:12
Swarm Source
ipfs://e48d2a97a92c0281b38fdb7672efbbba3a1e9b38b4a83c4b16a2977143228184
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.