ERC-721
Overview
Max Total Supply
2,217 BCWK
Holders
230
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 BCWKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlockchainWorkers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-25 */ // 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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/BlockchainWorkers.sol pragma solidity >=0.7.0 <0.9.0; contract BlockchainWorkers is ERC721A, Ownable { uint256 public MAX_MINTS = 3; uint256 MAX_SUPPLY_DEV = 2222; uint256 public MAX_SUPPLY = 2222; uint256 public mintRate = 0.005 ether; string public unrevealedUri = "INSTAREVEAL"; bool public revealed = true; bool public saleIsActive = true; string public baseURI = "https://gateway.pinata.cloud/ipfs/QmXfUiZyMEPMRd82f1oeDQcNKx3CV49Zb9YGPFX26z1TJX/"; constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(saleIsActive, "Sale must be active to mint"); require(quantity <= MAX_MINTS, "Exceeded the limit"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(msg.value >= (mintRate * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); } function reserveMint(uint256 quantity) public onlyOwner { require(quantity <= MAX_SUPPLY_DEV, "Not enough tokens left"); _safeMint(msg.sender, quantity); } function flipSaleStatus() public onlyOwner { saleIsActive = !saleIsActive; } function flipRevealedStatus() public onlyOwner { revealed = !revealed; } function setCost(uint256 _cost) public onlyOwner { mintRate = _cost; } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(!revealed){ return unrevealedUri; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipRevealedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60036009556108ae600a819055600b9081556611c37937e08000600c5560c060405260808190526a125394d51054915591505360aa1b60a09081526200004991600d919062000154565b50600e805461ffff19166101011790556040805160808101909152605180825262001eee602083013980516200008891600f9160209091019062000154565b503480156200009657600080fd5b5060405162001f3f38038062001f3f833981016040819052620000b991620002b1565b815182908290620000d290600290602085019062000154565b508051620000e890600390602084019062000154565b50506000805550620000fa3362000102565b50506200036e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000162906200031b565b90600052602060002090601f016020900481019282620001865760008555620001d1565b82601f10620001a157805160ff1916838001178555620001d1565b82800160010185558215620001d1579182015b82811115620001d1578251825591602001919060010190620001b4565b50620001df929150620001e3565b5090565b5b80821115620001df5760008155600101620001e4565b600082601f8301126200020c57600080fd5b81516001600160401b038082111562000229576200022962000358565b604051601f8301601f19908116603f0116810190828211818310171562000254576200025462000358565b816040528381526020925086838588010111156200027157600080fd5b600091505b8382101562000295578582018301518183018401529082019062000276565b83821115620002a75760008385830101525b9695505050505050565b60008060408385031215620002c557600080fd5b82516001600160401b0380821115620002dd57600080fd5b620002eb86838701620001fa565b935060208501519150808211156200030257600080fd5b506200031185828601620001fa565b9150509250929050565b600181811c908216806200033057607f821691505b602082108114156200035257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b70806200037e6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c02c1bcd11610095578063ce03ec9311610064578063ce03ec93146104c4578063e985e9c5146104d9578063eb8d244414610522578063f2fde38b1461054157600080fd5b8063c02c1bcd14610463578063c87b56dd14610478578063ca0dcf1614610498578063cce132d1146104ae57600080fd5b8063a0712d68116100d1578063a0712d68146103fb578063a22cb4651461040e578063b14a2fce1461042e578063b88d4fde1461044357600080fd5b8063715018a6146103b35780638da5cb5b146103c857806395d89b41146103e657600080fd5b806332cb6b0c1161016f578063518302271161013e57806351830227146103445780636352211e1461035e5780636c0360eb1461037e57806370a082311461039357600080fd5b806332cb6b0c146102e65780633ccfd60b146102fc57806342842e0e1461030457806344a0d68a1461032457600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780631342ff4c1461028357806318160ddd146102a357806323b872dd146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046117f9565b610561565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b3565b6040516101fe919061198c565b34801561023557600080fd5b50610249610244366004611833565b610645565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046117cf565b610689565b005b34801561028f57600080fd5b5061028161029e366004611833565b610710565b3480156102af57600080fd5b50600154600054035b6040519081526020016101fe565b3480156102d257600080fd5b506102816102e136600461167b565b61079b565b3480156102f257600080fd5b506102b8600b5481565b6102816107a6565b34801561031057600080fd5b5061028161031f36600461167b565b610809565b34801561033057600080fd5b5061028161033f366004611833565b610824565b34801561035057600080fd5b50600e546101f29060ff1681565b34801561036a57600080fd5b50610249610379366004611833565b610853565b34801561038a57600080fd5b5061021c610865565b34801561039f57600080fd5b506102b86103ae366004611626565b6108f3565b3480156103bf57600080fd5b50610281610942565b3480156103d457600080fd5b506008546001600160a01b0316610249565b3480156103f257600080fd5b5061021c610978565b610281610409366004611833565b610987565b34801561041a57600080fd5b50610281610429366004611793565b610adc565b34801561043a57600080fd5b50610281610b72565b34801561044f57600080fd5b5061028161045e3660046116b7565b610bb0565b34801561046f57600080fd5b5061021c610bfa565b34801561048457600080fd5b5061021c610493366004611833565b610c07565b3480156104a457600080fd5b506102b8600c5481565b3480156104ba57600080fd5b506102b860095481565b3480156104d057600080fd5b50610281610d6e565b3480156104e557600080fd5b506101f26104f4366004611648565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b50600e546101f290610100900460ff1681565b34801561054d57600080fd5b5061028161055c366004611626565b610db5565b60006001600160e01b031982166380ac58cd60e01b148061059257506001600160e01b03198216635b5e139f60e01b145b806105ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105c290611a62565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee90611a62565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b600061065082610e4d565b61066d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069482610853565b9050806001600160a01b0316836001600160a01b031614156106c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610700576106e381336104f4565b610700576040516367d9dca160e11b815260040160405180910390fd5b61070b838383610e78565b505050565b6008546001600160a01b031633146107435760405162461bcd60e51b815260040161073a9061199f565b60405180910390fd5b600a5481111561078e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161073a565b6107983382610ed4565b50565b61070b838383610ef2565b6008546001600160a01b031633146107d05760405162461bcd60e51b815260040161073a9061199f565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610798573d6000803e3d6000fd5b61070b83838360405180602001604052806000815250610bb0565b6008546001600160a01b0316331461084e5760405162461bcd60e51b815260040161073a9061199f565b600c55565b600061085e826110e1565b5192915050565b600f805461087290611a62565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90611a62565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b505050505081565b60006001600160a01b03821661091c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461096c5760405162461bcd60e51b815260040161073a9061199f565b61097660006111fd565b565b6060600380546105c290611a62565b600e54610100900460ff166109de5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161073a565b600954811115610a255760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161073a565b600b5481610a366001546000540390565b610a4091906119d4565b1115610a875760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161073a565b80600c54610a959190611a00565b34101561078e5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161073a565b6001600160a01b038216331415610b065760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b9c5760405162461bcd60e51b815260040161073a9061199f565b600e805460ff19811660ff90911615179055565b610bbb848484610ef2565b6001600160a01b0383163b15610bf457610bd78484848461124f565b610bf4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d805461087290611a62565b6060610c1282610e4d565b610c765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073a565b600e5460ff16610d1257600d8054610c8d90611a62565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb990611a62565b8015610d065780601f10610cdb57610100808354040283529160200191610d06565b820191906000526020600020905b815481529060010190602001808311610ce957829003601f168201915b50505050509050919050565b6000600f8054610d2190611a62565b905011610d3d57604051806020016040528060008152506105ad565b600f610d4883611347565b604051602001610d59929190611894565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610d985760405162461bcd60e51b815260040161073a9061199f565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ddf5760405162461bcd60e51b815260040161073a9061199f565b6001600160a01b038116610e445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b610798816111fd565b60008054821080156105ad575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610eee828260405180602001604052806000815250611445565b5050565b6000610efd826110e1565b9050836001600160a01b031681600001516001600160a01b031614610f345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f525750610f5285336104f4565b80610f6d575033610f6284610645565b6001600160a01b0316145b905080610f8d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610fb457604051633a954ecd60e21b815260040160405180910390fd5b610fc060008487610e78565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611096576000548214611096578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156111e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111e25780516001600160a01b031615611178579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111dd579392505050565b611178565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061128490339089908890889060040161194f565b602060405180830381600087803b15801561129e57600080fd5b505af19250505080156112ce575060408051601f3d908101601f191682019092526112cb91810190611816565b60015b611329573d8080156112fc576040519150601f19603f3d011682016040523d82523d6000602084013e611301565b606091505b508051611321576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161136b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611395578061137f81611a9d565b915061138e9050600a836119ec565b915061136f565b60008167ffffffffffffffff8111156113b0576113b0611b0e565b6040519080825280601f01601f1916602001820160405280156113da576020820181803683370190505b5090505b841561133f576113ef600183611a1f565b91506113fc600a86611ab8565b6114079060306119d4565b60f81b81838151811061141c5761141c611af8565b60200101906001600160f81b031916908160001a90535061143e600a866119ec565b94506113de565b6000546001600160a01b03841661146e57604051622e076360e81b815260040160405180910390fd5b8261148c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156115b5575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461157e600087848060010195508761124f565b61159b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115335782600054146115b057600080fd5b6115fa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115b6575b506000908155610bf49085838684565b80356001600160a01b038116811461162157600080fd5b919050565b60006020828403121561163857600080fd5b6116418261160a565b9392505050565b6000806040838503121561165b57600080fd5b6116648361160a565b91506116726020840161160a565b90509250929050565b60008060006060848603121561169057600080fd5b6116998461160a565b92506116a76020850161160a565b9150604084013590509250925092565b600080600080608085870312156116cd57600080fd5b6116d68561160a565b93506116e46020860161160a565b925060408501359150606085013567ffffffffffffffff8082111561170857600080fd5b818701915087601f83011261171c57600080fd5b81358181111561172e5761172e611b0e565b604051601f8201601f19908116603f0116810190838211818310171561175657611756611b0e565b816040528281528a602084870101111561176f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117a657600080fd5b6117af8361160a565b9150602083013580151581146117c457600080fd5b809150509250929050565b600080604083850312156117e257600080fd5b6117eb8361160a565b946020939093013593505050565b60006020828403121561180b57600080fd5b813561164181611b24565b60006020828403121561182857600080fd5b815161164181611b24565b60006020828403121561184557600080fd5b5035919050565b60008151808452611864816020860160208601611a36565b601f01601f19169290920160200192915050565b6000815161188a818560208601611a36565b9290920192915050565b600080845481600182811c9150808316806118b057607f831692505b60208084108214156118d057634e487b7160e01b86526022600452602486fd5b8180156118e457600181146118f557611922565b60ff19861689528489019650611922565b60008b81526020902060005b8681101561191a5781548b820152908501908301611901565b505084890196505b5050505050506119466119358286611878565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119829083018461184c565b9695505050505050565b602081526000611641602083018461184c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119e7576119e7611acc565b500190565b6000826119fb576119fb611ae2565b500490565b6000816000190483118215151615611a1a57611a1a611acc565b500290565b600082821015611a3157611a31611acc565b500390565b60005b83811015611a51578181015183820152602001611a39565b83811115610bf45750506000910152565b600181811c90821680611a7657607f821691505b60208210811415611a9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ab157611ab1611acc565b5060010190565b600082611ac757611ac7611ae2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461079857600080fdfea264697066735822122020ba18ff17d92f1932b2fd22b1042cdf46f104676e16387e50eb6bdd02033adb64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d586655695a794d45504d5264383266316f654451634e4b7833435634395a6239594750465832367a31544a582f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012426c6f636b636861696e20576f726b657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044243574b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c02c1bcd11610095578063ce03ec9311610064578063ce03ec93146104c4578063e985e9c5146104d9578063eb8d244414610522578063f2fde38b1461054157600080fd5b8063c02c1bcd14610463578063c87b56dd14610478578063ca0dcf1614610498578063cce132d1146104ae57600080fd5b8063a0712d68116100d1578063a0712d68146103fb578063a22cb4651461040e578063b14a2fce1461042e578063b88d4fde1461044357600080fd5b8063715018a6146103b35780638da5cb5b146103c857806395d89b41146103e657600080fd5b806332cb6b0c1161016f578063518302271161013e57806351830227146103445780636352211e1461035e5780636c0360eb1461037e57806370a082311461039357600080fd5b806332cb6b0c146102e65780633ccfd60b146102fc57806342842e0e1461030457806344a0d68a1461032457600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780631342ff4c1461028357806318160ddd146102a357806323b872dd146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046117f9565b610561565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b3565b6040516101fe919061198c565b34801561023557600080fd5b50610249610244366004611833565b610645565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046117cf565b610689565b005b34801561028f57600080fd5b5061028161029e366004611833565b610710565b3480156102af57600080fd5b50600154600054035b6040519081526020016101fe565b3480156102d257600080fd5b506102816102e136600461167b565b61079b565b3480156102f257600080fd5b506102b8600b5481565b6102816107a6565b34801561031057600080fd5b5061028161031f36600461167b565b610809565b34801561033057600080fd5b5061028161033f366004611833565b610824565b34801561035057600080fd5b50600e546101f29060ff1681565b34801561036a57600080fd5b50610249610379366004611833565b610853565b34801561038a57600080fd5b5061021c610865565b34801561039f57600080fd5b506102b86103ae366004611626565b6108f3565b3480156103bf57600080fd5b50610281610942565b3480156103d457600080fd5b506008546001600160a01b0316610249565b3480156103f257600080fd5b5061021c610978565b610281610409366004611833565b610987565b34801561041a57600080fd5b50610281610429366004611793565b610adc565b34801561043a57600080fd5b50610281610b72565b34801561044f57600080fd5b5061028161045e3660046116b7565b610bb0565b34801561046f57600080fd5b5061021c610bfa565b34801561048457600080fd5b5061021c610493366004611833565b610c07565b3480156104a457600080fd5b506102b8600c5481565b3480156104ba57600080fd5b506102b860095481565b3480156104d057600080fd5b50610281610d6e565b3480156104e557600080fd5b506101f26104f4366004611648565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b50600e546101f290610100900460ff1681565b34801561054d57600080fd5b5061028161055c366004611626565b610db5565b60006001600160e01b031982166380ac58cd60e01b148061059257506001600160e01b03198216635b5e139f60e01b145b806105ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105c290611a62565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee90611a62565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b600061065082610e4d565b61066d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069482610853565b9050806001600160a01b0316836001600160a01b031614156106c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610700576106e381336104f4565b610700576040516367d9dca160e11b815260040160405180910390fd5b61070b838383610e78565b505050565b6008546001600160a01b031633146107435760405162461bcd60e51b815260040161073a9061199f565b60405180910390fd5b600a5481111561078e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161073a565b6107983382610ed4565b50565b61070b838383610ef2565b6008546001600160a01b031633146107d05760405162461bcd60e51b815260040161073a9061199f565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610798573d6000803e3d6000fd5b61070b83838360405180602001604052806000815250610bb0565b6008546001600160a01b0316331461084e5760405162461bcd60e51b815260040161073a9061199f565b600c55565b600061085e826110e1565b5192915050565b600f805461087290611a62565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90611a62565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b505050505081565b60006001600160a01b03821661091c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461096c5760405162461bcd60e51b815260040161073a9061199f565b61097660006111fd565b565b6060600380546105c290611a62565b600e54610100900460ff166109de5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161073a565b600954811115610a255760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161073a565b600b5481610a366001546000540390565b610a4091906119d4565b1115610a875760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161073a565b80600c54610a959190611a00565b34101561078e5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161073a565b6001600160a01b038216331415610b065760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b9c5760405162461bcd60e51b815260040161073a9061199f565b600e805460ff19811660ff90911615179055565b610bbb848484610ef2565b6001600160a01b0383163b15610bf457610bd78484848461124f565b610bf4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d805461087290611a62565b6060610c1282610e4d565b610c765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073a565b600e5460ff16610d1257600d8054610c8d90611a62565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb990611a62565b8015610d065780601f10610cdb57610100808354040283529160200191610d06565b820191906000526020600020905b815481529060010190602001808311610ce957829003601f168201915b50505050509050919050565b6000600f8054610d2190611a62565b905011610d3d57604051806020016040528060008152506105ad565b600f610d4883611347565b604051602001610d59929190611894565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610d985760405162461bcd60e51b815260040161073a9061199f565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ddf5760405162461bcd60e51b815260040161073a9061199f565b6001600160a01b038116610e445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b610798816111fd565b60008054821080156105ad575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610eee828260405180602001604052806000815250611445565b5050565b6000610efd826110e1565b9050836001600160a01b031681600001516001600160a01b031614610f345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f525750610f5285336104f4565b80610f6d575033610f6284610645565b6001600160a01b0316145b905080610f8d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610fb457604051633a954ecd60e21b815260040160405180910390fd5b610fc060008487610e78565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611096576000548214611096578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156111e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111e25780516001600160a01b031615611178579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111dd579392505050565b611178565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061128490339089908890889060040161194f565b602060405180830381600087803b15801561129e57600080fd5b505af19250505080156112ce575060408051601f3d908101601f191682019092526112cb91810190611816565b60015b611329573d8080156112fc576040519150601f19603f3d011682016040523d82523d6000602084013e611301565b606091505b508051611321576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161136b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611395578061137f81611a9d565b915061138e9050600a836119ec565b915061136f565b60008167ffffffffffffffff8111156113b0576113b0611b0e565b6040519080825280601f01601f1916602001820160405280156113da576020820181803683370190505b5090505b841561133f576113ef600183611a1f565b91506113fc600a86611ab8565b6114079060306119d4565b60f81b81838151811061141c5761141c611af8565b60200101906001600160f81b031916908160001a90535061143e600a866119ec565b94506113de565b6000546001600160a01b03841661146e57604051622e076360e81b815260040160405180910390fd5b8261148c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156115b5575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461157e600087848060010195508761124f565b61159b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115335782600054146115b057600080fd5b6115fa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115b6575b506000908155610bf49085838684565b80356001600160a01b038116811461162157600080fd5b919050565b60006020828403121561163857600080fd5b6116418261160a565b9392505050565b6000806040838503121561165b57600080fd5b6116648361160a565b91506116726020840161160a565b90509250929050565b60008060006060848603121561169057600080fd5b6116998461160a565b92506116a76020850161160a565b9150604084013590509250925092565b600080600080608085870312156116cd57600080fd5b6116d68561160a565b93506116e46020860161160a565b925060408501359150606085013567ffffffffffffffff8082111561170857600080fd5b818701915087601f83011261171c57600080fd5b81358181111561172e5761172e611b0e565b604051601f8201601f19908116603f0116810190838211818310171561175657611756611b0e565b816040528281528a602084870101111561176f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117a657600080fd5b6117af8361160a565b9150602083013580151581146117c457600080fd5b809150509250929050565b600080604083850312156117e257600080fd5b6117eb8361160a565b946020939093013593505050565b60006020828403121561180b57600080fd5b813561164181611b24565b60006020828403121561182857600080fd5b815161164181611b24565b60006020828403121561184557600080fd5b5035919050565b60008151808452611864816020860160208601611a36565b601f01601f19169290920160200192915050565b6000815161188a818560208601611a36565b9290920192915050565b600080845481600182811c9150808316806118b057607f831692505b60208084108214156118d057634e487b7160e01b86526022600452602486fd5b8180156118e457600181146118f557611922565b60ff19861689528489019650611922565b60008b81526020902060005b8681101561191a5781548b820152908501908301611901565b505084890196505b5050505050506119466119358286611878565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119829083018461184c565b9695505050505050565b602081526000611641602083018461184c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119e7576119e7611acc565b500190565b6000826119fb576119fb611ae2565b500490565b6000816000190483118215151615611a1a57611a1a611acc565b500290565b600082821015611a3157611a31611acc565b500390565b60005b83811015611a51578181015183820152602001611a39565b83811115610bf45750506000910152565b600181811c90821680611a7657607f821691505b60208210811415611a9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ab157611ab1611acc565b5060010190565b600082611ac757611ac7611ae2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461079857600080fdfea264697066735822122020ba18ff17d92f1932b2fd22b1042cdf46f104676e16387e50eb6bdd02033adb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012426c6f636b636861696e20576f726b657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044243574b00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Blockchain Workers
Arg [1] : _symbol (string): BCWK
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 426c6f636b636861696e20576f726b6572730000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4243574b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47442:2127:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28545:305;;;;;;;;;;-1:-1:-1;28545:305:0;;;;;:::i;:::-;;:::i;:::-;;;6166:14:1;;6159:22;6141:41;;6129:2;6114:18;28545:305:0;;;;;;;;31660:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33164:204::-;;;;;;;;;;-1:-1:-1;33164:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5464:32:1;;;5446:51;;5434:2;5419:18;33164:204:0;5300:203:1;32726:372:0;;;;;;;;;;-1:-1:-1;32726:372:0;;;;;:::i;:::-;;:::i;:::-;;48460:178;;;;;;;;;;-1:-1:-1;48460:178:0;;;;;:::i;:::-;;:::i;27785:312::-;;;;;;;;;;-1:-1:-1;28048:12:0;;27838:7;28032:13;:28;27785:312;;;9151:25:1;;;9139:2;9124:18;27785:312:0;9005:177:1;34029:170:0;;;;;;;;;;-1:-1:-1;34029:170:0;;;;;:::i;:::-;;:::i;47571:32::-;;;;;;;;;;;;;;;;48930:114;;;:::i;34270:185::-;;;;;;;;;;-1:-1:-1;34270:185:0;;;;;:::i;:::-;;:::i;48838:84::-;;;;;;;;;;-1:-1:-1;48838:84:0;;;;;:::i;:::-;;:::i;47704:27::-;;;;;;;;;;-1:-1:-1;47704:27:0;;;;;;;;31468:125;;;;;;;;;;-1:-1:-1;31468:125:0;;;;;:::i;:::-;;:::i;47778:107::-;;;;;;;;;;;;;:::i;28914:206::-;;;;;;;;;;-1:-1:-1;28914:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;31829:104;;;;;;;;;;;;;:::i;47984:468::-;;;;;;:::i;:::-;;:::i;33440:287::-;;;;;;;;;;-1:-1:-1;33440:287:0;;;;;:::i;:::-;;:::i;48744:86::-;;;;;;;;;;;;;:::i;34526:370::-;;;;;;;;;;-1:-1:-1;34526:370:0;;;;;:::i;:::-;;:::i;47654:43::-;;;;;;;;;;;;;:::i;49160:404::-;;;;;;;;;;-1:-1:-1;49160:404:0;;;;;:::i;:::-;;:::i;47610:37::-;;;;;;;;;;;;;;;;47500:28;;;;;;;;;;;;;;;;48646:90;;;;;;;;;;;;;:::i;33798:164::-;;;;;;;;;;-1:-1:-1;33798:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33919:25:0;;;33895:4;33919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33798:164;47738:31;;;;;;;;;;-1:-1:-1;47738:31:0;;;;;;;;;;;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;28545:305::-;28647:4;-1:-1:-1;;;;;;28684:40:0;;-1:-1:-1;;;28684:40:0;;:105;;-1:-1:-1;;;;;;;28741:48:0;;-1:-1:-1;;;28741:48:0;28684:105;:158;;;-1:-1:-1;;;;;;;;;;16995:40:0;;;28806:36;28664:178;28545:305;-1:-1:-1;;28545:305:0:o;31660:100::-;31714:13;31747:5;31740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31660:100;:::o;33164:204::-;33232:7;33257:16;33265:7;33257;:16::i;:::-;33252:64;;33282:34;;-1:-1:-1;;;33282:34:0;;;;;;;;;;;33252:64;-1:-1:-1;33336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33336:24:0;;33164:204::o;32726:372::-;32799:13;32815:24;32831:7;32815:15;:24::i;:::-;32799:40;;32860:5;-1:-1:-1;;;;;32854:11:0;:2;-1:-1:-1;;;;;32854:11:0;;32850:48;;;32874:24;;-1:-1:-1;;;32874:24:0;;;;;;;;;;;32850:48;2883:10;-1:-1:-1;;;;;32915:21:0;;;32911:139;;32942:37;32959:5;2883:10;33798:164;:::i;32942:37::-;32938:112;;33003:35;;-1:-1:-1;;;33003:35:0;;;;;;;;;;;32938:112;33062:28;33071:2;33075:7;33084:5;33062:8;:28::i;:::-;32788:310;32726:372;;:::o;48460:178::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;48547:14:::1;;48535:8;:26;;48527:61;;;::::0;-1:-1:-1;;;48527:61:0;;7729:2:1;48527:61:0::1;::::0;::::1;7711:21:1::0;7768:2;7748:18;;;7741:30;-1:-1:-1;;;7787:18:1;;;7780:52;7849:18;;48527:61:0::1;7527:346:1::0;48527:61:0::1;48599:31;48609:10;48621:8;48599:9;:31::i;:::-;48460:178:::0;:::o;34029:170::-;34163:28;34173:4;34179:2;34183:7;34163:9;:28::i;48930:114::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4152:6;;48988:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;49014:21:::1;48988:48:::0;::::1;;;::::0;::::1;::::0;;;49014:21;4152:6;48988:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;34270:185:::0;34408:39;34425:4;34431:2;34435:7;34408:39;;;;;;;;;;;;:16;:39::i;48838:84::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48898:8:::1;:16:::0;48838:84::o;31468:125::-;31532:7;31559:21;31572:7;31559:12;:21::i;:::-;:26;;31468:125;-1:-1:-1;;31468:125:0:o;47778:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28914:206::-;28978:7;-1:-1:-1;;;;;29002:19:0;;28998:60;;29030:28;;-1:-1:-1;;;29030:28:0;;;;;;;;;;;28998:60;-1:-1:-1;;;;;;29084:19:0;;;;;:12;:19;;;;;:27;;;;28914:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;31829:104::-;31885:13;31918:7;31911:14;;;;;:::i;47984:468::-;48132:12;;;;;;;48124:52;;;;-1:-1:-1;;;48124:52:0;;7373:2:1;48124:52:0;;;7355:21:1;7412:2;7392:18;;;7385:30;7451:29;7431:18;;;7424:57;7498:18;;48124:52:0;7171:351:1;48124:52:0;48207:9;;48195:8;:21;;48187:52;;;;-1:-1:-1;;;48187:52:0;;7026:2:1;48187:52:0;;;7008:21:1;7065:2;7045:18;;;7038:30;-1:-1:-1;;;7084:18:1;;;7077:48;7142:18;;48187:52:0;6824:342:1;48187:52:0;48286:10;;48274:8;48258:13;28048:12;;27838:7;28032:13;:28;;27785:312;48258:13;:24;;;;:::i;:::-;:38;;48250:73;;;;-1:-1:-1;;;48250:73:0;;7729:2:1;48250:73:0;;;7711:21:1;7768:2;7748:18;;;7741:30;-1:-1:-1;;;7787:18:1;;;7780:52;7849:18;;48250:73:0;7527:346:1;48250:73:0;48367:8;48356;;:19;;;;:::i;:::-;48342:9;:34;;48334:68;;;;-1:-1:-1;;;48334:68:0;;8857:2:1;48334:68:0;;;8839:21:1;8896:2;8876:18;;;8869:30;-1:-1:-1;;;8915:18:1;;;8908:51;8976:18;;48334:68:0;8655:345:1;33440:287:0;-1:-1:-1;;;;;33539:24:0;;2883:10;33539:24;33535:54;;;33572:17;;-1:-1:-1;;;33572:17:0;;;;;;;;;;;33535:54;2883:10;33602:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33602:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33602:53:0;;;;;;;;;;33671:48;;6141:41:1;;;33602:42:0;;2883:10;33671:48;;6114:18:1;33671:48:0;;;;;;;33440:287;;:::o;48744:86::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48814:8:::1;::::0;;-1:-1:-1;;48802:20:0;::::1;48814:8;::::0;;::::1;48813:9;48802:20;::::0;;48744:86::o;34526:370::-;34693:28;34703:4;34709:2;34713:7;34693:9;:28::i;:::-;-1:-1:-1;;;;;34736:13:0;;7075:19;:23;34732:157;;34757:56;34788:4;34794:2;34798:7;34807:5;34757:30;:56::i;:::-;34753:136;;34837:40;;-1:-1:-1;;;34837:40:0;;;;;;;;;;;34753:136;34526:370;;;;:::o;47654:43::-;;;;;;;:::i;49160:404::-;49233:13;49267:16;49275:7;49267;:16::i;:::-;49259:76;;;;-1:-1:-1;;;49259:76:0;;8441:2:1;49259:76:0;;;8423:21:1;8480:2;8460:18;;;8453:30;8519:34;8499:18;;;8492:62;-1:-1:-1;;;8570:18:1;;;8563:45;8625:19;;49259:76:0;8239:411:1;49259:76:0;49350:8;;;;49346:60;;49381:13;49374:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49160:404;;;:::o;49346:60::-;49457:1;49439:7;49433:21;;;;;:::i;:::-;;;:25;:102;;;;;;;;;;;;;;;;;49485:7;49494:25;49511:7;49494:16;:25::i;:::-;49468:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49426:109;49160:404;-1:-1:-1;;49160:404:0:o;48646:90::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48716:12:::1;::::0;;-1:-1:-1;;48700:28:0;::::1;48716:12;::::0;;;::::1;;;48715:13;48700:28:::0;;::::1;;::::0;;48646:90::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;6619:2:1;5069:73:0::1;::::0;::::1;6601:21:1::0;6658:2;6638:18;;;6631:30;6697:34;6677:18;;;6670:62;-1:-1:-1;;;6748:18:1;;;6741:36;6794:19;;5069:73:0::1;6417:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;35151:174::-:0;35208:4;35272:13;;35262:7;:23;35232:85;;;;-1:-1:-1;;35290:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35290:27:0;;;;35289:28;;35151:174::o;44373:196::-;44488:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44488:29:0;-1:-1:-1;;;;;44488:29:0;;;;;;;;;44533:28;;44488:24;;44533:28;;;;;;;44373:196;;;:::o;35409:104::-;35478:27;35488:2;35492:8;35478:27;;;;;;;;;;;;:9;:27::i;:::-;35409:104;;:::o;39321:2130::-;39436:35;39474:21;39487:7;39474:12;:21::i;:::-;39436:59;;39534:4;-1:-1:-1;;;;;39512:26:0;:13;:18;;;-1:-1:-1;;;;;39512:26:0;;39508:67;;39547:28;;-1:-1:-1;;;39547:28:0;;;;;;;;;;;39508:67;39588:22;2883:10;-1:-1:-1;;;;;39614:20:0;;;;:73;;-1:-1:-1;39651:36:0;39668:4;2883:10;33798:164;:::i;39651:36::-;39614:126;;;-1:-1:-1;2883:10:0;39704:20;39716:7;39704:11;:20::i;:::-;-1:-1:-1;;;;;39704:36:0;;39614:126;39588:153;;39759:17;39754:66;;39785:35;;-1:-1:-1;;;39785:35:0;;;;;;;;;;;39754:66;-1:-1:-1;;;;;39835:16:0;;39831:52;;39860:23;;-1:-1:-1;;;39860:23:0;;;;;;;;;;;39831:52;40004:35;40021:1;40025:7;40034:4;40004:8;:35::i;:::-;-1:-1:-1;;;;;40335:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40335:31:0;;;;;;;-1:-1:-1;;40335:31:0;;;;;;;40381:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40381:29:0;;;;;;;;;;;40461:20;;;:11;:20;;;;;;40496:18;;-1:-1:-1;;;;;;40529:49:0;;;;-1:-1:-1;;;40562:15:0;40529:49;;;;;;;;;;40852:11;;40912:24;;;;;40955:13;;40461:20;;40912:24;;40955:13;40951:384;;41165:13;;41150:11;:28;41146:174;;41203:20;;41272:28;;;;41246:54;;-1:-1:-1;;;41246:54:0;-1:-1:-1;;;;;;41246:54:0;;;-1:-1:-1;;;;;41203:20:0;;41246:54;;;;41146:174;40310:1036;;;41382:7;41378:2;-1:-1:-1;;;;;41363:27:0;41372:4;-1:-1:-1;;;;;41363:27:0;;;;;;;;;;;39425:2026;;39321:2130;;;:::o;30295:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30406:7:0;30491:13;;30484:4;:20;30480:859;;;30525:31;30559:17;;;:11;:17;;;;;;;;;30525:51;;;;;;;;;-1:-1:-1;;;;;30525:51:0;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;;;;30595:729;;30645:14;;-1:-1:-1;;;;;30645:28:0;;30641:101;;30709:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;30641:101::-;-1:-1:-1;;;31084:6:0;31129:17;;;;:11;:17;;;;;;;;;31117:29;;;;;;;;;-1:-1:-1;;;;;31117:29:0;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;;;31177:28;31173:109;;31245:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;31173:109::-;31044:261;;;30506:833;30480:859;31367:31;;-1:-1:-1;;;31367:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;45061:667::-;45245:72;;-1:-1:-1;;;45245:72:0;;45224:4;;-1:-1:-1;;;;;45245:36:0;;;;;:72;;2883:10;;45296:4;;45302:7;;45311:5;;45245:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45245:72:0;;;;;;;;-1:-1:-1;;45245:72:0;;;;;;;;;;;;:::i;:::-;;;45241:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45479:13:0;;45475:235;;45525:40;;-1:-1:-1;;;45525:40:0;;;;;;;;;;;45475:235;45668:6;45662:13;45653:6;45649:2;45645:15;45638:38;45241:480;-1:-1:-1;;;;;;45364:55:0;-1:-1:-1;;;45364:55:0;;-1:-1:-1;45241:480:0;45061:667;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;35886:1749;36009:20;36032:13;-1:-1:-1;;;;;36060:16:0;;36056:48;;36085:19;;-1:-1:-1;;;36085:19:0;;;;;;;;;;;36056:48;36119:13;36115:44;;36141:18;;-1:-1:-1;;;36141:18:0;;;;;;;;;;;36115:44;-1:-1:-1;;;;;36510:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36569:49:0;;36510:44;;;;;;;;36569:49;;;;-1:-1:-1;;36510:44:0;;;;;;36569:49;;;;;;;;;;;;;;;;36635:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36685:66:0;;;-1:-1:-1;;;36735:15:0;36685:66;;;;;;;;;;;;;36635:25;;36832:23;;;;7075:19;:23;36872:631;;36912:313;36943:38;;36968:12;;-1:-1:-1;;;;;36943:38:0;;;36960:1;;36943:38;;36960:1;;36943:38;37009:69;37048:1;37052:2;37056:14;;;;;;37072:5;37009:30;:69::i;:::-;37004:174;;37114:40;;-1:-1:-1;;;37114:40:0;;;;;;;;;;;37004:174;37220:3;37205:12;:18;36912:313;;37306:12;37289:13;;:29;37285:43;;37320:8;;;37285:43;36872:631;;;37369:119;37400:40;;37425:14;;;;;-1:-1:-1;;;;;37400:40:0;;;37417:1;;37400:40;;37417:1;;37400:40;37483:3;37468:12;:18;37369:119;;36872:631;-1:-1:-1;37517:13:0;:28;;;37567:60;;37600:2;37604:12;37618:8;37567:60;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:185::-;3728:3;3766:5;3760:12;3781:52;3826:6;3821:3;3814:4;3807:5;3803:16;3781:52;:::i;:::-;3849:16;;;;;3686:185;-1:-1:-1;;3686:185:1:o;3994:1301::-;4271:3;4300:1;4333:6;4327:13;4363:3;4385:1;4413:9;4409:2;4405:18;4395:28;;4473:2;4462:9;4458:18;4495;4485:61;;4539:4;4531:6;4527:17;4517:27;;4485:61;4565:2;4613;4605:6;4602:14;4582:18;4579:38;4576:165;;;-1:-1:-1;;;4640:33:1;;4696:4;4693:1;4686:15;4726:4;4647:3;4714:17;4576:165;4757:18;4784:104;;;;4902:1;4897:320;;;;4750:467;;4784:104;-1:-1:-1;;4817:24:1;;4805:37;;4862:16;;;;-1:-1:-1;4784:104:1;;4897:320;9260:1;9253:14;;;9297:4;9284:18;;4992:1;5006:165;5020:6;5017:1;5014:13;5006:165;;;5098:14;;5085:11;;;5078:35;5141:16;;;;5035:10;;5006:165;;;5010:3;;5200:6;5195:3;5191:16;5184:23;;4750:467;;;;;;;5233:56;5258:30;5284:3;5276:6;5258:30;:::i;:::-;-1:-1:-1;;;3936:20:1;;3981:1;3972:11;;3876:113;5233:56;5226:63;3994:1301;-1:-1:-1;;;;;3994:1301:1:o;5508:488::-;-1:-1:-1;;;;;5777:15:1;;;5759:34;;5829:15;;5824:2;5809:18;;5802:43;5876:2;5861:18;;5854:34;;;5924:3;5919:2;5904:18;;5897:31;;;5702:4;;5945:45;;5970:19;;5962:6;5945:45;:::i;:::-;5937:53;5508:488;-1:-1:-1;;;;;;5508:488:1:o;6193:219::-;6342:2;6331:9;6324:21;6305:4;6362:44;6402:2;6391:9;6387:18;6379:6;6362:44;:::i;7878:356::-;8080:2;8062:21;;;8099:18;;;8092:30;8158:34;8153:2;8138:18;;8131:62;8225:2;8210:18;;7878:356::o;9313:128::-;9353:3;9384:1;9380:6;9377:1;9374:13;9371:39;;;9390:18;;:::i;:::-;-1:-1:-1;9426:9:1;;9313:128::o;9446:120::-;9486:1;9512;9502:35;;9517:18;;:::i;:::-;-1:-1:-1;9551:9:1;;9446:120::o;9571:168::-;9611:7;9677:1;9673;9669:6;9665:14;9662:1;9659:21;9654:1;9647:9;9640:17;9636:45;9633:71;;;9684:18;;:::i;:::-;-1:-1:-1;9724:9:1;;9571:168::o;9744:125::-;9784:4;9812:1;9809;9806:8;9803:34;;;9817:18;;:::i;:::-;-1:-1:-1;9854:9:1;;9744:125::o;9874:258::-;9946:1;9956:113;9970:6;9967:1;9964:13;9956:113;;;10046:11;;;10040:18;10027:11;;;10020:39;9992:2;9985:10;9956:113;;;10087:6;10084:1;10081:13;10078:48;;;-1:-1:-1;;10122:1:1;10104:16;;10097:27;9874:258::o;10137:380::-;10216:1;10212:12;;;;10259;;;10280:61;;10334:4;10326:6;10322:17;10312:27;;10280:61;10387:2;10379:6;10376:14;10356:18;10353:38;10350:161;;;10433:10;10428:3;10424:20;10421:1;10414:31;10468:4;10465:1;10458:15;10496:4;10493:1;10486:15;10350:161;;10137:380;;;:::o;10522:135::-;10561:3;-1:-1:-1;;10582:17:1;;10579:43;;;10602:18;;:::i;:::-;-1:-1:-1;10649:1:1;10638:13;;10522:135::o;10662:112::-;10694:1;10720;10710:35;;10725:18;;:::i;:::-;-1:-1:-1;10759:9:1;;10662:112::o;10779:127::-;10840:10;10835:3;10831:20;10828:1;10821:31;10871:4;10868:1;10861:15;10895:4;10892:1;10885:15;10911:127;10972:10;10967:3;10963:20;10960:1;10953:31;11003:4;11000:1;10993:15;11027:4;11024:1;11017:15;11043:127;11104:10;11099:3;11095:20;11092:1;11085:31;11135:4;11132:1;11125:15;11159:4;11156:1;11149:15;11175:127;11236:10;11231:3;11227:20;11224:1;11217:31;11267:4;11264:1;11257:15;11291:4;11288:1;11281:15;11307:131;-1:-1:-1;;;;;;11381:32:1;;11371:43;;11361:71;;11428:1;11425;11418:12
Swarm Source
ipfs://20ba18ff17d92f1932b2fd22b1042cdf46f104676e16387e50eb6bdd02033adb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.