Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 41 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 16631526 | 739 days ago | IN | 0 ETH | 0.00196982 | ||||
Safe Transfer Fr... | 15800243 | 855 days ago | IN | 0 ETH | 0.00104136 | ||||
Safe Transfer Fr... | 15777273 | 858 days ago | IN | 0 ETH | 0.00170773 | ||||
Safe Transfer Fr... | 15777205 | 858 days ago | IN | 0 ETH | 0.00134191 | ||||
Safe Transfer Fr... | 15777125 | 858 days ago | IN | 0 ETH | 0.0017108 | ||||
Safe Transfer Fr... | 15777034 | 858 days ago | IN | 0 ETH | 0.00078143 | ||||
Safe Transfer Fr... | 15777034 | 858 days ago | IN | 0 ETH | 0.00151441 | ||||
Safe Transfer Fr... | 15771963 | 859 days ago | IN | 0 ETH | 0.00077181 | ||||
Safe Transfer Fr... | 15765280 | 860 days ago | IN | 0 ETH | 0.00064537 | ||||
Safe Transfer Fr... | 15764837 | 860 days ago | IN | 0 ETH | 0.00076087 | ||||
Safe Transfer Fr... | 15764820 | 860 days ago | IN | 0 ETH | 0.00061152 | ||||
Safe Transfer Fr... | 15764813 | 860 days ago | IN | 0 ETH | 0.00066477 | ||||
Safe Transfer Fr... | 15764807 | 860 days ago | IN | 0 ETH | 0.00071687 | ||||
Safe Transfer Fr... | 15736390 | 864 days ago | IN | 0 ETH | 0.00038923 | ||||
Safe Transfer Fr... | 15736390 | 864 days ago | IN | 0 ETH | 0.00075449 | ||||
Safe Transfer Fr... | 15736387 | 864 days ago | IN | 0 ETH | 0.00071103 | ||||
Safe Transfer Fr... | 15736381 | 864 days ago | IN | 0 ETH | 0.00083188 | ||||
Safe Transfer Fr... | 15706316 | 868 days ago | IN | 0 ETH | 0.00076164 | ||||
Safe Transfer Fr... | 15706315 | 868 days ago | IN | 0 ETH | 0.00072957 | ||||
Safe Transfer Fr... | 15706297 | 868 days ago | IN | 0 ETH | 0.00168633 | ||||
Safe Transfer Fr... | 15643337 | 877 days ago | IN | 0 ETH | 0.00094052 | ||||
Safe Transfer Fr... | 15615121 | 881 days ago | IN | 0 ETH | 0.00031224 | ||||
Safe Transfer Fr... | 15615106 | 881 days ago | IN | 0 ETH | 0.00030448 | ||||
Safe Transfer Fr... | 15424958 | 910 days ago | IN | 0 ETH | 0.00053575 | ||||
Safe Transfer Fr... | 15424953 | 910 days ago | IN | 0 ETH | 0.00056585 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14442861 | 1068 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Titan
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity^0.8.12; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol"; contract Titan is ERC1155 { address public owner; address public airdrop_address; string public name; event token_revealed(string _uri); event token_minted(address _user, uint256 _id); constructor(address _owner) ERC1155("ipfs://QmTNPqNiqqMFXHbA3gkVoCoDhMzWdA9Bz15BLSCoh2KLHM/metadata/{id}.json") { airdrop_address = msg.sender; owner = _owner; _setName('Titan Collection'); } function _setName(string memory _name) internal { name = _name; } function setURI(string memory _uri) external { require(airdrop_address == msg.sender, "Only called by airdrop address"); _setURI(_uri); emit token_revealed(_uri); } function mint(address _user, uint256 id) external { require(airdrop_address == msg.sender, "Only called by airdrop address"); _mint(_user, id, 1, ''); emit token_minted(_user, id); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"token_minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"}],"name":"token_revealed","type":"event"},{"inputs":[],"name":"airdrop_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200313e3803806200313e833981810160405281019062000037919062000284565b604051806080016040528060488152602001620030f66048913962000062816200013260201b60201c565b5033600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200012b6040518060400160405280601081526020017f546974616e20436f6c6c656374696f6e000000000000000000000000000000008152506200014e60201b60201c565b506200031b565b80600290805190602001906200014a9291906200016a565b5050565b8060059080519060200190620001669291906200016a565b5050565b8280546200017890620002e5565b90600052602060002090601f0160209004810192826200019c5760008555620001e8565b82601f10620001b757805160ff1916838001178555620001e8565b82800160010185558215620001e8579182015b82811115620001e7578251825591602001919060010190620001ca565b5b509050620001f79190620001fb565b5090565b5b8082111562000216576000816000905550600101620001fc565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200024c826200021f565b9050919050565b6200025e816200023f565b81146200026a57600080fd5b50565b6000815190506200027e8162000253565b92915050565b6000602082840312156200029d576200029c6200021a565b5b6000620002ad848285016200026d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fe57607f821691505b60208210811415620003155762000314620002b6565b5b50919050565b612dcb806200032b6000396000f3fe608060405234801561001057600080fd5b50600436106100ce5760003560e01c806340c10f191161008c578063a22cb46511610066578063a22cb46514610223578063e985e9c51461023f578063ed0ace851461026f578063f242432a1461028d576100ce565b806340c10f19146101b95780634e1273f4146101d55780638da5cb5b14610205576100ce565b8062fdd58e146100d357806301ffc9a71461010357806302fe53051461013357806306fdde031461014f5780630e89341c1461016d5780632eb2c2d61461019d575b600080fd5b6100ed60048036038101906100e89190611993565b6102a9565b6040516100fa91906119e2565b60405180910390f35b61011d60048036038101906101189190611a55565b610372565b60405161012a9190611a9d565b60405180910390f35b61014d60048036038101906101489190611bfe565b610454565b005b610157610527565b6040516101649190611ccf565b60405180910390f35b61018760048036038101906101829190611cf1565b6105b5565b6040516101949190611ccf565b60405180910390f35b6101b760048036038101906101b29190611e87565b610649565b005b6101d360048036038101906101ce9190611993565b6106ea565b005b6101ef60048036038101906101ea9190612019565b6107d3565b6040516101fc919061214f565b60405180910390f35b61020d6108ec565b60405161021a9190612180565b60405180910390f35b61023d600480360381019061023891906121c7565b610912565b005b61025960048036038101906102549190612207565b610928565b6040516102669190611a9d565b60405180910390f35b6102776109bc565b6040516102849190612180565b60405180910390f35b6102a760048036038101906102a29190612247565b6109e2565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561031a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031190612350565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061044d575061044c82610a83565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104db906123bc565b60405180910390fd5b6104ed81610aed565b7f276c3e5aadf8da3f905b423629f26086d7f2fcb7071f1c843a049f3be6a848358160405161051c9190611ccf565b60405180910390a150565b600580546105349061240b565b80601f01602080910402602001604051908101604052809291908181526020018280546105609061240b565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b505050505081565b6060600280546105c49061240b565b80601f01602080910402602001604051908101604052809291908181526020018280546105f09061240b565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b50505050509050919050565b610651610b07565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610697575061069685610691610b07565b610928565b5b6106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd906124af565b60405180910390fd5b6106e38585858585610b0f565b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610771906123bc565b60405180910390fd5b6107968282600160405180602001604052806000815250610e31565b7f2ccdfaec86039d001d29903cf7db0e44bff5ec1b5654538293ed865aaaa2ebbf82826040516107c79291906124cf565b60405180910390a15050565b60608151835114610819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108109061256a565b60405180910390fd5b6000835167ffffffffffffffff81111561083657610835611ad3565b5b6040519080825280602002602001820160405280156108645781602001602082028036833780820191505090505b50905060005b84518110156108e1576108b18582815181106108895761088861258a565b5b60200260200101518583815181106108a4576108a361258a565b5b60200260200101516102a9565b8282815181106108c4576108c361258a565b5b602002602001018181525050806108da906125e8565b905061086a565b508091505092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61092461091d610b07565b8383610fe2565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109ea610b07565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a305750610a2f85610a2a610b07565b610928565b5b610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906126a3565b60405180910390fd5b610a7c858585858561114f565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8060029080519060200190610b03929190611848565b5050565b600033905090565b8151835114610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90612735565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba906127c7565b60405180910390fd5b6000610bcd610b07565b9050610bdd8187878787876113eb565b60005b8451811015610d8e576000858281518110610bfe57610bfd61258a565b5b602002602001015190506000858381518110610c1d57610c1c61258a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590612859565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d739190612879565b9250508190555050505080610d87906125e8565b9050610be0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e059291906128cf565b60405180910390a4610e1b8187878787876113f3565b610e298187878787876113fb565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890612978565b60405180910390fd5b6000610eab610b07565b90506000610eb8856115d3565b90506000610ec5856115d3565b9050610ed6836000898585896113eb565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f359190612879565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610fb3929190612998565b60405180910390a4610fca836000898585896113f3565b610fd98360008989898961164d565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890612a33565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111429190611a9d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b6906127c7565b60405180910390fd5b60006111c9610b07565b905060006111d6856115d3565b905060006111e3856115d3565b90506111f38389898585896113eb565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190612859565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461133f9190612879565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516113bc929190612998565b60405180910390a46113d2848a8a86868a6113f3565b6113e0848a8a8a8a8a61164d565b505050505050505050565b505050505050565b505050505050565b61141a8473ffffffffffffffffffffffffffffffffffffffff16611825565b156115cb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611460959493929190612aa8565b6020604051808303816000875af192505050801561149c57506040513d601f19601f820116820180604052508101906114999190612b25565b60015b611542576114a8612b5f565b806308c379a0141561150557506114bd612b81565b806114c85750611507565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9190611ccf565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990612c89565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090612d1b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156115f2576115f1611ad3565b5b6040519080825280602002602001820160405280156116205781602001602082028036833780820191505090505b50905082816000815181106116385761163761258a565b5b60200260200101818152505080915050919050565b61166c8473ffffffffffffffffffffffffffffffffffffffff16611825565b1561181d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016116b2959493929190612d3b565b6020604051808303816000875af19250505080156116ee57506040513d601f19601f820116820180604052508101906116eb9190612b25565b60015b611794576116fa612b5f565b806308c379a01415611757575061170f612b81565b8061171a5750611759565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e9190611ccf565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90612c89565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290612d1b565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546118549061240b565b90600052602060002090601f01602090048101928261187657600085556118bd565b82601f1061188f57805160ff19168380011785556118bd565b828001600101855582156118bd579182015b828111156118bc5782518255916020019190600101906118a1565b5b5090506118ca91906118ce565b5090565b5b808211156118e75760008160009055506001016118cf565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061192a826118ff565b9050919050565b61193a8161191f565b811461194557600080fd5b50565b60008135905061195781611931565b92915050565b6000819050919050565b6119708161195d565b811461197b57600080fd5b50565b60008135905061198d81611967565b92915050565b600080604083850312156119aa576119a96118f5565b5b60006119b885828601611948565b92505060206119c98582860161197e565b9150509250929050565b6119dc8161195d565b82525050565b60006020820190506119f760008301846119d3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a32816119fd565b8114611a3d57600080fd5b50565b600081359050611a4f81611a29565b92915050565b600060208284031215611a6b57611a6a6118f5565b5b6000611a7984828501611a40565b91505092915050565b60008115159050919050565b611a9781611a82565b82525050565b6000602082019050611ab26000830184611a8e565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611b0b82611ac2565b810181811067ffffffffffffffff82111715611b2a57611b29611ad3565b5b80604052505050565b6000611b3d6118eb565b9050611b498282611b02565b919050565b600067ffffffffffffffff821115611b6957611b68611ad3565b5b611b7282611ac2565b9050602081019050919050565b82818337600083830152505050565b6000611ba1611b9c84611b4e565b611b33565b905082815260208101848484011115611bbd57611bbc611abd565b5b611bc8848285611b7f565b509392505050565b600082601f830112611be557611be4611ab8565b5b8135611bf5848260208601611b8e565b91505092915050565b600060208284031215611c1457611c136118f5565b5b600082013567ffffffffffffffff811115611c3257611c316118fa565b5b611c3e84828501611bd0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c81578082015181840152602081019050611c66565b83811115611c90576000848401525b50505050565b6000611ca182611c47565b611cab8185611c52565b9350611cbb818560208601611c63565b611cc481611ac2565b840191505092915050565b60006020820190508181036000830152611ce98184611c96565b905092915050565b600060208284031215611d0757611d066118f5565b5b6000611d158482850161197e565b91505092915050565b600067ffffffffffffffff821115611d3957611d38611ad3565b5b602082029050602081019050919050565b600080fd5b6000611d62611d5d84611d1e565b611b33565b90508083825260208201905060208402830185811115611d8557611d84611d4a565b5b835b81811015611dae5780611d9a888261197e565b845260208401935050602081019050611d87565b5050509392505050565b600082601f830112611dcd57611dcc611ab8565b5b8135611ddd848260208601611d4f565b91505092915050565b600067ffffffffffffffff821115611e0157611e00611ad3565b5b611e0a82611ac2565b9050602081019050919050565b6000611e2a611e2584611de6565b611b33565b905082815260208101848484011115611e4657611e45611abd565b5b611e51848285611b7f565b509392505050565b600082601f830112611e6e57611e6d611ab8565b5b8135611e7e848260208601611e17565b91505092915050565b600080600080600060a08688031215611ea357611ea26118f5565b5b6000611eb188828901611948565b9550506020611ec288828901611948565b945050604086013567ffffffffffffffff811115611ee357611ee26118fa565b5b611eef88828901611db8565b935050606086013567ffffffffffffffff811115611f1057611f0f6118fa565b5b611f1c88828901611db8565b925050608086013567ffffffffffffffff811115611f3d57611f3c6118fa565b5b611f4988828901611e59565b9150509295509295909350565b600067ffffffffffffffff821115611f7157611f70611ad3565b5b602082029050602081019050919050565b6000611f95611f9084611f56565b611b33565b90508083825260208201905060208402830185811115611fb857611fb7611d4a565b5b835b81811015611fe15780611fcd8882611948565b845260208401935050602081019050611fba565b5050509392505050565b600082601f83011261200057611fff611ab8565b5b8135612010848260208601611f82565b91505092915050565b600080604083850312156120305761202f6118f5565b5b600083013567ffffffffffffffff81111561204e5761204d6118fa565b5b61205a85828601611feb565b925050602083013567ffffffffffffffff81111561207b5761207a6118fa565b5b61208785828601611db8565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6120c68161195d565b82525050565b60006120d883836120bd565b60208301905092915050565b6000602082019050919050565b60006120fc82612091565b612106818561209c565b9350612111836120ad565b8060005b8381101561214257815161212988826120cc565b9750612134836120e4565b925050600181019050612115565b5085935050505092915050565b6000602082019050818103600083015261216981846120f1565b905092915050565b61217a8161191f565b82525050565b60006020820190506121956000830184612171565b92915050565b6121a481611a82565b81146121af57600080fd5b50565b6000813590506121c18161219b565b92915050565b600080604083850312156121de576121dd6118f5565b5b60006121ec85828601611948565b92505060206121fd858286016121b2565b9150509250929050565b6000806040838503121561221e5761221d6118f5565b5b600061222c85828601611948565b925050602061223d85828601611948565b9150509250929050565b600080600080600060a08688031215612263576122626118f5565b5b600061227188828901611948565b955050602061228288828901611948565b94505060406122938882890161197e565b93505060606122a48882890161197e565b925050608086013567ffffffffffffffff8111156122c5576122c46118fa565b5b6122d188828901611e59565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061233a602b83611c52565b9150612345826122de565b604082019050919050565b600060208201905081810360008301526123698161232d565b9050919050565b7f4f6e6c792063616c6c65642062792061697264726f7020616464726573730000600082015250565b60006123a6601e83611c52565b91506123b182612370565b602082019050919050565b600060208201905081810360008301526123d581612399565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061242357607f821691505b60208210811415612437576124366123dc565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612499603283611c52565b91506124a48261243d565b604082019050919050565b600060208201905081810360008301526124c88161248c565b9050919050565b60006040820190506124e46000830185612171565b6124f160208301846119d3565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612554602983611c52565b915061255f826124f8565b604082019050919050565b6000602082019050818103600083015261258381612547565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125f38261195d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612626576126256125b9565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061268d602983611c52565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061271f602883611c52565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127b1602583611c52565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612843602a83611c52565b915061284e826127e7565b604082019050919050565b6000602082019050818103600083015261287281612836565b9050919050565b60006128848261195d565b915061288f8361195d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128c4576128c36125b9565b5b828201905092915050565b600060408201905081810360008301526128e981856120f1565b905081810360208301526128fd81846120f1565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612962602183611c52565b915061296d82612906565b604082019050919050565b6000602082019050818103600083015261299181612955565b9050919050565b60006040820190506129ad60008301856119d3565b6129ba60208301846119d3565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612a1d602983611c52565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612a7a82612a53565b612a848185612a5e565b9350612a94818560208601611c63565b612a9d81611ac2565b840191505092915050565b600060a082019050612abd6000830188612171565b612aca6020830187612171565b8181036040830152612adc81866120f1565b90508181036060830152612af081856120f1565b90508181036080830152612b048184612a6f565b90509695505050505050565b600081519050612b1f81611a29565b92915050565b600060208284031215612b3b57612b3a6118f5565b5b6000612b4984828501612b10565b91505092915050565b60008160e01c9050919050565b600060033d1115612b7e5760046000803e612b7b600051612b52565b90505b90565b600060443d1015612b9157612c14565b612b996118eb565b60043d036004823e80513d602482011167ffffffffffffffff82111715612bc1575050612c14565b808201805167ffffffffffffffff811115612bdf5750505050612c14565b80602083010160043d038501811115612bfc575050505050612c14565b612c0b82602001850186611b02565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000612c73603483611c52565b9150612c7e82612c17565b604082019050919050565b60006020820190508181036000830152612ca281612c66565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000612d05602883611c52565b9150612d1082612ca9565b604082019050919050565b60006020820190508181036000830152612d3481612cf8565b9050919050565b600060a082019050612d506000830188612171565b612d5d6020830187612171565b612d6a60408301866119d3565b612d7760608301856119d3565b8181036080830152612d898184612a6f565b9050969550505050505056fea2646970667358221220acd951a69385b93b68b84b60a946060b90452de25e9ed34508e61b3d5558c6cf64736f6c634300080c0033697066733a2f2f516d544e50714e6971714d465848624133676b566f436f44684d7a57644139427a3135424c53436f68324b4c484d2f6d657461646174612f7b69647d2e6a736f6e000000000000000000000000f301c0984e251ebe61d3c44b5e2799455874238a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ce5760003560e01c806340c10f191161008c578063a22cb46511610066578063a22cb46514610223578063e985e9c51461023f578063ed0ace851461026f578063f242432a1461028d576100ce565b806340c10f19146101b95780634e1273f4146101d55780638da5cb5b14610205576100ce565b8062fdd58e146100d357806301ffc9a71461010357806302fe53051461013357806306fdde031461014f5780630e89341c1461016d5780632eb2c2d61461019d575b600080fd5b6100ed60048036038101906100e89190611993565b6102a9565b6040516100fa91906119e2565b60405180910390f35b61011d60048036038101906101189190611a55565b610372565b60405161012a9190611a9d565b60405180910390f35b61014d60048036038101906101489190611bfe565b610454565b005b610157610527565b6040516101649190611ccf565b60405180910390f35b61018760048036038101906101829190611cf1565b6105b5565b6040516101949190611ccf565b60405180910390f35b6101b760048036038101906101b29190611e87565b610649565b005b6101d360048036038101906101ce9190611993565b6106ea565b005b6101ef60048036038101906101ea9190612019565b6107d3565b6040516101fc919061214f565b60405180910390f35b61020d6108ec565b60405161021a9190612180565b60405180910390f35b61023d600480360381019061023891906121c7565b610912565b005b61025960048036038101906102549190612207565b610928565b6040516102669190611a9d565b60405180910390f35b6102776109bc565b6040516102849190612180565b60405180910390f35b6102a760048036038101906102a29190612247565b6109e2565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561031a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031190612350565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061044d575061044c82610a83565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104db906123bc565b60405180910390fd5b6104ed81610aed565b7f276c3e5aadf8da3f905b423629f26086d7f2fcb7071f1c843a049f3be6a848358160405161051c9190611ccf565b60405180910390a150565b600580546105349061240b565b80601f01602080910402602001604051908101604052809291908181526020018280546105609061240b565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b505050505081565b6060600280546105c49061240b565b80601f01602080910402602001604051908101604052809291908181526020018280546105f09061240b565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b50505050509050919050565b610651610b07565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610697575061069685610691610b07565b610928565b5b6106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd906124af565b60405180910390fd5b6106e38585858585610b0f565b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610771906123bc565b60405180910390fd5b6107968282600160405180602001604052806000815250610e31565b7f2ccdfaec86039d001d29903cf7db0e44bff5ec1b5654538293ed865aaaa2ebbf82826040516107c79291906124cf565b60405180910390a15050565b60608151835114610819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108109061256a565b60405180910390fd5b6000835167ffffffffffffffff81111561083657610835611ad3565b5b6040519080825280602002602001820160405280156108645781602001602082028036833780820191505090505b50905060005b84518110156108e1576108b18582815181106108895761088861258a565b5b60200260200101518583815181106108a4576108a361258a565b5b60200260200101516102a9565b8282815181106108c4576108c361258a565b5b602002602001018181525050806108da906125e8565b905061086a565b508091505092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61092461091d610b07565b8383610fe2565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109ea610b07565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a305750610a2f85610a2a610b07565b610928565b5b610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906126a3565b60405180910390fd5b610a7c858585858561114f565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8060029080519060200190610b03929190611848565b5050565b600033905090565b8151835114610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90612735565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba906127c7565b60405180910390fd5b6000610bcd610b07565b9050610bdd8187878787876113eb565b60005b8451811015610d8e576000858281518110610bfe57610bfd61258a565b5b602002602001015190506000858381518110610c1d57610c1c61258a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590612859565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d739190612879565b9250508190555050505080610d87906125e8565b9050610be0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e059291906128cf565b60405180910390a4610e1b8187878787876113f3565b610e298187878787876113fb565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890612978565b60405180910390fd5b6000610eab610b07565b90506000610eb8856115d3565b90506000610ec5856115d3565b9050610ed6836000898585896113eb565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f359190612879565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610fb3929190612998565b60405180910390a4610fca836000898585896113f3565b610fd98360008989898961164d565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890612a33565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111429190611a9d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b6906127c7565b60405180910390fd5b60006111c9610b07565b905060006111d6856115d3565b905060006111e3856115d3565b90506111f38389898585896113eb565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190612859565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461133f9190612879565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516113bc929190612998565b60405180910390a46113d2848a8a86868a6113f3565b6113e0848a8a8a8a8a61164d565b505050505050505050565b505050505050565b505050505050565b61141a8473ffffffffffffffffffffffffffffffffffffffff16611825565b156115cb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611460959493929190612aa8565b6020604051808303816000875af192505050801561149c57506040513d601f19601f820116820180604052508101906114999190612b25565b60015b611542576114a8612b5f565b806308c379a0141561150557506114bd612b81565b806114c85750611507565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9190611ccf565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990612c89565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090612d1b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156115f2576115f1611ad3565b5b6040519080825280602002602001820160405280156116205781602001602082028036833780820191505090505b50905082816000815181106116385761163761258a565b5b60200260200101818152505080915050919050565b61166c8473ffffffffffffffffffffffffffffffffffffffff16611825565b1561181d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016116b2959493929190612d3b565b6020604051808303816000875af19250505080156116ee57506040513d601f19601f820116820180604052508101906116eb9190612b25565b60015b611794576116fa612b5f565b806308c379a01415611757575061170f612b81565b8061171a5750611759565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e9190611ccf565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90612c89565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290612d1b565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546118549061240b565b90600052602060002090601f01602090048101928261187657600085556118bd565b82601f1061188f57805160ff19168380011785556118bd565b828001600101855582156118bd579182015b828111156118bc5782518255916020019190600101906118a1565b5b5090506118ca91906118ce565b5090565b5b808211156118e75760008160009055506001016118cf565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061192a826118ff565b9050919050565b61193a8161191f565b811461194557600080fd5b50565b60008135905061195781611931565b92915050565b6000819050919050565b6119708161195d565b811461197b57600080fd5b50565b60008135905061198d81611967565b92915050565b600080604083850312156119aa576119a96118f5565b5b60006119b885828601611948565b92505060206119c98582860161197e565b9150509250929050565b6119dc8161195d565b82525050565b60006020820190506119f760008301846119d3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a32816119fd565b8114611a3d57600080fd5b50565b600081359050611a4f81611a29565b92915050565b600060208284031215611a6b57611a6a6118f5565b5b6000611a7984828501611a40565b91505092915050565b60008115159050919050565b611a9781611a82565b82525050565b6000602082019050611ab26000830184611a8e565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611b0b82611ac2565b810181811067ffffffffffffffff82111715611b2a57611b29611ad3565b5b80604052505050565b6000611b3d6118eb565b9050611b498282611b02565b919050565b600067ffffffffffffffff821115611b6957611b68611ad3565b5b611b7282611ac2565b9050602081019050919050565b82818337600083830152505050565b6000611ba1611b9c84611b4e565b611b33565b905082815260208101848484011115611bbd57611bbc611abd565b5b611bc8848285611b7f565b509392505050565b600082601f830112611be557611be4611ab8565b5b8135611bf5848260208601611b8e565b91505092915050565b600060208284031215611c1457611c136118f5565b5b600082013567ffffffffffffffff811115611c3257611c316118fa565b5b611c3e84828501611bd0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c81578082015181840152602081019050611c66565b83811115611c90576000848401525b50505050565b6000611ca182611c47565b611cab8185611c52565b9350611cbb818560208601611c63565b611cc481611ac2565b840191505092915050565b60006020820190508181036000830152611ce98184611c96565b905092915050565b600060208284031215611d0757611d066118f5565b5b6000611d158482850161197e565b91505092915050565b600067ffffffffffffffff821115611d3957611d38611ad3565b5b602082029050602081019050919050565b600080fd5b6000611d62611d5d84611d1e565b611b33565b90508083825260208201905060208402830185811115611d8557611d84611d4a565b5b835b81811015611dae5780611d9a888261197e565b845260208401935050602081019050611d87565b5050509392505050565b600082601f830112611dcd57611dcc611ab8565b5b8135611ddd848260208601611d4f565b91505092915050565b600067ffffffffffffffff821115611e0157611e00611ad3565b5b611e0a82611ac2565b9050602081019050919050565b6000611e2a611e2584611de6565b611b33565b905082815260208101848484011115611e4657611e45611abd565b5b611e51848285611b7f565b509392505050565b600082601f830112611e6e57611e6d611ab8565b5b8135611e7e848260208601611e17565b91505092915050565b600080600080600060a08688031215611ea357611ea26118f5565b5b6000611eb188828901611948565b9550506020611ec288828901611948565b945050604086013567ffffffffffffffff811115611ee357611ee26118fa565b5b611eef88828901611db8565b935050606086013567ffffffffffffffff811115611f1057611f0f6118fa565b5b611f1c88828901611db8565b925050608086013567ffffffffffffffff811115611f3d57611f3c6118fa565b5b611f4988828901611e59565b9150509295509295909350565b600067ffffffffffffffff821115611f7157611f70611ad3565b5b602082029050602081019050919050565b6000611f95611f9084611f56565b611b33565b90508083825260208201905060208402830185811115611fb857611fb7611d4a565b5b835b81811015611fe15780611fcd8882611948565b845260208401935050602081019050611fba565b5050509392505050565b600082601f83011261200057611fff611ab8565b5b8135612010848260208601611f82565b91505092915050565b600080604083850312156120305761202f6118f5565b5b600083013567ffffffffffffffff81111561204e5761204d6118fa565b5b61205a85828601611feb565b925050602083013567ffffffffffffffff81111561207b5761207a6118fa565b5b61208785828601611db8565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6120c68161195d565b82525050565b60006120d883836120bd565b60208301905092915050565b6000602082019050919050565b60006120fc82612091565b612106818561209c565b9350612111836120ad565b8060005b8381101561214257815161212988826120cc565b9750612134836120e4565b925050600181019050612115565b5085935050505092915050565b6000602082019050818103600083015261216981846120f1565b905092915050565b61217a8161191f565b82525050565b60006020820190506121956000830184612171565b92915050565b6121a481611a82565b81146121af57600080fd5b50565b6000813590506121c18161219b565b92915050565b600080604083850312156121de576121dd6118f5565b5b60006121ec85828601611948565b92505060206121fd858286016121b2565b9150509250929050565b6000806040838503121561221e5761221d6118f5565b5b600061222c85828601611948565b925050602061223d85828601611948565b9150509250929050565b600080600080600060a08688031215612263576122626118f5565b5b600061227188828901611948565b955050602061228288828901611948565b94505060406122938882890161197e565b93505060606122a48882890161197e565b925050608086013567ffffffffffffffff8111156122c5576122c46118fa565b5b6122d188828901611e59565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061233a602b83611c52565b9150612345826122de565b604082019050919050565b600060208201905081810360008301526123698161232d565b9050919050565b7f4f6e6c792063616c6c65642062792061697264726f7020616464726573730000600082015250565b60006123a6601e83611c52565b91506123b182612370565b602082019050919050565b600060208201905081810360008301526123d581612399565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061242357607f821691505b60208210811415612437576124366123dc565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612499603283611c52565b91506124a48261243d565b604082019050919050565b600060208201905081810360008301526124c88161248c565b9050919050565b60006040820190506124e46000830185612171565b6124f160208301846119d3565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612554602983611c52565b915061255f826124f8565b604082019050919050565b6000602082019050818103600083015261258381612547565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125f38261195d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612626576126256125b9565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061268d602983611c52565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061271f602883611c52565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127b1602583611c52565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612843602a83611c52565b915061284e826127e7565b604082019050919050565b6000602082019050818103600083015261287281612836565b9050919050565b60006128848261195d565b915061288f8361195d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128c4576128c36125b9565b5b828201905092915050565b600060408201905081810360008301526128e981856120f1565b905081810360208301526128fd81846120f1565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612962602183611c52565b915061296d82612906565b604082019050919050565b6000602082019050818103600083015261299181612955565b9050919050565b60006040820190506129ad60008301856119d3565b6129ba60208301846119d3565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612a1d602983611c52565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612a7a82612a53565b612a848185612a5e565b9350612a94818560208601611c63565b612a9d81611ac2565b840191505092915050565b600060a082019050612abd6000830188612171565b612aca6020830187612171565b8181036040830152612adc81866120f1565b90508181036060830152612af081856120f1565b90508181036080830152612b048184612a6f565b90509695505050505050565b600081519050612b1f81611a29565b92915050565b600060208284031215612b3b57612b3a6118f5565b5b6000612b4984828501612b10565b91505092915050565b60008160e01c9050919050565b600060033d1115612b7e5760046000803e612b7b600051612b52565b90505b90565b600060443d1015612b9157612c14565b612b996118eb565b60043d036004823e80513d602482011167ffffffffffffffff82111715612bc1575050612c14565b808201805167ffffffffffffffff811115612bdf5750505050612c14565b80602083010160043d038501811115612bfc575050505050612c14565b612c0b82602001850186611b02565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000612c73603483611c52565b9150612c7e82612c17565b604082019050919050565b60006020820190508181036000830152612ca281612c66565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000612d05602883611c52565b9150612d1082612ca9565b604082019050919050565b60006020820190508181036000830152612d3481612cf8565b9050919050565b600060a082019050612d506000830188612171565b612d5d6020830187612171565b612d6a60408301866119d3565b612d7760608301856119d3565b8181036080830152612d898184612a6f565b9050969550505050505056fea2646970667358221220acd951a69385b93b68b84b60a946060b90452de25e9ed34508e61b3d5558c6cf64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f301c0984e251ebe61d3c44b5e2799455874238a
-----Decoded View---------------
Arg [0] : _owner (address): 0xF301C0984e251EBE61D3c44b5e2799455874238A
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f301c0984e251ebe61d3c44b5e2799455874238a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.