Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
120
Holders
112
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CropDrops
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//contracts/Tomaximus.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CropDrops is ERC1155, Ownable { // Contract name string public name; // Contract symbol string public symbol; uint256 public constant EVILTOMATOES = 0; string public _baseTokenURI = "https://cropclash.mypinata.cloud/ipfs/QmeVk2VCa8KyBs2q9WX4k8WZgnGVWEw2LxzYtrWZiqYoy1/"; address[] public owners; // function createToken(string tokenName, uint256 tokenId, ) function addNewToken(uint DropID, uint ntokens, bytes memory IPFS_hash) public onlyOwner { _mint(msg.sender, DropID, ntokens, IPFS_hash); } function addToAllowList(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add a null address"); owners.push(addresses[i]); } } function remove(uint index) public { // Move the last element into the place to delete owners[index] = owners[owners.length - 1]; // Remove the last element owners.pop(); } function clearAllowList() external onlyOwner { delete owners; } constructor() onlyOwner ERC1155(_baseTokenURI){ _mint(msg.sender, EVILTOMATOES, 120, ""); name = "Crop Clash Halloween"; } function sendAirDrop(uint256 tokenid) external onlyOwner{ for (uint i=0; i< owners.length; i++) { safeTransferFrom(0x4c5e309abc3A752afD2Baab6b302a90fA2a63dF2, owners[i], tokenid, 1, '0x00' ); } } function getOwners() public onlyOwner view returns( address [] memory){ return owners; } function getOwnersLength() public onlyOwner view returns( uint256){ return owners.length; } function setTokenURI(string memory id) public onlyOwner{ _baseTokenURI = id; } function setBaseURI(string memory base) public onlyOwner{ _setURI(base); } function uri(uint256 _tokenId) override public view returns (string memory) { return string( abi.encodePacked( _baseTokenURI, Strings.toString(_tokenId), ".json" ) ); } function contractURI() public view returns (string memory) { return _baseTokenURI; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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); _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); _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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. 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. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"EVILTOMATOES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"DropID","type":"uint256"},{"internalType":"uint256","name":"ntokens","type":"uint256"},{"internalType":"bytes","name":"IPFS_hash","type":"bytes"}],"name":"addNewToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","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":[],"name":"clearAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwnersLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"remove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"uint256","name":"tokenid","type":"uint256"}],"name":"sendAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id","type":"string"}],"name":"setTokenURI","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260405180608001604052806055815260200162004fb760559139600690805190602001906200003592919062000790565b503480156200004357600080fd5b506006805462000053906200086f565b80601f016020809104026020016040519081016040528092919081815260200182805462000081906200086f565b8015620000d25780601f10620000a657610100808354040283529160200191620000d2565b820191906000526020600020905b815481529060010190602001808311620000b457829003601f168201915b5050505050620000e8816200021160201b60201c565b5062000109620000fd6200022d60201b60201c565b6200023560201b60201c565b620001196200022d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200013f620002fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000198576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018f9062000906565b60405180910390fd5b620001bd3360006078604051806020016040528060008152506200032560201b60201c565b6040518060400160405280601481526020017f43726f7020436c6173682048616c6c6f7765656e000000000000000000000000815250600490805190602001906200020a92919062000790565b5062000f87565b80600290805190602001906200022992919062000790565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000398576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038f906200099e565b60405180910390fd5b6000620003aa6200022d60201b60201c565b9050620003e381600087620003c588620004ea60201b60201c565b620003d688620004ea60201b60201c565b876200056b60201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004449190620009f9565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051620004c492919062000a67565b60405180910390a4620004e3816000878787876200057360201b60201c565b5050505050565b60606000600167ffffffffffffffff8111156200050c576200050b62000a94565b5b6040519080825280602002602001820160405280156200053b5781602001602082028036833780820191505090505b509050828160008151811062000556576200055562000ac3565b5b60200260200101818152505080915050919050565b505050505050565b6200059f8473ffffffffffffffffffffffffffffffffffffffff166200077d60201b620017021760201c565b1562000775578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620005e895949392919062000bdb565b602060405180830381600087803b1580156200060357600080fd5b505af19250505080156200063757506040513d601f19601f8201168201806040525081019062000634919062000cab565b60015b620006e9576200064662000cea565b806308c379a01415620006aa57506200065e62000d45565b806200066b5750620006ac565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a1919062000e33565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e09062000ecd565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000773576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076a9062000f65565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546200079e906200086f565b90600052602060002090601f016020900481019282620007c257600085556200080e565b82601f10620007dd57805160ff19168380011785556200080e565b828001600101855582156200080e579182015b828111156200080d578251825591602001919060010190620007f0565b5b5090506200081d919062000821565b5090565b5b808211156200083c57600081600090555060010162000822565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200088857607f821691505b602082108114156200089f576200089e62000840565b5b50919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008ee602083620008a5565b9150620008fb82620008b6565b602082019050919050565b600060208201905081810360008301526200092181620008df565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000986602183620008a5565b9150620009938262000928565b604082019050919050565b60006020820190508181036000830152620009b98162000977565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a0682620009c0565b915062000a1383620009c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a4b5762000a4a620009ca565b5b828201905092915050565b62000a6181620009c0565b82525050565b600060408201905062000a7e600083018562000a56565b62000a8d602083018462000a56565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b1f8262000af2565b9050919050565b62000b318162000b12565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b7357808201518184015260208101905062000b56565b8381111562000b83576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ba78262000b37565b62000bb3818562000b42565b935062000bc581856020860162000b53565b62000bd08162000b89565b840191505092915050565b600060a08201905062000bf2600083018862000b26565b62000c01602083018762000b26565b62000c10604083018662000a56565b62000c1f606083018562000a56565b818103608083015262000c33818462000b9a565b90509695505050505050565b6000604051905090565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000c858162000c4e565b811462000c9157600080fd5b50565b60008151905062000ca58162000c7a565b92915050565b60006020828403121562000cc45762000cc362000c49565b5b600062000cd48482850162000c94565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0c5760046000803e62000d0960005162000cdd565b90505b90565b62000d1a8262000b89565b810181811067ffffffffffffffff8211171562000d3c5762000d3b62000a94565b5b80604052505050565b600060443d101562000d575762000de4565b62000d6162000c3f565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8b57505062000de4565b808201805167ffffffffffffffff81111562000dab575050505062000de4565b80602083010160043d03850181111562000dca57505050505062000de4565b62000ddb8260200185018662000d0f565b82955050505050505b90565b600081519050919050565b600062000dff8262000de7565b62000e0b8185620008a5565b935062000e1d81856020860162000b53565b62000e288162000b89565b840191505092915050565b6000602082019050818103600083015262000e4f818462000df2565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600062000eb5603483620008a5565b915062000ec28262000e57565b604082019050919050565b6000602082019050818103600083015262000ee88162000ea6565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600062000f4d602883620008a5565b915062000f5a8262000eef565b604082019050919050565b6000602082019050818103600083015262000f808162000f3e565b9050919050565b6140208062000f976000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c80638da5cb5b116100de578063cfc86f7b11610097578063e985e9c511610071578063e985e9c514610448578063ee943b8914610478578063f242432a14610496578063f2fde38b146104b25761018d565b8063cfc86f7b146103f0578063e0df5b6f1461040e578063e8a3d4851461042a5761018d565b80638da5cb5b1461035457806395d89b4114610372578063a0e67e2b14610390578063a22cb465146103ae578063ac535c03146103ca578063b53b1a2a146103d45761018d565b80634cc822151161014b57806357b543e21161012557806357b543e2146102f45780636dd09e7614610312578063715018a61461032e5780637263cfe2146103385761018d565b80634cc822151461028c5780634e1273f4146102a857806355f804b3146102d85761018d565b8062fdd58e1461019257806301ffc9a7146101c2578063025e7c27146101f257806306fdde03146102225780630e89341c146102405780632eb2c2d614610270575b600080fd5b6101ac60048036038101906101a791906126b0565b6104ce565b6040516101b991906126ff565b60405180910390f35b6101dc60048036038101906101d79190612772565b610597565b6040516101e991906127ba565b60405180910390f35b61020c600480360381019061020791906127d5565b610679565b6040516102199190612811565b60405180910390f35b61022a6106b8565b60405161023791906128c5565b60405180910390f35b61025a600480360381019061025591906127d5565b610746565b60405161026791906128c5565b60405180910390f35b61028a60048036038101906102859190612ae4565b61077a565b005b6102a660048036038101906102a191906127d5565b61081b565b005b6102c260048036038101906102bd9190612c76565b610911565b6040516102cf9190612dac565b60405180910390f35b6102f260048036038101906102ed9190612e6f565b610a2a565b005b6102fc610ab2565b60405161030991906126ff565b60405180910390f35b61032c60048036038101906103279190612eb8565b610b3b565b005b610336610bc8565b005b610352600480360381019061034d9190612f82565b610c50565b005b61035c610e13565b6040516103699190612811565b60405180910390f35b61037a610e3d565b60405161038791906128c5565b60405180910390f35b610398610ecb565b6040516103a5919061308d565b60405180910390f35b6103c860048036038101906103c391906130db565b610fd5565b005b6103d2611156565b005b6103ee60048036038101906103e991906127d5565b6111e2565b005b6103f861131a565b60405161040591906128c5565b60405180910390f35b61042860048036038101906104239190612e6f565b6113a8565b005b61043261143e565b60405161043f91906128c5565b60405180910390f35b610462600480360381019061045d919061311b565b6114d0565b60405161046f91906127ba565b60405180910390f35b610480611564565b60405161048d91906126ff565b60405180910390f35b6104b060048036038101906104ab919061315b565b611569565b005b6104cc60048036038101906104c791906131f2565b61160a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053690613291565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610672575061067182611715565b5b9050919050565b6007818154811061068957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600480546106c5906132e0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f1906132e0565b801561073e5780601f106107135761010080835404028352916020019161073e565b820191906000526020600020905b81548152906001019060200180831161072157829003601f168201915b505050505081565b606060066107538361177f565b60405160200161076492919061342e565b6040516020818303038152906040529050919050565b6107826118e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107c857506107c7856107c26118e0565b6114d0565b5b610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906134cf565b60405180910390fd5b61081485858585856118e8565b5050505050565b6007600160078054905061082f919061351e565b815481106108405761083f613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007828154811061087f5761087e613552565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060078054806108d9576108d8613581565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b60608151835114610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e90613622565b60405180910390fd5b6000835167ffffffffffffffff811115610974576109736128ec565b5b6040519080825280602002602001820160405280156109a25781602001602082028036833780820191505090505b50905060005b8451811015610a1f576109ef8582815181106109c7576109c6613552565b5b60200260200101518583815181106109e2576109e1613552565b5b60200260200101516104ce565b828281518110610a0257610a01613552565b5b60200260200101818152505080610a1890613642565b90506109a8565b508091505092915050565b610a326118e0565b73ffffffffffffffffffffffffffffffffffffffff16610a50610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d906136d7565b60405180910390fd5b610aaf81611bfc565b50565b6000610abc6118e0565b73ffffffffffffffffffffffffffffffffffffffff16610ada610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b27906136d7565b60405180910390fd5b600780549050905090565b610b436118e0565b73ffffffffffffffffffffffffffffffffffffffff16610b61610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906136d7565b60405180910390fd5b610bc333848484611c16565b505050565b610bd06118e0565b73ffffffffffffffffffffffffffffffffffffffff16610bee610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b906136d7565b60405180910390fd5b610c4e6000611dac565b565b610c586118e0565b73ffffffffffffffffffffffffffffffffffffffff16610c76610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906136d7565b60405180910390fd5b60005b82829050811015610e0e57600073ffffffffffffffffffffffffffffffffffffffff16838383818110610d0557610d04613552565b5b9050602002016020810190610d1a91906131f2565b73ffffffffffffffffffffffffffffffffffffffff161415610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613743565b60405180910390fd5b6007838383818110610d8657610d85613552565b5b9050602002016020810190610d9b91906131f2565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610e0690613642565b915050610ccf565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610e4a906132e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e76906132e0565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b505050505081565b6060610ed56118e0565b73ffffffffffffffffffffffffffffffffffffffff16610ef3610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f40906136d7565b60405180910390fd5b6007805480602002602001604051908101604052809291908181526020018280548015610fcb57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610f81575b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff16610ff46118e0565b73ffffffffffffffffffffffffffffffffffffffff16141561104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906137d5565b60405180910390fd5b80600160006110586118e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111056118e0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114a91906127ba565b60405180910390a35050565b61115e6118e0565b73ffffffffffffffffffffffffffffffffffffffff1661117c610e13565b73ffffffffffffffffffffffffffffffffffffffff16146111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906136d7565b60405180910390fd5b600760006111e09190612544565b565b6111ea6118e0565b73ffffffffffffffffffffffffffffffffffffffff16611208610e13565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906136d7565b60405180910390fd5b60005b60078054905081101561131657611303734c5e309abc3a752afd2baab6b302a90fa2a63df26007838154811061129a57611299613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168460016040518060400160405280600481526020017f3078303000000000000000000000000000000000000000000000000000000000815250611569565b808061130e90613642565b915050611261565b5050565b60068054611327906132e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611353906132e0565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b505050505081565b6113b06118e0565b73ffffffffffffffffffffffffffffffffffffffff166113ce610e13565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b906136d7565b60405180910390fd5b806006908051906020019061143a929190612565565b5050565b60606006805461144d906132e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611479906132e0565b80156114c65780601f1061149b576101008083540402835291602001916114c6565b820191906000526020600020905b8154815290600101906020018083116114a957829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081565b6115716118e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115b757506115b6856115b16118e0565b6114d0565b5b6115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90613867565b60405180910390fd5b6116038585858585611e72565b5050505050565b6116126118e0565b73ffffffffffffffffffffffffffffffffffffffff16611630610e13565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906136d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed906138f9565b60405180910390fd5b6116ff81611dac565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156117c7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506118db565b600082905060005b600082146117f95780806117e290613642565b915050600a826117f29190613948565b91506117cf565b60008167ffffffffffffffff811115611815576118146128ec565b5b6040519080825280601f01601f1916602001820160405280156118475781602001600182028036833780820191505090505b5090505b600085146118d457600182611860919061351e565b9150600a8561186f9190613979565b603061187b91906139aa565b60f81b81838151811061189157611890613552565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118cd9190613948565b945061184b565b8093505050505b919050565b600033905090565b815183511461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613a72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613b04565b60405180910390fd5b60006119a66118e0565b90506119b68187878787876120f4565b60005b8451811015611b675760008582815181106119d7576119d6613552565b5b6020026020010151905060008583815181106119f6576119f5613552565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613b96565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4c91906139aa565b9250508190555050505080611b6090613642565b90506119b9565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bde929190613bb6565b60405180910390a4611bf48187878787876120fc565b505050505050565b8060029080519060200190611c12929190612565565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90613c5f565b60405180910390fd5b6000611c906118e0565b9050611cb181600087611ca2886122e3565b611cab886122e3565b876120f4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1091906139aa565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d8e929190613c7f565b60405180910390a4611da58160008787878761235d565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613b04565b60405180910390fd5b6000611eec6118e0565b9050611f0c818787611efd886122e3565b611f06886122e3565b876120f4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613b96565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205891906139aa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516120d5929190613c7f565b60405180910390a46120eb82888888888861235d565b50505050505050565b505050505050565b61211b8473ffffffffffffffffffffffffffffffffffffffff16611702565b156122db578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612161959493929190613cfd565b602060405180830381600087803b15801561217b57600080fd5b505af19250505080156121ac57506040513d601f19601f820116820180604052508101906121a99190613d7a565b60015b612252576121b8613db4565b806308c379a0141561221557506121cd613dd6565b806121d85750612217565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c91906128c5565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990613ede565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d090613f70565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612302576123016128ec565b5b6040519080825280602002602001820160405280156123305781602001602082028036833780820191505090505b509050828160008151811061234857612347613552565b5b60200260200101818152505080915050919050565b61237c8473ffffffffffffffffffffffffffffffffffffffff16611702565b1561253c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016123c2959493929190613f90565b602060405180830381600087803b1580156123dc57600080fd5b505af192505050801561240d57506040513d601f19601f8201168201806040525081019061240a9190613d7a565b60015b6124b357612419613db4565b806308c379a01415612476575061242e613dd6565b806124395750612478565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d91906128c5565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613ede565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613f70565b60405180910390fd5b505b505050505050565b508054600082559060005260206000209081019061256291906125eb565b50565b828054612571906132e0565b90600052602060002090601f01602090048101928261259357600085556125da565b82601f106125ac57805160ff19168380011785556125da565b828001600101855582156125da579182015b828111156125d95782518255916020019190600101906125be565b5b5090506125e791906125eb565b5090565b5b808211156126045760008160009055506001016125ec565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126478261261c565b9050919050565b6126578161263c565b811461266257600080fd5b50565b6000813590506126748161264e565b92915050565b6000819050919050565b61268d8161267a565b811461269857600080fd5b50565b6000813590506126aa81612684565b92915050565b600080604083850312156126c7576126c6612612565b5b60006126d585828601612665565b92505060206126e68582860161269b565b9150509250929050565b6126f98161267a565b82525050565b600060208201905061271460008301846126f0565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61274f8161271a565b811461275a57600080fd5b50565b60008135905061276c81612746565b92915050565b60006020828403121561278857612787612612565b5b60006127968482850161275d565b91505092915050565b60008115159050919050565b6127b48161279f565b82525050565b60006020820190506127cf60008301846127ab565b92915050565b6000602082840312156127eb576127ea612612565b5b60006127f98482850161269b565b91505092915050565b61280b8161263c565b82525050565b60006020820190506128266000830184612802565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561286657808201518184015260208101905061284b565b83811115612875576000848401525b50505050565b6000601f19601f8301169050919050565b60006128978261282c565b6128a18185612837565b93506128b1818560208601612848565b6128ba8161287b565b840191505092915050565b600060208201905081810360008301526128df818461288c565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129248261287b565b810181811067ffffffffffffffff82111715612943576129426128ec565b5b80604052505050565b6000612956612608565b9050612962828261291b565b919050565b600067ffffffffffffffff821115612982576129816128ec565b5b602082029050602081019050919050565b600080fd5b60006129ab6129a684612967565b61294c565b905080838252602082019050602084028301858111156129ce576129cd612993565b5b835b818110156129f757806129e3888261269b565b8452602084019350506020810190506129d0565b5050509392505050565b600082601f830112612a1657612a156128e7565b5b8135612a26848260208601612998565b91505092915050565b600080fd5b600067ffffffffffffffff821115612a4f57612a4e6128ec565b5b612a588261287b565b9050602081019050919050565b82818337600083830152505050565b6000612a87612a8284612a34565b61294c565b905082815260208101848484011115612aa357612aa2612a2f565b5b612aae848285612a65565b509392505050565b600082601f830112612acb57612aca6128e7565b5b8135612adb848260208601612a74565b91505092915050565b600080600080600060a08688031215612b0057612aff612612565b5b6000612b0e88828901612665565b9550506020612b1f88828901612665565b945050604086013567ffffffffffffffff811115612b4057612b3f612617565b5b612b4c88828901612a01565b935050606086013567ffffffffffffffff811115612b6d57612b6c612617565b5b612b7988828901612a01565b925050608086013567ffffffffffffffff811115612b9a57612b99612617565b5b612ba688828901612ab6565b9150509295509295909350565b600067ffffffffffffffff821115612bce57612bcd6128ec565b5b602082029050602081019050919050565b6000612bf2612bed84612bb3565b61294c565b90508083825260208201905060208402830185811115612c1557612c14612993565b5b835b81811015612c3e5780612c2a8882612665565b845260208401935050602081019050612c17565b5050509392505050565b600082601f830112612c5d57612c5c6128e7565b5b8135612c6d848260208601612bdf565b91505092915050565b60008060408385031215612c8d57612c8c612612565b5b600083013567ffffffffffffffff811115612cab57612caa612617565b5b612cb785828601612c48565b925050602083013567ffffffffffffffff811115612cd857612cd7612617565b5b612ce485828601612a01565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d238161267a565b82525050565b6000612d358383612d1a565b60208301905092915050565b6000602082019050919050565b6000612d5982612cee565b612d638185612cf9565b9350612d6e83612d0a565b8060005b83811015612d9f578151612d868882612d29565b9750612d9183612d41565b925050600181019050612d72565b5085935050505092915050565b60006020820190508181036000830152612dc68184612d4e565b905092915050565b600067ffffffffffffffff821115612de957612de86128ec565b5b612df28261287b565b9050602081019050919050565b6000612e12612e0d84612dce565b61294c565b905082815260208101848484011115612e2e57612e2d612a2f565b5b612e39848285612a65565b509392505050565b600082601f830112612e5657612e556128e7565b5b8135612e66848260208601612dff565b91505092915050565b600060208284031215612e8557612e84612612565b5b600082013567ffffffffffffffff811115612ea357612ea2612617565b5b612eaf84828501612e41565b91505092915050565b600080600060608486031215612ed157612ed0612612565b5b6000612edf8682870161269b565b9350506020612ef08682870161269b565b925050604084013567ffffffffffffffff811115612f1157612f10612617565b5b612f1d86828701612ab6565b9150509250925092565b600080fd5b60008083601f840112612f4257612f416128e7565b5b8235905067ffffffffffffffff811115612f5f57612f5e612f27565b5b602083019150836020820283011115612f7b57612f7a612993565b5b9250929050565b60008060208385031215612f9957612f98612612565b5b600083013567ffffffffffffffff811115612fb757612fb6612617565b5b612fc385828601612f2c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130048161263c565b82525050565b60006130168383612ffb565b60208301905092915050565b6000602082019050919050565b600061303a82612fcf565b6130448185612fda565b935061304f83612feb565b8060005b83811015613080578151613067888261300a565b975061307283613022565b925050600181019050613053565b5085935050505092915050565b600060208201905081810360008301526130a7818461302f565b905092915050565b6130b88161279f565b81146130c357600080fd5b50565b6000813590506130d5816130af565b92915050565b600080604083850312156130f2576130f1612612565b5b600061310085828601612665565b9250506020613111858286016130c6565b9150509250929050565b6000806040838503121561313257613131612612565b5b600061314085828601612665565b925050602061315185828601612665565b9150509250929050565b600080600080600060a0868803121561317757613176612612565b5b600061318588828901612665565b955050602061319688828901612665565b94505060406131a78882890161269b565b93505060606131b88882890161269b565b925050608086013567ffffffffffffffff8111156131d9576131d8612617565b5b6131e588828901612ab6565b9150509295509295909350565b60006020828403121561320857613207612612565b5b600061321684828501612665565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061327b602b83612837565b91506132868261321f565b604082019050919050565b600060208201905081810360008301526132aa8161326e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f857607f821691505b6020821081141561330c5761330b6132b1565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461333f816132e0565b6133498186613312565b945060018216600081146133645760018114613375576133a8565b60ff198316865281860193506133a8565b61337e8561331d565b60005b838110156133a057815481890152600182019150602081019050613381565b838801955050505b50505092915050565b60006133bc8261282c565b6133c68185613312565b93506133d6818560208601612848565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613418600583613312565b9150613423826133e2565b600582019050919050565b600061343a8285613332565b915061344682846133b1565b91506134518261340b565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006134b9603283612837565b91506134c48261345d565b604082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135298261267a565b91506135348361267a565b925082821015613547576135466134ef565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061360c602983612837565b9150613617826135b0565b604082019050919050565b6000602082019050818103600083015261363b816135ff565b9050919050565b600061364d8261267a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136805761367f6134ef565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c1602083612837565b91506136cc8261368b565b602082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b600061372d601883612837565b9150613738826136f7565b602082019050919050565b6000602082019050818103600083015261375c81613720565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006137bf602983612837565b91506137ca82613763565b604082019050919050565b600060208201905081810360008301526137ee816137b2565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613851602983612837565b915061385c826137f5565b604082019050919050565b6000602082019050818103600083015261388081613844565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e3602683612837565b91506138ee82613887565b604082019050919050565b60006020820190508181036000830152613912816138d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139538261267a565b915061395e8361267a565b92508261396e5761396d613919565b5b828204905092915050565b60006139848261267a565b915061398f8361267a565b92508261399f5761399e613919565b5b828206905092915050565b60006139b58261267a565b91506139c08361267a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f5576139f46134ef565b5b828201905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613a5c602883612837565b9150613a6782613a00565b604082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613aee602583612837565b9150613af982613a92565b604082019050919050565b60006020820190508181036000830152613b1d81613ae1565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613b80602a83612837565b9150613b8b82613b24565b604082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b60006040820190508181036000830152613bd08185612d4e565b90508181036020830152613be48184612d4e565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c49602183612837565b9150613c5482613bed565b604082019050919050565b60006020820190508181036000830152613c7881613c3c565b9050919050565b6000604082019050613c9460008301856126f0565b613ca160208301846126f0565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000613ccf82613ca8565b613cd98185613cb3565b9350613ce9818560208601612848565b613cf28161287b565b840191505092915050565b600060a082019050613d126000830188612802565b613d1f6020830187612802565b8181036040830152613d318186612d4e565b90508181036060830152613d458185612d4e565b90508181036080830152613d598184613cc4565b90509695505050505050565b600081519050613d7481612746565b92915050565b600060208284031215613d9057613d8f612612565b5b6000613d9e84828501613d65565b91505092915050565b60008160e01c9050919050565b600060033d1115613dd35760046000803e613dd0600051613da7565b90505b90565b600060443d1015613de657613e69565b613dee612608565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e16575050613e69565b808201805167ffffffffffffffff811115613e345750505050613e69565b80602083010160043d038501811115613e51575050505050613e69565b613e608260200185018661291b565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613ec8603483612837565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613f5a602883612837565b9150613f6582613efe565b604082019050919050565b60006020820190508181036000830152613f8981613f4d565b9050919050565b600060a082019050613fa56000830188612802565b613fb26020830187612802565b613fbf60408301866126f0565b613fcc60608301856126f0565b8181036080830152613fde8184613cc4565b9050969550505050505056fea2646970667358221220f044eb80389825cf5a35405e0a7fdb2d9ffe39fa81940175418b1d9197bbac5164736f6c6343000809003368747470733a2f2f63726f70636c6173682e6d7970696e6174612e636c6f75642f697066732f516d65566b32564361384b7942733271395758346b38575a676e4756574577324c787a597472575a6971596f79312f
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018d5760003560e01c80638da5cb5b116100de578063cfc86f7b11610097578063e985e9c511610071578063e985e9c514610448578063ee943b8914610478578063f242432a14610496578063f2fde38b146104b25761018d565b8063cfc86f7b146103f0578063e0df5b6f1461040e578063e8a3d4851461042a5761018d565b80638da5cb5b1461035457806395d89b4114610372578063a0e67e2b14610390578063a22cb465146103ae578063ac535c03146103ca578063b53b1a2a146103d45761018d565b80634cc822151161014b57806357b543e21161012557806357b543e2146102f45780636dd09e7614610312578063715018a61461032e5780637263cfe2146103385761018d565b80634cc822151461028c5780634e1273f4146102a857806355f804b3146102d85761018d565b8062fdd58e1461019257806301ffc9a7146101c2578063025e7c27146101f257806306fdde03146102225780630e89341c146102405780632eb2c2d614610270575b600080fd5b6101ac60048036038101906101a791906126b0565b6104ce565b6040516101b991906126ff565b60405180910390f35b6101dc60048036038101906101d79190612772565b610597565b6040516101e991906127ba565b60405180910390f35b61020c600480360381019061020791906127d5565b610679565b6040516102199190612811565b60405180910390f35b61022a6106b8565b60405161023791906128c5565b60405180910390f35b61025a600480360381019061025591906127d5565b610746565b60405161026791906128c5565b60405180910390f35b61028a60048036038101906102859190612ae4565b61077a565b005b6102a660048036038101906102a191906127d5565b61081b565b005b6102c260048036038101906102bd9190612c76565b610911565b6040516102cf9190612dac565b60405180910390f35b6102f260048036038101906102ed9190612e6f565b610a2a565b005b6102fc610ab2565b60405161030991906126ff565b60405180910390f35b61032c60048036038101906103279190612eb8565b610b3b565b005b610336610bc8565b005b610352600480360381019061034d9190612f82565b610c50565b005b61035c610e13565b6040516103699190612811565b60405180910390f35b61037a610e3d565b60405161038791906128c5565b60405180910390f35b610398610ecb565b6040516103a5919061308d565b60405180910390f35b6103c860048036038101906103c391906130db565b610fd5565b005b6103d2611156565b005b6103ee60048036038101906103e991906127d5565b6111e2565b005b6103f861131a565b60405161040591906128c5565b60405180910390f35b61042860048036038101906104239190612e6f565b6113a8565b005b61043261143e565b60405161043f91906128c5565b60405180910390f35b610462600480360381019061045d919061311b565b6114d0565b60405161046f91906127ba565b60405180910390f35b610480611564565b60405161048d91906126ff565b60405180910390f35b6104b060048036038101906104ab919061315b565b611569565b005b6104cc60048036038101906104c791906131f2565b61160a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053690613291565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610672575061067182611715565b5b9050919050565b6007818154811061068957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600480546106c5906132e0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f1906132e0565b801561073e5780601f106107135761010080835404028352916020019161073e565b820191906000526020600020905b81548152906001019060200180831161072157829003601f168201915b505050505081565b606060066107538361177f565b60405160200161076492919061342e565b6040516020818303038152906040529050919050565b6107826118e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107c857506107c7856107c26118e0565b6114d0565b5b610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906134cf565b60405180910390fd5b61081485858585856118e8565b5050505050565b6007600160078054905061082f919061351e565b815481106108405761083f613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007828154811061087f5761087e613552565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060078054806108d9576108d8613581565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b60608151835114610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e90613622565b60405180910390fd5b6000835167ffffffffffffffff811115610974576109736128ec565b5b6040519080825280602002602001820160405280156109a25781602001602082028036833780820191505090505b50905060005b8451811015610a1f576109ef8582815181106109c7576109c6613552565b5b60200260200101518583815181106109e2576109e1613552565b5b60200260200101516104ce565b828281518110610a0257610a01613552565b5b60200260200101818152505080610a1890613642565b90506109a8565b508091505092915050565b610a326118e0565b73ffffffffffffffffffffffffffffffffffffffff16610a50610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d906136d7565b60405180910390fd5b610aaf81611bfc565b50565b6000610abc6118e0565b73ffffffffffffffffffffffffffffffffffffffff16610ada610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b27906136d7565b60405180910390fd5b600780549050905090565b610b436118e0565b73ffffffffffffffffffffffffffffffffffffffff16610b61610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906136d7565b60405180910390fd5b610bc333848484611c16565b505050565b610bd06118e0565b73ffffffffffffffffffffffffffffffffffffffff16610bee610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b906136d7565b60405180910390fd5b610c4e6000611dac565b565b610c586118e0565b73ffffffffffffffffffffffffffffffffffffffff16610c76610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906136d7565b60405180910390fd5b60005b82829050811015610e0e57600073ffffffffffffffffffffffffffffffffffffffff16838383818110610d0557610d04613552565b5b9050602002016020810190610d1a91906131f2565b73ffffffffffffffffffffffffffffffffffffffff161415610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613743565b60405180910390fd5b6007838383818110610d8657610d85613552565b5b9050602002016020810190610d9b91906131f2565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610e0690613642565b915050610ccf565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610e4a906132e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e76906132e0565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b505050505081565b6060610ed56118e0565b73ffffffffffffffffffffffffffffffffffffffff16610ef3610e13565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f40906136d7565b60405180910390fd5b6007805480602002602001604051908101604052809291908181526020018280548015610fcb57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610f81575b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff16610ff46118e0565b73ffffffffffffffffffffffffffffffffffffffff16141561104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906137d5565b60405180910390fd5b80600160006110586118e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111056118e0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114a91906127ba565b60405180910390a35050565b61115e6118e0565b73ffffffffffffffffffffffffffffffffffffffff1661117c610e13565b73ffffffffffffffffffffffffffffffffffffffff16146111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906136d7565b60405180910390fd5b600760006111e09190612544565b565b6111ea6118e0565b73ffffffffffffffffffffffffffffffffffffffff16611208610e13565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906136d7565b60405180910390fd5b60005b60078054905081101561131657611303734c5e309abc3a752afd2baab6b302a90fa2a63df26007838154811061129a57611299613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168460016040518060400160405280600481526020017f3078303000000000000000000000000000000000000000000000000000000000815250611569565b808061130e90613642565b915050611261565b5050565b60068054611327906132e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611353906132e0565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b505050505081565b6113b06118e0565b73ffffffffffffffffffffffffffffffffffffffff166113ce610e13565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b906136d7565b60405180910390fd5b806006908051906020019061143a929190612565565b5050565b60606006805461144d906132e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611479906132e0565b80156114c65780601f1061149b576101008083540402835291602001916114c6565b820191906000526020600020905b8154815290600101906020018083116114a957829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081565b6115716118e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115b757506115b6856115b16118e0565b6114d0565b5b6115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90613867565b60405180910390fd5b6116038585858585611e72565b5050505050565b6116126118e0565b73ffffffffffffffffffffffffffffffffffffffff16611630610e13565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906136d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed906138f9565b60405180910390fd5b6116ff81611dac565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156117c7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506118db565b600082905060005b600082146117f95780806117e290613642565b915050600a826117f29190613948565b91506117cf565b60008167ffffffffffffffff811115611815576118146128ec565b5b6040519080825280601f01601f1916602001820160405280156118475781602001600182028036833780820191505090505b5090505b600085146118d457600182611860919061351e565b9150600a8561186f9190613979565b603061187b91906139aa565b60f81b81838151811061189157611890613552565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118cd9190613948565b945061184b565b8093505050505b919050565b600033905090565b815183511461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613a72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613b04565b60405180910390fd5b60006119a66118e0565b90506119b68187878787876120f4565b60005b8451811015611b675760008582815181106119d7576119d6613552565b5b6020026020010151905060008583815181106119f6576119f5613552565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613b96565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4c91906139aa565b9250508190555050505080611b6090613642565b90506119b9565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bde929190613bb6565b60405180910390a4611bf48187878787876120fc565b505050505050565b8060029080519060200190611c12929190612565565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90613c5f565b60405180910390fd5b6000611c906118e0565b9050611cb181600087611ca2886122e3565b611cab886122e3565b876120f4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1091906139aa565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d8e929190613c7f565b60405180910390a4611da58160008787878761235d565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613b04565b60405180910390fd5b6000611eec6118e0565b9050611f0c818787611efd886122e3565b611f06886122e3565b876120f4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613b96565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205891906139aa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516120d5929190613c7f565b60405180910390a46120eb82888888888861235d565b50505050505050565b505050505050565b61211b8473ffffffffffffffffffffffffffffffffffffffff16611702565b156122db578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612161959493929190613cfd565b602060405180830381600087803b15801561217b57600080fd5b505af19250505080156121ac57506040513d601f19601f820116820180604052508101906121a99190613d7a565b60015b612252576121b8613db4565b806308c379a0141561221557506121cd613dd6565b806121d85750612217565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c91906128c5565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990613ede565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d090613f70565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612302576123016128ec565b5b6040519080825280602002602001820160405280156123305781602001602082028036833780820191505090505b509050828160008151811061234857612347613552565b5b60200260200101818152505080915050919050565b61237c8473ffffffffffffffffffffffffffffffffffffffff16611702565b1561253c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016123c2959493929190613f90565b602060405180830381600087803b1580156123dc57600080fd5b505af192505050801561240d57506040513d601f19601f8201168201806040525081019061240a9190613d7a565b60015b6124b357612419613db4565b806308c379a01415612476575061242e613dd6565b806124395750612478565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d91906128c5565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613ede565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613f70565b60405180910390fd5b505b505050505050565b508054600082559060005260206000209081019061256291906125eb565b50565b828054612571906132e0565b90600052602060002090601f01602090048101928261259357600085556125da565b82601f106125ac57805160ff19168380011785556125da565b828001600101855582156125da579182015b828111156125d95782518255916020019190600101906125be565b5b5090506125e791906125eb565b5090565b5b808211156126045760008160009055506001016125ec565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126478261261c565b9050919050565b6126578161263c565b811461266257600080fd5b50565b6000813590506126748161264e565b92915050565b6000819050919050565b61268d8161267a565b811461269857600080fd5b50565b6000813590506126aa81612684565b92915050565b600080604083850312156126c7576126c6612612565b5b60006126d585828601612665565b92505060206126e68582860161269b565b9150509250929050565b6126f98161267a565b82525050565b600060208201905061271460008301846126f0565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61274f8161271a565b811461275a57600080fd5b50565b60008135905061276c81612746565b92915050565b60006020828403121561278857612787612612565b5b60006127968482850161275d565b91505092915050565b60008115159050919050565b6127b48161279f565b82525050565b60006020820190506127cf60008301846127ab565b92915050565b6000602082840312156127eb576127ea612612565b5b60006127f98482850161269b565b91505092915050565b61280b8161263c565b82525050565b60006020820190506128266000830184612802565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561286657808201518184015260208101905061284b565b83811115612875576000848401525b50505050565b6000601f19601f8301169050919050565b60006128978261282c565b6128a18185612837565b93506128b1818560208601612848565b6128ba8161287b565b840191505092915050565b600060208201905081810360008301526128df818461288c565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129248261287b565b810181811067ffffffffffffffff82111715612943576129426128ec565b5b80604052505050565b6000612956612608565b9050612962828261291b565b919050565b600067ffffffffffffffff821115612982576129816128ec565b5b602082029050602081019050919050565b600080fd5b60006129ab6129a684612967565b61294c565b905080838252602082019050602084028301858111156129ce576129cd612993565b5b835b818110156129f757806129e3888261269b565b8452602084019350506020810190506129d0565b5050509392505050565b600082601f830112612a1657612a156128e7565b5b8135612a26848260208601612998565b91505092915050565b600080fd5b600067ffffffffffffffff821115612a4f57612a4e6128ec565b5b612a588261287b565b9050602081019050919050565b82818337600083830152505050565b6000612a87612a8284612a34565b61294c565b905082815260208101848484011115612aa357612aa2612a2f565b5b612aae848285612a65565b509392505050565b600082601f830112612acb57612aca6128e7565b5b8135612adb848260208601612a74565b91505092915050565b600080600080600060a08688031215612b0057612aff612612565b5b6000612b0e88828901612665565b9550506020612b1f88828901612665565b945050604086013567ffffffffffffffff811115612b4057612b3f612617565b5b612b4c88828901612a01565b935050606086013567ffffffffffffffff811115612b6d57612b6c612617565b5b612b7988828901612a01565b925050608086013567ffffffffffffffff811115612b9a57612b99612617565b5b612ba688828901612ab6565b9150509295509295909350565b600067ffffffffffffffff821115612bce57612bcd6128ec565b5b602082029050602081019050919050565b6000612bf2612bed84612bb3565b61294c565b90508083825260208201905060208402830185811115612c1557612c14612993565b5b835b81811015612c3e5780612c2a8882612665565b845260208401935050602081019050612c17565b5050509392505050565b600082601f830112612c5d57612c5c6128e7565b5b8135612c6d848260208601612bdf565b91505092915050565b60008060408385031215612c8d57612c8c612612565b5b600083013567ffffffffffffffff811115612cab57612caa612617565b5b612cb785828601612c48565b925050602083013567ffffffffffffffff811115612cd857612cd7612617565b5b612ce485828601612a01565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d238161267a565b82525050565b6000612d358383612d1a565b60208301905092915050565b6000602082019050919050565b6000612d5982612cee565b612d638185612cf9565b9350612d6e83612d0a565b8060005b83811015612d9f578151612d868882612d29565b9750612d9183612d41565b925050600181019050612d72565b5085935050505092915050565b60006020820190508181036000830152612dc68184612d4e565b905092915050565b600067ffffffffffffffff821115612de957612de86128ec565b5b612df28261287b565b9050602081019050919050565b6000612e12612e0d84612dce565b61294c565b905082815260208101848484011115612e2e57612e2d612a2f565b5b612e39848285612a65565b509392505050565b600082601f830112612e5657612e556128e7565b5b8135612e66848260208601612dff565b91505092915050565b600060208284031215612e8557612e84612612565b5b600082013567ffffffffffffffff811115612ea357612ea2612617565b5b612eaf84828501612e41565b91505092915050565b600080600060608486031215612ed157612ed0612612565b5b6000612edf8682870161269b565b9350506020612ef08682870161269b565b925050604084013567ffffffffffffffff811115612f1157612f10612617565b5b612f1d86828701612ab6565b9150509250925092565b600080fd5b60008083601f840112612f4257612f416128e7565b5b8235905067ffffffffffffffff811115612f5f57612f5e612f27565b5b602083019150836020820283011115612f7b57612f7a612993565b5b9250929050565b60008060208385031215612f9957612f98612612565b5b600083013567ffffffffffffffff811115612fb757612fb6612617565b5b612fc385828601612f2c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130048161263c565b82525050565b60006130168383612ffb565b60208301905092915050565b6000602082019050919050565b600061303a82612fcf565b6130448185612fda565b935061304f83612feb565b8060005b83811015613080578151613067888261300a565b975061307283613022565b925050600181019050613053565b5085935050505092915050565b600060208201905081810360008301526130a7818461302f565b905092915050565b6130b88161279f565b81146130c357600080fd5b50565b6000813590506130d5816130af565b92915050565b600080604083850312156130f2576130f1612612565b5b600061310085828601612665565b9250506020613111858286016130c6565b9150509250929050565b6000806040838503121561313257613131612612565b5b600061314085828601612665565b925050602061315185828601612665565b9150509250929050565b600080600080600060a0868803121561317757613176612612565b5b600061318588828901612665565b955050602061319688828901612665565b94505060406131a78882890161269b565b93505060606131b88882890161269b565b925050608086013567ffffffffffffffff8111156131d9576131d8612617565b5b6131e588828901612ab6565b9150509295509295909350565b60006020828403121561320857613207612612565b5b600061321684828501612665565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061327b602b83612837565b91506132868261321f565b604082019050919050565b600060208201905081810360008301526132aa8161326e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f857607f821691505b6020821081141561330c5761330b6132b1565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461333f816132e0565b6133498186613312565b945060018216600081146133645760018114613375576133a8565b60ff198316865281860193506133a8565b61337e8561331d565b60005b838110156133a057815481890152600182019150602081019050613381565b838801955050505b50505092915050565b60006133bc8261282c565b6133c68185613312565b93506133d6818560208601612848565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613418600583613312565b9150613423826133e2565b600582019050919050565b600061343a8285613332565b915061344682846133b1565b91506134518261340b565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006134b9603283612837565b91506134c48261345d565b604082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135298261267a565b91506135348361267a565b925082821015613547576135466134ef565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061360c602983612837565b9150613617826135b0565b604082019050919050565b6000602082019050818103600083015261363b816135ff565b9050919050565b600061364d8261267a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136805761367f6134ef565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c1602083612837565b91506136cc8261368b565b602082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b600061372d601883612837565b9150613738826136f7565b602082019050919050565b6000602082019050818103600083015261375c81613720565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006137bf602983612837565b91506137ca82613763565b604082019050919050565b600060208201905081810360008301526137ee816137b2565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613851602983612837565b915061385c826137f5565b604082019050919050565b6000602082019050818103600083015261388081613844565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e3602683612837565b91506138ee82613887565b604082019050919050565b60006020820190508181036000830152613912816138d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139538261267a565b915061395e8361267a565b92508261396e5761396d613919565b5b828204905092915050565b60006139848261267a565b915061398f8361267a565b92508261399f5761399e613919565b5b828206905092915050565b60006139b58261267a565b91506139c08361267a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f5576139f46134ef565b5b828201905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613a5c602883612837565b9150613a6782613a00565b604082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613aee602583612837565b9150613af982613a92565b604082019050919050565b60006020820190508181036000830152613b1d81613ae1565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613b80602a83612837565b9150613b8b82613b24565b604082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b60006040820190508181036000830152613bd08185612d4e565b90508181036020830152613be48184612d4e565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c49602183612837565b9150613c5482613bed565b604082019050919050565b60006020820190508181036000830152613c7881613c3c565b9050919050565b6000604082019050613c9460008301856126f0565b613ca160208301846126f0565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000613ccf82613ca8565b613cd98185613cb3565b9350613ce9818560208601612848565b613cf28161287b565b840191505092915050565b600060a082019050613d126000830188612802565b613d1f6020830187612802565b8181036040830152613d318186612d4e565b90508181036060830152613d458185612d4e565b90508181036080830152613d598184613cc4565b90509695505050505050565b600081519050613d7481612746565b92915050565b600060208284031215613d9057613d8f612612565b5b6000613d9e84828501613d65565b91505092915050565b60008160e01c9050919050565b600060033d1115613dd35760046000803e613dd0600051613da7565b90505b90565b600060443d1015613de657613e69565b613dee612608565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e16575050613e69565b808201805167ffffffffffffffff811115613e345750505050613e69565b80602083010160043d038501811115613e51575050505050613e69565b613e608260200185018661291b565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613ec8603483612837565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613f5a602883612837565b9150613f6582613efe565b604082019050919050565b60006020820190508181036000830152613f8981613f4d565b9050919050565b600060a082019050613fa56000830188612802565b613fb26020830187612802565b613fbf60408301866126f0565b613fcc60608301856126f0565b8181036080830152613fde8184613cc4565b9050969550505050505056fea2646970667358221220f044eb80389825cf5a35405e0a7fdb2d9ffe39fa81940175418b1d9197bbac5164736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.