Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
DropyNft
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @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); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @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; } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @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); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @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: address zero is not a valid owner"); 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}. * * 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 _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` * * Emits a {TransferSingle} event. * * 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}. * * Emits a {TransferBatch} event. * * 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 an {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 `ids` and `amounts` 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; } } // File: drop.sol pragma solidity ^0.8.0; contract DropyNft is ERC1155, Ownable { string public name; string public symbol; uint256 public constant DROPY_NFT = 0; mapping(uint => string) public tokenURI; constructor(string memory _name, string memory _symbol, string memory _initBaseURI) ERC1155("") { name = _name; symbol = _symbol; setURI(DROPY_NFT, _initBaseURI); } function mint(address _to, uint _id, uint _amount) external onlyOwner { _mint(_to, _id, _amount, ""); } function batchMint(address[] memory addresses) public onlyOwner{ for (uint i = 0; i < addresses.length; i++) { _mint(addresses[i], DROPY_NFT , 1, ""); } } function burn(uint _id, uint _amount) external { _burn(msg.sender, _id, _amount); } function burnBatch(uint[] memory _ids, uint[] memory _amounts) external { _burnBatch(msg.sender, _ids, _amounts); } function burnForMint(address _from, uint[] memory _burnIds, uint[] memory _burnAmounts, uint[] memory _mintIds, uint[] memory _mintAmounts) external onlyOwner { _burnBatch(_from, _burnIds, _burnAmounts); _mintBatch(_from, _mintIds, _mintAmounts, ""); } function setURI(uint _id, string memory _uri) public onlyOwner { tokenURI[_id] = _uri; emit URI(_uri, _id); } function uri(uint _id) public override view returns (string memory) { return tokenURI[_id]; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"DROPY_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"addresses","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_burnIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_burnAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"burnForMint","outputs":[],"stateMutability":"nonpayable","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":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_id","type":"uint256"},{"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200467d3803806200467d833981810160405281019062000037919062000400565b604051806020016040528060008152506200005881620000c760201b60201c565b50620000796200006d620000e360201b60201c565b620000eb60201b60201c565b826004908051906020019062000091929190620002d2565b508160059080519060200190620000aa929190620002d2565b50620000be600082620001b160201b60201c565b50505062000730565b8060029080519060200190620000df929190620002d2565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001c1620000e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001e7620002a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002379062000545565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019062000269929190620002d2565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516200029c919062000521565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e09062000618565b90600052602060002090601f01602090048101928262000304576000855562000350565b82601f106200031f57805160ff191683800117855562000350565b8280016001018555821562000350579182015b828111156200034f57825182559160200191906001019062000332565b5b5090506200035f919062000363565b5090565b5b808211156200037e57600081600090555060010162000364565b5090565b600062000399620003938462000590565b62000567565b905082815260208101848484011115620003b857620003b7620006e7565b5b620003c5848285620005e2565b509392505050565b600082601f830112620003e557620003e4620006e2565b5b8151620003f784826020860162000382565b91505092915050565b6000806000606084860312156200041c576200041b620006f1565b5b600084015167ffffffffffffffff8111156200043d576200043c620006ec565b5b6200044b86828701620003cd565b935050602084015167ffffffffffffffff8111156200046f576200046e620006ec565b5b6200047d86828701620003cd565b925050604084015167ffffffffffffffff811115620004a157620004a0620006ec565b5b620004af86828701620003cd565b9150509250925092565b6000620004c682620005c6565b620004d28185620005d1565b9350620004e4818560208601620005e2565b620004ef81620006f6565b840191505092915050565b600062000509602083620005d1565b9150620005168262000707565b602082019050919050565b600060208201905081810360008301526200053d8184620004b9565b905092915050565b600060208201905081810360008301526200056081620004fa565b9050919050565b60006200057362000586565b90506200058182826200064e565b919050565b6000604051905090565b600067ffffffffffffffff821115620005ae57620005ad620006b3565b5b620005b982620006f6565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000602578082015181840152602081019050620005e5565b8381111562000612576000848401525b50505050565b600060028204905060018216806200063157607f821691505b6020821081141562000648576200064762000684565b5b50919050565b6200065982620006f6565b810181811067ffffffffffffffff821117156200067b576200067a620006b3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613f3d80620007406000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c806383ca4b6f116100b8578063b390c0ab1161007c578063b390c0ab14610325578063c87b56dd14610341578063d67b06c114610371578063e985e9c51461038d578063f242432a146103bd578063f2fde38b146103d957610136565b806383ca4b6f14610295578063862440e2146102b15780638da5cb5b146102cd57806395d89b41146102eb578063a22cb4651461030957610136565b80632dc21d5b116100ff5780632dc21d5b146102055780632eb2c2d6146102235780634e1273f41461023f578063510f41041461026f578063715018a61461028b57610136565b8062fdd58e1461013b57806301ffc9a71461016b57806306fdde031461019b5780630e89341c146101b9578063156e29f6146101e9575b600080fd5b61015560048036038101906101509190612bc6565b6103f5565b6040516101629190613539565b60405180910390f35b61018560048036038101906101809190612d92565b6104be565b604051610192919061331c565b60405180910390f35b6101a36105a0565b6040516101b09190613337565b60405180910390f35b6101d360048036038101906101ce9190612dec565b61062e565b6040516101e09190613337565b60405180910390f35b61020360048036038101906101fe9190612c06565b6106d3565b005b61020d61076f565b60405161021a9190613539565b60405180910390f35b61023d60048036038101906102389190612935565b610774565b005b61025960048036038101906102549190612ca2565b610815565b60405161026691906132c3565b60405180910390f35b61028960048036038101906102849190612a9b565b61092e565b005b6102936109d7565b005b6102af60048036038101906102aa9190612d1a565b610a5f565b005b6102cb60048036038101906102c69190612e19565b610a6e565b005b6102d5610b4e565b6040516102e291906131e6565b60405180910390f35b6102f3610b78565b6040516103009190613337565b60405180910390f35b610323600480360381019061031e9190612b86565b610c06565b005b61033f600480360381019061033a9190612e75565b610c1c565b005b61035b60048036038101906103569190612dec565b610c2b565b6040516103689190613337565b60405180910390f35b61038b60048036038101906103869190612c59565b610ccb565b005b6103a760048036038101906103a291906128f5565b610da1565b6040516103b4919061331c565b60405180910390f35b6103d760048036038101906103d29190612a04565b610e35565b005b6103f360048036038101906103ee91906128c8565b610ed6565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d906133f9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610599575061059882610fce565b5b9050919050565b600480546105ad906137d9565b80601f01602080910402602001604051908101604052809291908181526020018280546105d9906137d9565b80156106265780601f106105fb57610100808354040283529160200191610626565b820191906000526020600020905b81548152906001019060200180831161060957829003601f168201915b505050505081565b606060066000838152602001908152602001600020805461064e906137d9565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906137d9565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b50505050509050919050565b6106db611038565b73ffffffffffffffffffffffffffffffffffffffff166106f9610b4e565b73ffffffffffffffffffffffffffffffffffffffff161461074f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074690613499565b60405180910390fd5b61076a83838360405180602001604052806000815250611040565b505050565b600081565b61077c611038565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107c257506107c1856107bc611038565b610da1565b5b610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f890613439565b60405180910390fd5b61080e85858585856111f1565b5050505050565b6060815183511461085b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610852906134d9565b60405180910390fd5b6000835167ffffffffffffffff81111561087857610877613912565b5b6040519080825280602002602001820160405280156108a65781602001602082028036833780820191505090505b50905060005b8451811015610923576108f38582815181106108cb576108ca6138e3565b5b60200260200101518583815181106108e6576108e56138e3565b5b60200260200101516103f5565b828281518110610906576109056138e3565b5b6020026020010181815250508061091c9061383c565b90506108ac565b508091505092915050565b610936611038565b73ffffffffffffffffffffffffffffffffffffffff16610954610b4e565b73ffffffffffffffffffffffffffffffffffffffff16146109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190613499565b60405180910390fd5b6109b5858585611513565b6109d0858383604051806020016040528060008152506117e2565b5050505050565b6109df611038565b73ffffffffffffffffffffffffffffffffffffffff166109fd610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613499565b60405180910390fd5b610a5d6000611a0f565b565b610a6a338383611513565b5050565b610a76611038565b73ffffffffffffffffffffffffffffffffffffffff16610a94610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613499565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190610b119291906125a0565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610b429190613337565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610b85906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb1906137d9565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b505050505081565b610c18610c11611038565b8383611ad5565b5050565b610c27338383611c42565b5050565b60066020528060005260406000206000915090508054610c4a906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c76906137d9565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b505050505081565b610cd3611038565b73ffffffffffffffffffffffffffffffffffffffff16610cf1610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90613499565b60405180910390fd5b60005b8151811015610d9d57610d8a828281518110610d6957610d686138e3565b5b60200260200101516000600160405180602001604052806000815250611040565b8080610d959061383c565b915050610d4a565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e3d611038565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e835750610e8285610e7d611038565b610da1565b5b610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb9906133d9565b60405180910390fd5b610ecf8585858585611e89565b5050505050565b610ede611038565b73ffffffffffffffffffffffffffffffffffffffff16610efc610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613499565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990613399565b60405180910390fd5b610fcb81611a0f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613519565b60405180910390fd5b60006110ba611038565b905060006110c785612125565b905060006110d485612125565b90506110e58360008985858961219f565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114491906136cd565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111c2929190613554565b60405180910390a46111d9836000898585896121a7565b6111e8836000898989896121af565b50505050505050565b8151835114611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906134f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90613419565b60405180910390fd5b60006112af611038565b90506112bf81878787878761219f565b60005b84518110156114705760008582815181106112e0576112df6138e3565b5b6020026020010151905060008583815181106112ff576112fe6138e3565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613479565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461145591906136cd565b92505081905550505050806114699061383c565b90506112c2565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114e79291906132e5565b60405180910390a46114fd8187878787876121a7565b61150b818787878787612396565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613459565b60405180910390fd5b80518251146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be906134f9565b60405180910390fd5b60006115d1611038565b90506115f18185600086866040518060200160405280600081525061219f565b60005b835181101561173e576000848281518110611612576116116138e3565b5b602002602001015190506000848381518110611631576116306138e3565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c9906133b9565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806117369061383c565b9150506115f4565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516117b69291906132e5565b60405180910390a46117dc818560008686604051806020016040528060008152506121a7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990613519565b60405180910390fd5b8151835114611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d906134f9565b60405180910390fd5b60006118a0611038565b90506118b18160008787878761219f565b60005b845181101561196a578381815181106118d0576118cf6138e3565b5b60200260200101516000808784815181106118ee576118ed6138e3565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461195091906136cd565b9250508190555080806119629061383c565b9150506118b4565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119e29291906132e5565b60405180910390a46119f9816000878787876121a7565b611a0881600087878787612396565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b906134b9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c35919061331c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990613459565b60405180910390fd5b6000611cbc611038565b90506000611cc984612125565b90506000611cd684612125565b9050611cf68387600085856040518060200160405280600081525061219f565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906133b9565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611e5a929190613554565b60405180910390a4611e80848860008686604051806020016040528060008152506121a7565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613419565b60405180910390fd5b6000611f03611038565b90506000611f1085612125565b90506000611f1d85612125565b9050611f2d83898985858961219f565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb90613479565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207991906136cd565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516120f6929190613554565b60405180910390a461210c848a8a86868a6121a7565b61211a848a8a8a8a8a6121af565b505050505050505050565b60606000600167ffffffffffffffff81111561214457612143613912565b5b6040519080825280602002602001820160405280156121725781602001602082028036833780820191505090505b509050828160008151811061218a576121896138e3565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6121ce8473ffffffffffffffffffffffffffffffffffffffff1661257d565b1561238e578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612214959493929190613269565b602060405180830381600087803b15801561222e57600080fd5b505af192505050801561225f57506040513d601f19601f8201168201806040525081019061225c9190612dbf565b60015b6123055761226b613941565b806308c379a014156122c85750612280613e15565b8061228b57506122ca565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9190613337565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90613359565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613379565b60405180910390fd5b505b505050505050565b6123b58473ffffffffffffffffffffffffffffffffffffffff1661257d565b15612575578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016123fb959493929190613201565b602060405180830381600087803b15801561241557600080fd5b505af192505050801561244657506040513d601f19601f820116820180604052508101906124439190612dbf565b60015b6124ec57612452613941565b806308c379a014156124af5750612467613e15565b8061247257506124b1565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a69190613337565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390613359565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256a90613379565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546125ac906137d9565b90600052602060002090601f0160209004810192826125ce5760008555612615565b82601f106125e757805160ff1916838001178555612615565b82800160010185558215612615579182015b828111156126145782518255916020019190600101906125f9565b5b5090506126229190612626565b5090565b5b8082111561263f576000816000905550600101612627565b5090565b6000612656612651846135a2565b61357d565b9050808382526020820190508285602086028201111561267957612678613968565b5b60005b858110156126a9578161268f88826127a7565b84526020840193506020830192505060018101905061267c565b5050509392505050565b60006126c66126c1846135ce565b61357d565b905080838252602082019050828560208602820111156126e9576126e8613968565b5b60005b8581101561271957816126ff88826128b3565b8452602084019350602083019250506001810190506126ec565b5050509392505050565b6000612736612731846135fa565b61357d565b9050828152602081018484840111156127525761275161396d565b5b61275d848285613797565b509392505050565b60006127786127738461362b565b61357d565b9050828152602081018484840111156127945761279361396d565b5b61279f848285613797565b509392505050565b6000813590506127b681613eab565b92915050565b600082601f8301126127d1576127d0613963565b5b81356127e1848260208601612643565b91505092915050565b600082601f8301126127ff576127fe613963565b5b813561280f8482602086016126b3565b91505092915050565b60008135905061282781613ec2565b92915050565b60008135905061283c81613ed9565b92915050565b60008151905061285181613ed9565b92915050565b600082601f83011261286c5761286b613963565b5b813561287c848260208601612723565b91505092915050565b600082601f83011261289a57612899613963565b5b81356128aa848260208601612765565b91505092915050565b6000813590506128c281613ef0565b92915050565b6000602082840312156128de576128dd613977565b5b60006128ec848285016127a7565b91505092915050565b6000806040838503121561290c5761290b613977565b5b600061291a858286016127a7565b925050602061292b858286016127a7565b9150509250929050565b600080600080600060a0868803121561295157612950613977565b5b600061295f888289016127a7565b9550506020612970888289016127a7565b945050604086013567ffffffffffffffff81111561299157612990613972565b5b61299d888289016127ea565b935050606086013567ffffffffffffffff8111156129be576129bd613972565b5b6129ca888289016127ea565b925050608086013567ffffffffffffffff8111156129eb576129ea613972565b5b6129f788828901612857565b9150509295509295909350565b600080600080600060a08688031215612a2057612a1f613977565b5b6000612a2e888289016127a7565b9550506020612a3f888289016127a7565b9450506040612a50888289016128b3565b9350506060612a61888289016128b3565b925050608086013567ffffffffffffffff811115612a8257612a81613972565b5b612a8e88828901612857565b9150509295509295909350565b600080600080600060a08688031215612ab757612ab6613977565b5b6000612ac5888289016127a7565b955050602086013567ffffffffffffffff811115612ae657612ae5613972565b5b612af2888289016127ea565b945050604086013567ffffffffffffffff811115612b1357612b12613972565b5b612b1f888289016127ea565b935050606086013567ffffffffffffffff811115612b4057612b3f613972565b5b612b4c888289016127ea565b925050608086013567ffffffffffffffff811115612b6d57612b6c613972565b5b612b79888289016127ea565b9150509295509295909350565b60008060408385031215612b9d57612b9c613977565b5b6000612bab858286016127a7565b9250506020612bbc85828601612818565b9150509250929050565b60008060408385031215612bdd57612bdc613977565b5b6000612beb858286016127a7565b9250506020612bfc858286016128b3565b9150509250929050565b600080600060608486031215612c1f57612c1e613977565b5b6000612c2d868287016127a7565b9350506020612c3e868287016128b3565b9250506040612c4f868287016128b3565b9150509250925092565b600060208284031215612c6f57612c6e613977565b5b600082013567ffffffffffffffff811115612c8d57612c8c613972565b5b612c99848285016127bc565b91505092915050565b60008060408385031215612cb957612cb8613977565b5b600083013567ffffffffffffffff811115612cd757612cd6613972565b5b612ce3858286016127bc565b925050602083013567ffffffffffffffff811115612d0457612d03613972565b5b612d10858286016127ea565b9150509250929050565b60008060408385031215612d3157612d30613977565b5b600083013567ffffffffffffffff811115612d4f57612d4e613972565b5b612d5b858286016127ea565b925050602083013567ffffffffffffffff811115612d7c57612d7b613972565b5b612d88858286016127ea565b9150509250929050565b600060208284031215612da857612da7613977565b5b6000612db68482850161282d565b91505092915050565b600060208284031215612dd557612dd4613977565b5b6000612de384828501612842565b91505092915050565b600060208284031215612e0257612e01613977565b5b6000612e10848285016128b3565b91505092915050565b60008060408385031215612e3057612e2f613977565b5b6000612e3e858286016128b3565b925050602083013567ffffffffffffffff811115612e5f57612e5e613972565b5b612e6b85828601612885565b9150509250929050565b60008060408385031215612e8c57612e8b613977565b5b6000612e9a858286016128b3565b9250506020612eab858286016128b3565b9150509250929050565b6000612ec183836131c8565b60208301905092915050565b612ed681613723565b82525050565b6000612ee78261366c565b612ef1818561369a565b9350612efc8361365c565b8060005b83811015612f2d578151612f148882612eb5565b9750612f1f8361368d565b925050600181019050612f00565b5085935050505092915050565b612f4381613735565b82525050565b6000612f5482613677565b612f5e81856136ab565b9350612f6e8185602086016137a6565b612f778161397c565b840191505092915050565b6000612f8d82613682565b612f9781856136bc565b9350612fa78185602086016137a6565b612fb08161397c565b840191505092915050565b6000612fc86034836136bc565b9150612fd38261399a565b604082019050919050565b6000612feb6028836136bc565b9150612ff6826139e9565b604082019050919050565b600061300e6026836136bc565b915061301982613a38565b604082019050919050565b60006130316024836136bc565b915061303c82613a87565b604082019050919050565b60006130546029836136bc565b915061305f82613ad6565b604082019050919050565b6000613077602a836136bc565b915061308282613b25565b604082019050919050565b600061309a6025836136bc565b91506130a582613b74565b604082019050919050565b60006130bd6032836136bc565b91506130c882613bc3565b604082019050919050565b60006130e06023836136bc565b91506130eb82613c12565b604082019050919050565b6000613103602a836136bc565b915061310e82613c61565b604082019050919050565b60006131266020836136bc565b915061313182613cb0565b602082019050919050565b60006131496029836136bc565b915061315482613cd9565b604082019050919050565b600061316c6029836136bc565b915061317782613d28565b604082019050919050565b600061318f6028836136bc565b915061319a82613d77565b604082019050919050565b60006131b26021836136bc565b91506131bd82613dc6565b604082019050919050565b6131d18161378d565b82525050565b6131e08161378d565b82525050565b60006020820190506131fb6000830184612ecd565b92915050565b600060a0820190506132166000830188612ecd565b6132236020830187612ecd565b81810360408301526132358186612edc565b905081810360608301526132498185612edc565b9050818103608083015261325d8184612f49565b90509695505050505050565b600060a08201905061327e6000830188612ecd565b61328b6020830187612ecd565b61329860408301866131d7565b6132a560608301856131d7565b81810360808301526132b78184612f49565b90509695505050505050565b600060208201905081810360008301526132dd8184612edc565b905092915050565b600060408201905081810360008301526132ff8185612edc565b905081810360208301526133138184612edc565b90509392505050565b60006020820190506133316000830184612f3a565b92915050565b600060208201905081810360008301526133518184612f82565b905092915050565b6000602082019050818103600083015261337281612fbb565b9050919050565b6000602082019050818103600083015261339281612fde565b9050919050565b600060208201905081810360008301526133b281613001565b9050919050565b600060208201905081810360008301526133d281613024565b9050919050565b600060208201905081810360008301526133f281613047565b9050919050565b600060208201905081810360008301526134128161306a565b9050919050565b600060208201905081810360008301526134328161308d565b9050919050565b60006020820190508181036000830152613452816130b0565b9050919050565b60006020820190508181036000830152613472816130d3565b9050919050565b60006020820190508181036000830152613492816130f6565b9050919050565b600060208201905081810360008301526134b281613119565b9050919050565b600060208201905081810360008301526134d28161313c565b9050919050565b600060208201905081810360008301526134f28161315f565b9050919050565b6000602082019050818103600083015261351281613182565b9050919050565b60006020820190508181036000830152613532816131a5565b9050919050565b600060208201905061354e60008301846131d7565b92915050565b600060408201905061356960008301856131d7565b61357660208301846131d7565b9392505050565b6000613587613598565b9050613593828261380b565b919050565b6000604051905090565b600067ffffffffffffffff8211156135bd576135bc613912565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135e9576135e8613912565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561361557613614613912565b5b61361e8261397c565b9050602081019050919050565b600067ffffffffffffffff82111561364657613645613912565b5b61364f8261397c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006136d88261378d565b91506136e38361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371857613717613885565b5b828201905092915050565b600061372e8261376d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c45780820151818401526020810190506137a9565b838111156137d3576000848401525b50505050565b600060028204905060018216806137f157607f821691505b60208210811415613805576138046138b4565b5b50919050565b6138148261397c565b810181811067ffffffffffffffff8211171561383357613832613912565b5b80604052505050565b60006138478261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561387a57613879613885565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156139605760046000803e61395d60005161398d565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613e2557613ea8565b613e2d613598565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e55575050613ea8565b808201805167ffffffffffffffff811115613e735750505050613ea8565b80602083010160043d038501811115613e90575050505050613ea8565b613e9f8260200185018661380b565b82955050505050505b90565b613eb481613723565b8114613ebf57600080fd5b50565b613ecb81613735565b8114613ed657600080fd5b50565b613ee281613741565b8114613eed57600080fd5b50565b613ef98161378d565b8114613f0457600080fd5b5056fea264697066735822122018d260391c8573c45de30869a44532d7ba97eb666e1fc6366a2f3a7f5f5acae764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4d617374657244726f7020746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4d617374657244726f70746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656961356c776478706a6761756a6236746f7036746e6c64346b67636d646c6a6d786b72327969786a767163783363326d7071693469000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101365760003560e01c806383ca4b6f116100b8578063b390c0ab1161007c578063b390c0ab14610325578063c87b56dd14610341578063d67b06c114610371578063e985e9c51461038d578063f242432a146103bd578063f2fde38b146103d957610136565b806383ca4b6f14610295578063862440e2146102b15780638da5cb5b146102cd57806395d89b41146102eb578063a22cb4651461030957610136565b80632dc21d5b116100ff5780632dc21d5b146102055780632eb2c2d6146102235780634e1273f41461023f578063510f41041461026f578063715018a61461028b57610136565b8062fdd58e1461013b57806301ffc9a71461016b57806306fdde031461019b5780630e89341c146101b9578063156e29f6146101e9575b600080fd5b61015560048036038101906101509190612bc6565b6103f5565b6040516101629190613539565b60405180910390f35b61018560048036038101906101809190612d92565b6104be565b604051610192919061331c565b60405180910390f35b6101a36105a0565b6040516101b09190613337565b60405180910390f35b6101d360048036038101906101ce9190612dec565b61062e565b6040516101e09190613337565b60405180910390f35b61020360048036038101906101fe9190612c06565b6106d3565b005b61020d61076f565b60405161021a9190613539565b60405180910390f35b61023d60048036038101906102389190612935565b610774565b005b61025960048036038101906102549190612ca2565b610815565b60405161026691906132c3565b60405180910390f35b61028960048036038101906102849190612a9b565b61092e565b005b6102936109d7565b005b6102af60048036038101906102aa9190612d1a565b610a5f565b005b6102cb60048036038101906102c69190612e19565b610a6e565b005b6102d5610b4e565b6040516102e291906131e6565b60405180910390f35b6102f3610b78565b6040516103009190613337565b60405180910390f35b610323600480360381019061031e9190612b86565b610c06565b005b61033f600480360381019061033a9190612e75565b610c1c565b005b61035b60048036038101906103569190612dec565b610c2b565b6040516103689190613337565b60405180910390f35b61038b60048036038101906103869190612c59565b610ccb565b005b6103a760048036038101906103a291906128f5565b610da1565b6040516103b4919061331c565b60405180910390f35b6103d760048036038101906103d29190612a04565b610e35565b005b6103f360048036038101906103ee91906128c8565b610ed6565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d906133f9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610599575061059882610fce565b5b9050919050565b600480546105ad906137d9565b80601f01602080910402602001604051908101604052809291908181526020018280546105d9906137d9565b80156106265780601f106105fb57610100808354040283529160200191610626565b820191906000526020600020905b81548152906001019060200180831161060957829003601f168201915b505050505081565b606060066000838152602001908152602001600020805461064e906137d9565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906137d9565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b50505050509050919050565b6106db611038565b73ffffffffffffffffffffffffffffffffffffffff166106f9610b4e565b73ffffffffffffffffffffffffffffffffffffffff161461074f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074690613499565b60405180910390fd5b61076a83838360405180602001604052806000815250611040565b505050565b600081565b61077c611038565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107c257506107c1856107bc611038565b610da1565b5b610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f890613439565b60405180910390fd5b61080e85858585856111f1565b5050505050565b6060815183511461085b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610852906134d9565b60405180910390fd5b6000835167ffffffffffffffff81111561087857610877613912565b5b6040519080825280602002602001820160405280156108a65781602001602082028036833780820191505090505b50905060005b8451811015610923576108f38582815181106108cb576108ca6138e3565b5b60200260200101518583815181106108e6576108e56138e3565b5b60200260200101516103f5565b828281518110610906576109056138e3565b5b6020026020010181815250508061091c9061383c565b90506108ac565b508091505092915050565b610936611038565b73ffffffffffffffffffffffffffffffffffffffff16610954610b4e565b73ffffffffffffffffffffffffffffffffffffffff16146109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190613499565b60405180910390fd5b6109b5858585611513565b6109d0858383604051806020016040528060008152506117e2565b5050505050565b6109df611038565b73ffffffffffffffffffffffffffffffffffffffff166109fd610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613499565b60405180910390fd5b610a5d6000611a0f565b565b610a6a338383611513565b5050565b610a76611038565b73ffffffffffffffffffffffffffffffffffffffff16610a94610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613499565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190610b119291906125a0565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610b429190613337565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610b85906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb1906137d9565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b505050505081565b610c18610c11611038565b8383611ad5565b5050565b610c27338383611c42565b5050565b60066020528060005260406000206000915090508054610c4a906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c76906137d9565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b505050505081565b610cd3611038565b73ffffffffffffffffffffffffffffffffffffffff16610cf1610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90613499565b60405180910390fd5b60005b8151811015610d9d57610d8a828281518110610d6957610d686138e3565b5b60200260200101516000600160405180602001604052806000815250611040565b8080610d959061383c565b915050610d4a565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e3d611038565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e835750610e8285610e7d611038565b610da1565b5b610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb9906133d9565b60405180910390fd5b610ecf8585858585611e89565b5050505050565b610ede611038565b73ffffffffffffffffffffffffffffffffffffffff16610efc610b4e565b73ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613499565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990613399565b60405180910390fd5b610fcb81611a0f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613519565b60405180910390fd5b60006110ba611038565b905060006110c785612125565b905060006110d485612125565b90506110e58360008985858961219f565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114491906136cd565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111c2929190613554565b60405180910390a46111d9836000898585896121a7565b6111e8836000898989896121af565b50505050505050565b8151835114611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906134f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90613419565b60405180910390fd5b60006112af611038565b90506112bf81878787878761219f565b60005b84518110156114705760008582815181106112e0576112df6138e3565b5b6020026020010151905060008583815181106112ff576112fe6138e3565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613479565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461145591906136cd565b92505081905550505050806114699061383c565b90506112c2565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114e79291906132e5565b60405180910390a46114fd8187878787876121a7565b61150b818787878787612396565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613459565b60405180910390fd5b80518251146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be906134f9565b60405180910390fd5b60006115d1611038565b90506115f18185600086866040518060200160405280600081525061219f565b60005b835181101561173e576000848281518110611612576116116138e3565b5b602002602001015190506000848381518110611631576116306138e3565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c9906133b9565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806117369061383c565b9150506115f4565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516117b69291906132e5565b60405180910390a46117dc818560008686604051806020016040528060008152506121a7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990613519565b60405180910390fd5b8151835114611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d906134f9565b60405180910390fd5b60006118a0611038565b90506118b18160008787878761219f565b60005b845181101561196a578381815181106118d0576118cf6138e3565b5b60200260200101516000808784815181106118ee576118ed6138e3565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461195091906136cd565b9250508190555080806119629061383c565b9150506118b4565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119e29291906132e5565b60405180910390a46119f9816000878787876121a7565b611a0881600087878787612396565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b906134b9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c35919061331c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990613459565b60405180910390fd5b6000611cbc611038565b90506000611cc984612125565b90506000611cd684612125565b9050611cf68387600085856040518060200160405280600081525061219f565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906133b9565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611e5a929190613554565b60405180910390a4611e80848860008686604051806020016040528060008152506121a7565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613419565b60405180910390fd5b6000611f03611038565b90506000611f1085612125565b90506000611f1d85612125565b9050611f2d83898985858961219f565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb90613479565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207991906136cd565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516120f6929190613554565b60405180910390a461210c848a8a86868a6121a7565b61211a848a8a8a8a8a6121af565b505050505050505050565b60606000600167ffffffffffffffff81111561214457612143613912565b5b6040519080825280602002602001820160405280156121725781602001602082028036833780820191505090505b509050828160008151811061218a576121896138e3565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6121ce8473ffffffffffffffffffffffffffffffffffffffff1661257d565b1561238e578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612214959493929190613269565b602060405180830381600087803b15801561222e57600080fd5b505af192505050801561225f57506040513d601f19601f8201168201806040525081019061225c9190612dbf565b60015b6123055761226b613941565b806308c379a014156122c85750612280613e15565b8061228b57506122ca565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9190613337565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90613359565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613379565b60405180910390fd5b505b505050505050565b6123b58473ffffffffffffffffffffffffffffffffffffffff1661257d565b15612575578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016123fb959493929190613201565b602060405180830381600087803b15801561241557600080fd5b505af192505050801561244657506040513d601f19601f820116820180604052508101906124439190612dbf565b60015b6124ec57612452613941565b806308c379a014156124af5750612467613e15565b8061247257506124b1565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a69190613337565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390613359565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256a90613379565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546125ac906137d9565b90600052602060002090601f0160209004810192826125ce5760008555612615565b82601f106125e757805160ff1916838001178555612615565b82800160010185558215612615579182015b828111156126145782518255916020019190600101906125f9565b5b5090506126229190612626565b5090565b5b8082111561263f576000816000905550600101612627565b5090565b6000612656612651846135a2565b61357d565b9050808382526020820190508285602086028201111561267957612678613968565b5b60005b858110156126a9578161268f88826127a7565b84526020840193506020830192505060018101905061267c565b5050509392505050565b60006126c66126c1846135ce565b61357d565b905080838252602082019050828560208602820111156126e9576126e8613968565b5b60005b8581101561271957816126ff88826128b3565b8452602084019350602083019250506001810190506126ec565b5050509392505050565b6000612736612731846135fa565b61357d565b9050828152602081018484840111156127525761275161396d565b5b61275d848285613797565b509392505050565b60006127786127738461362b565b61357d565b9050828152602081018484840111156127945761279361396d565b5b61279f848285613797565b509392505050565b6000813590506127b681613eab565b92915050565b600082601f8301126127d1576127d0613963565b5b81356127e1848260208601612643565b91505092915050565b600082601f8301126127ff576127fe613963565b5b813561280f8482602086016126b3565b91505092915050565b60008135905061282781613ec2565b92915050565b60008135905061283c81613ed9565b92915050565b60008151905061285181613ed9565b92915050565b600082601f83011261286c5761286b613963565b5b813561287c848260208601612723565b91505092915050565b600082601f83011261289a57612899613963565b5b81356128aa848260208601612765565b91505092915050565b6000813590506128c281613ef0565b92915050565b6000602082840312156128de576128dd613977565b5b60006128ec848285016127a7565b91505092915050565b6000806040838503121561290c5761290b613977565b5b600061291a858286016127a7565b925050602061292b858286016127a7565b9150509250929050565b600080600080600060a0868803121561295157612950613977565b5b600061295f888289016127a7565b9550506020612970888289016127a7565b945050604086013567ffffffffffffffff81111561299157612990613972565b5b61299d888289016127ea565b935050606086013567ffffffffffffffff8111156129be576129bd613972565b5b6129ca888289016127ea565b925050608086013567ffffffffffffffff8111156129eb576129ea613972565b5b6129f788828901612857565b9150509295509295909350565b600080600080600060a08688031215612a2057612a1f613977565b5b6000612a2e888289016127a7565b9550506020612a3f888289016127a7565b9450506040612a50888289016128b3565b9350506060612a61888289016128b3565b925050608086013567ffffffffffffffff811115612a8257612a81613972565b5b612a8e88828901612857565b9150509295509295909350565b600080600080600060a08688031215612ab757612ab6613977565b5b6000612ac5888289016127a7565b955050602086013567ffffffffffffffff811115612ae657612ae5613972565b5b612af2888289016127ea565b945050604086013567ffffffffffffffff811115612b1357612b12613972565b5b612b1f888289016127ea565b935050606086013567ffffffffffffffff811115612b4057612b3f613972565b5b612b4c888289016127ea565b925050608086013567ffffffffffffffff811115612b6d57612b6c613972565b5b612b79888289016127ea565b9150509295509295909350565b60008060408385031215612b9d57612b9c613977565b5b6000612bab858286016127a7565b9250506020612bbc85828601612818565b9150509250929050565b60008060408385031215612bdd57612bdc613977565b5b6000612beb858286016127a7565b9250506020612bfc858286016128b3565b9150509250929050565b600080600060608486031215612c1f57612c1e613977565b5b6000612c2d868287016127a7565b9350506020612c3e868287016128b3565b9250506040612c4f868287016128b3565b9150509250925092565b600060208284031215612c6f57612c6e613977565b5b600082013567ffffffffffffffff811115612c8d57612c8c613972565b5b612c99848285016127bc565b91505092915050565b60008060408385031215612cb957612cb8613977565b5b600083013567ffffffffffffffff811115612cd757612cd6613972565b5b612ce3858286016127bc565b925050602083013567ffffffffffffffff811115612d0457612d03613972565b5b612d10858286016127ea565b9150509250929050565b60008060408385031215612d3157612d30613977565b5b600083013567ffffffffffffffff811115612d4f57612d4e613972565b5b612d5b858286016127ea565b925050602083013567ffffffffffffffff811115612d7c57612d7b613972565b5b612d88858286016127ea565b9150509250929050565b600060208284031215612da857612da7613977565b5b6000612db68482850161282d565b91505092915050565b600060208284031215612dd557612dd4613977565b5b6000612de384828501612842565b91505092915050565b600060208284031215612e0257612e01613977565b5b6000612e10848285016128b3565b91505092915050565b60008060408385031215612e3057612e2f613977565b5b6000612e3e858286016128b3565b925050602083013567ffffffffffffffff811115612e5f57612e5e613972565b5b612e6b85828601612885565b9150509250929050565b60008060408385031215612e8c57612e8b613977565b5b6000612e9a858286016128b3565b9250506020612eab858286016128b3565b9150509250929050565b6000612ec183836131c8565b60208301905092915050565b612ed681613723565b82525050565b6000612ee78261366c565b612ef1818561369a565b9350612efc8361365c565b8060005b83811015612f2d578151612f148882612eb5565b9750612f1f8361368d565b925050600181019050612f00565b5085935050505092915050565b612f4381613735565b82525050565b6000612f5482613677565b612f5e81856136ab565b9350612f6e8185602086016137a6565b612f778161397c565b840191505092915050565b6000612f8d82613682565b612f9781856136bc565b9350612fa78185602086016137a6565b612fb08161397c565b840191505092915050565b6000612fc86034836136bc565b9150612fd38261399a565b604082019050919050565b6000612feb6028836136bc565b9150612ff6826139e9565b604082019050919050565b600061300e6026836136bc565b915061301982613a38565b604082019050919050565b60006130316024836136bc565b915061303c82613a87565b604082019050919050565b60006130546029836136bc565b915061305f82613ad6565b604082019050919050565b6000613077602a836136bc565b915061308282613b25565b604082019050919050565b600061309a6025836136bc565b91506130a582613b74565b604082019050919050565b60006130bd6032836136bc565b91506130c882613bc3565b604082019050919050565b60006130e06023836136bc565b91506130eb82613c12565b604082019050919050565b6000613103602a836136bc565b915061310e82613c61565b604082019050919050565b60006131266020836136bc565b915061313182613cb0565b602082019050919050565b60006131496029836136bc565b915061315482613cd9565b604082019050919050565b600061316c6029836136bc565b915061317782613d28565b604082019050919050565b600061318f6028836136bc565b915061319a82613d77565b604082019050919050565b60006131b26021836136bc565b91506131bd82613dc6565b604082019050919050565b6131d18161378d565b82525050565b6131e08161378d565b82525050565b60006020820190506131fb6000830184612ecd565b92915050565b600060a0820190506132166000830188612ecd565b6132236020830187612ecd565b81810360408301526132358186612edc565b905081810360608301526132498185612edc565b9050818103608083015261325d8184612f49565b90509695505050505050565b600060a08201905061327e6000830188612ecd565b61328b6020830187612ecd565b61329860408301866131d7565b6132a560608301856131d7565b81810360808301526132b78184612f49565b90509695505050505050565b600060208201905081810360008301526132dd8184612edc565b905092915050565b600060408201905081810360008301526132ff8185612edc565b905081810360208301526133138184612edc565b90509392505050565b60006020820190506133316000830184612f3a565b92915050565b600060208201905081810360008301526133518184612f82565b905092915050565b6000602082019050818103600083015261337281612fbb565b9050919050565b6000602082019050818103600083015261339281612fde565b9050919050565b600060208201905081810360008301526133b281613001565b9050919050565b600060208201905081810360008301526133d281613024565b9050919050565b600060208201905081810360008301526133f281613047565b9050919050565b600060208201905081810360008301526134128161306a565b9050919050565b600060208201905081810360008301526134328161308d565b9050919050565b60006020820190508181036000830152613452816130b0565b9050919050565b60006020820190508181036000830152613472816130d3565b9050919050565b60006020820190508181036000830152613492816130f6565b9050919050565b600060208201905081810360008301526134b281613119565b9050919050565b600060208201905081810360008301526134d28161313c565b9050919050565b600060208201905081810360008301526134f28161315f565b9050919050565b6000602082019050818103600083015261351281613182565b9050919050565b60006020820190508181036000830152613532816131a5565b9050919050565b600060208201905061354e60008301846131d7565b92915050565b600060408201905061356960008301856131d7565b61357660208301846131d7565b9392505050565b6000613587613598565b9050613593828261380b565b919050565b6000604051905090565b600067ffffffffffffffff8211156135bd576135bc613912565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135e9576135e8613912565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561361557613614613912565b5b61361e8261397c565b9050602081019050919050565b600067ffffffffffffffff82111561364657613645613912565b5b61364f8261397c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006136d88261378d565b91506136e38361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371857613717613885565b5b828201905092915050565b600061372e8261376d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c45780820151818401526020810190506137a9565b838111156137d3576000848401525b50505050565b600060028204905060018216806137f157607f821691505b60208210811415613805576138046138b4565b5b50919050565b6138148261397c565b810181811067ffffffffffffffff8211171561383357613832613912565b5b80604052505050565b60006138478261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561387a57613879613885565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156139605760046000803e61395d60005161398d565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613e2557613ea8565b613e2d613598565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e55575050613ea8565b808201805167ffffffffffffffff811115613e735750505050613ea8565b80602083010160043d038501811115613e90575050505050613ea8565b613e9f8260200185018661380b565b82955050505050505b90565b613eb481613723565b8114613ebf57600080fd5b50565b613ecb81613735565b8114613ed657600080fd5b50565b613ee281613741565b8114613eed57600080fd5b50565b613ef98161378d565b8114613f0457600080fd5b5056fea264697066735822122018d260391c8573c45de30869a44532d7ba97eb666e1fc6366a2f3a7f5f5acae764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4d617374657244726f7020746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4d617374657244726f70746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656961356c776478706a6761756a6236746f7036746e6c64346b67636d646c6a6d786b72327969786a767163783363326d7071693469000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MasterDrop test
Arg [1] : _symbol (string): MasterDroptest
Arg [2] : _initBaseURI (string): ipfs://bafkreia5lwdxpjgaujb6top6tnld4kgcmdljmxkr2yixjvqcx3c2mpqi4i
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4d617374657244726f7020746573740000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 4d617374657244726f7074657374000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [8] : 697066733a2f2f6261666b72656961356c776478706a6761756a6236746f7036
Arg [9] : 746e6c64346b67636d646c6a6d786b72327969786a767163783363326d707169
Arg [10] : 3469000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.