ERC-1155
Overview
Max Total Supply
19 HLPR
Holders
16
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:
Contributor
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /* ⌐◨---------------------------------------------------------------◨ Prop House Contributor Tokens ⌐◨---------------------------------------------------------------◨ */ import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./EIP712Allowlisting.sol"; contract Contributor is ERC1155, Ownable, Pausable, ERC1155Burnable, ERC1155Supply, EIP712Allowlisting { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdCounter; string public name = "i contributed"; string public symbol = "HLPR"; string baseUri = "https://ipfs.io/ipfs/QmRHhr1jmWa29SkF9vEx9um3ECETB7wsmKHKAn6NCZ5F2Y/"; string uriExtension = ".json"; uint256 maxPerAddress = 1; bool limitPerAddress = true; constructor() ERC1155("https://ipfs.io/ipfs/QmRHhr1jmWa29SkF9vEx9um3ECETB7wsmKHKAn6NCZ5F2Y/{id}.json") {} function setMaxPerAddress(uint256 num) public onlyOwner { maxPerAddress = num; } function toggleLimitPerAddress() public onlyOwner { limitPerAddress = !limitPerAddress; } function setURI(string memory newuri) public onlyOwner { _setURI(newuri); } function setBaseURI(string memory newuri) public onlyOwner { baseUri = newuri; } function setUriExtension(string memory newExtension) public onlyOwner { uriExtension = newExtension; } function setName(string memory newName) public onlyOwner { name = newName; } function setSymbol(string memory newSymbol) public onlyOwner { symbol = newSymbol; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } // Use the requiresAllowlist modifier to reject the call if a valid signature is not provided function mint(bytes calldata signature, uint256 community, uint256 quantity) public requiresAllowlist(signature) { if (limitPerAddress == true) { require(balanceOf(msg.sender, community) < maxPerAddress, "One token per address"); } // Make sure to check other requirements before incrementing or minting _tokenIdCounter.increment(); _mint(msg.sender, community, quantity, ""); } function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public onlyOwner { _mintBatch(to, ids, amounts, ""); } function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal whenNotPaused override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } function uint2hexstr(uint256 i) public pure returns (string memory) { if (i == 0) return "0"; uint j = i; uint length; while (j != 0) { length++; j = j >> 4; } uint mask = 15; bytes memory bstr = new bytes(length); uint k = length; while (i != 0) { uint curr = (i & mask); bstr[--k] = curr > 9 ? bytes1(uint8(55 + curr)) : bytes1(uint8(48 + curr)); // 55 = 65 - 10 i = i >> 4; } return string(bstr); } function uri(uint256 tokenId) override public view returns (string memory) { string memory hexstringtokenID; hexstringtokenID = uint2hexstr(tokenId); return string( abi.encodePacked( baseUri, hexstringtokenID, uriExtension ) ); } function setApprovalForAll(address, bool) public pure override { revert("This token is soulbound. It cannot be sold or transfered. You're stuck with it!"); } function safeTransferFrom(address, address, uint256, uint256, bytes memory) public pure override { revert("This token is soulbound. It cannot be sold or transfered. You're stuck with it!"); } function safeBatchTransferFrom(address, address, uint256[] memory, uint256[] memory, bytes memory) public pure override { revert("This token is soulbound. It cannot be sold or transfered. You're stuck with it!"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token 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: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract EIP712Allowlisting is Ownable { using ECDSA for bytes32; // The key used to sign whitelist signatures. // We will check to ensure that the key that signed the signature // is this one that we expect. address allowlistSigningKey = address(0); // Domain Separator is the EIP-712 defined structure that defines what contract // and chain these signatures can be used for. This ensures people can't take // a signature used to mint on one contract and use it for another, or a signature // from testnet to replay on mainnet. // It has to be created in the constructor so we can dynamically grab the chainId. // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#definition-of-domainseparator bytes32 public DOMAIN_SEPARATOR; // The typehash for the data type specified in the structured data // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-typehash // This should match whats in the client side whitelist signing code // https://github.com/msfeldstein/EIP712-whitelisting/blob/main/test/signWhitelist.ts#L22 bytes32 public constant MINTER_TYPEHASH = keccak256("Minter(address wallet)"); // keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); constructor() { // This should match whats in the client side whitelist signing code // https://github.com/msfeldstein/EIP712-whitelisting/blob/main/test/signWhitelist.ts#L12 DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), // This should match the domain you set in your client side signing. keccak256(bytes("IContributedToken")), keccak256(bytes("1")), block.chainid, address(this) ) ); } function setAllowlistSigningAddress(address newSigningKey) public onlyOwner { allowlistSigningKey = newSigningKey; } modifier requiresAllowlist(bytes calldata signature) { require(allowlistSigningKey != address(0), "allowlist not enabled"); // Verify EIP-712 signature by recreating the data structure // that we signed on the client side, and then using that to recover // the address that signed the signature for this data. bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256(abi.encode(MINTER_TYPEHASH, msg.sender)) ) ); // Use the recover method to see what address was used to create // the signature on this data. // Note that if the digest doesn't exactly match what was signed we'll // get a random recovered address. address recoveredAddress = digest.recover(signature); require(recoveredAddress == allowlistSigningKey, "Invalid Signature"); _; } function bytes32ToString(bytes32 _bytes32) public pure returns (string memory) { uint8 i = 0; while(i < 32 && _bytes32[i] != 0) { i++; } bytes memory bytesArray = new bytes(i); for (i = 0; i < 32 && _bytes32[i] != 0; i++) { bytesArray[i] = _bytes32[i]; } return string(bytesArray); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
{ "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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_bytes32","type":"bytes32"}],"name":"bytes32ToString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"community","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newSigningKey","type":"address"}],"name":"setAllowlistSigningAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newExtension","type":"string"}],"name":"setUriExtension","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":[],"name":"toggleLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"uint2hexstr","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"unpause","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
60806040526000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600d81526020017f6920636f6e747269627574656400000000000000000000000000000000000000815250600890816200008c91906200060d565b506040518060400160405280600481526020017f484c50520000000000000000000000000000000000000000000000000000000081525060099081620000d391906200060d565b50604051806080016040528060448152602001620054e260449139600a9081620000fe91906200060d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200014591906200060d565b506001600c556001600d60006101000a81548160ff0219169083151502179055503480156200017357600080fd5b506040518060800160405280604d815260200162005526604d91396200019f81620002b060201b60201c565b50620001c0620001b4620002c560201b60201c565b620002cd60201b60201c565b6000600360146101000a81548160ff0219169083151502179055507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6040518060400160405280601181526020017f49436f6e7472696275746564546f6b656e000000000000000000000000000000815250805190602001206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012046306040516020016200028e95949392919062000765565b60405160208183030381529060405280519060200120600681905550620007c2565b8060029081620002c191906200060d565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041557607f821691505b6020821081036200042b576200042a620003cd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000456565b620004a1868362000456565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004ee620004e8620004e284620004b9565b620004c3565b620004b9565b9050919050565b6000819050919050565b6200050a83620004cd565b620005226200051982620004f5565b84845462000463565b825550505050565b600090565b620005396200052a565b62000546818484620004ff565b505050565b5b818110156200056e57620005626000826200052f565b6001810190506200054c565b5050565b601f821115620005bd57620005878162000431565b620005928462000446565b81016020851015620005a2578190505b620005ba620005b18562000446565b8301826200054b565b50505b505050565b600082821c905092915050565b6000620005e260001984600802620005c2565b1980831691505092915050565b6000620005fd8383620005cf565b9150826002028217905092915050565b620006188262000393565b67ffffffffffffffff8111156200063457620006336200039e565b5b620006408254620003fc565b6200064d82828562000572565b600060209050601f83116001811462000685576000841562000670578287015190505b6200067c8582620005ef565b865550620006ec565b601f198416620006958662000431565b60005b82811015620006bf5784890151825560018201915060208501945060208101905062000698565b86831015620006df5784890151620006db601f891682620005cf565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b6200070981620006f4565b82525050565b6200071a81620004b9565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200074d8262000720565b9050919050565b6200075f8162000740565b82525050565b600060a0820190506200077c6000830188620006fe565b6200078b6020830187620006fe565b6200079a6040830186620006fe565b620007a960608301856200070f565b620007b8608083018462000754565b9695505050505050565b614d1080620007d26000396000f3fe608060405234801561001057600080fd5b50600436106102055760003560e01c806370f93ede1161011a578063b84c8246116100ad578063e985e9c51161007c578063e985e9c514610598578063f242432a146105c8578063f2fde38b146105e4578063f5298aca14610600578063fa4d280c1461061c57610205565b8063b84c824614610514578063bd85b03914610530578063be00df4a14610560578063c47f00271461057c57610205565b80638da5cb5b116100e95780638da5cb5b1461048c5780639201de55146104aa57806395d89b41146104da578063a22cb465146104f857610205565b806370f93ede14610440578063715018a61461045c5780637bddd65b146104665780638456cb591461048257610205565b80632eb2c2d61161019d5780634e1273f41161016c5780634e1273f41461038a5780634f558e79146103ba57806355f804b3146103ea5780635c975abb146104065780636b20c4541461042457610205565b80632eb2c2d6146103165780633644e515146103325780633c93d8be146103505780633f4ba83a1461038057610205565b80630e3a92c7116101d95780630e3a92c7146102a45780630e89341c146102ae5780631f7fdffa146102de5780632ce9af50146102fa57610205565b8062fdd58e1461020a57806301ffc9a71461023a57806302fe53051461026a57806306fdde0314610286575b600080fd5b610224600480360381019061021f9190612bfa565b61063a565b6040516102319190612c49565b60405180910390f35b610254600480360381019061024f9190612cbc565b610702565b6040516102619190612d04565b60405180910390f35b610284600480360381019061027f9190612e65565b6107e4565b005b61028e6107f8565b60405161029b9190612f36565b60405180910390f35b6102ac610886565b005b6102c860048036038101906102c39190612f58565b6108ba565b6040516102d59190612f36565b60405180910390f35b6102f860048036038101906102f391906130ee565b6108f6565b005b610314600480360381019061030f9190612e65565b61091f565b005b610330600480360381019061032b91906131a9565b61093a565b005b61033a610975565b6040516103479190613291565b60405180910390f35b61036a60048036038101906103659190612f58565b61097b565b6040516103779190612f36565b60405180910390f35b610388610aef565b005b6103a4600480360381019061039f919061336f565b610b01565b6040516103b191906134a5565b60405180910390f35b6103d460048036038101906103cf9190612f58565b610c1a565b6040516103e19190612d04565b60405180910390f35b61040460048036038101906103ff9190612e65565b610c2e565b005b61040e610c49565b60405161041b9190612d04565b60405180910390f35b61043e600480360381019061043991906134c7565b610c60565b005b61045a600480360381019061045591906135ad565b610cfd565b005b610464610f8a565b005b610480600480360381019061047b9190612f58565b610f9e565b005b61048a610fb0565b005b610494610fc2565b6040516104a19190613630565b60405180910390f35b6104c460048036038101906104bf9190613677565b610fec565b6040516104d19190612f36565b60405180910390f35b6104e2611187565b6040516104ef9190612f36565b60405180910390f35b610512600480360381019061050d91906136d0565b611215565b005b61052e60048036038101906105299190612e65565b611250565b005b61054a60048036038101906105459190612f58565b61126b565b6040516105579190612c49565b60405180910390f35b61057a60048036038101906105759190613710565b611288565b005b61059660048036038101906105919190612e65565b6112d4565b005b6105b260048036038101906105ad919061373d565b6112ef565b6040516105bf9190612d04565b60405180910390f35b6105e260048036038101906105dd919061377d565b611383565b005b6105fe60048036038101906105f99190613710565b6113be565b005b61061a60048036038101906106159190613814565b611441565b005b6106246114de565b6040516106319190613291565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a1906138d9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cd57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107dd57506107dc82611502565b5b9050919050565b6107ec61156c565b6107f5816115ea565b50565b6008805461080590613928565b80601f016020809104026020016040519081016040528092919081815260200182805461083190613928565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b505050505081565b61088e61156c565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060806108c68361097b565b9050600a81600b6040516020016108df93929190613a2d565b604051602081830303815290604052915050919050565b6108fe61156c565b610919848484604051806020016040528060008152506115fd565b50505050565b61092761156c565b80600b90816109369190613bf5565b5050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613d5f565b60405180910390fd5b60065481565b6060600082036109c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610aea565b600082905060005b600082146109ec5780806109dd90613dae565b915050600482901c91506109ca565b6000600f905060008267ffffffffffffffff811115610a0e57610a0d612d3a565b5b6040519080825280601f01601f191660200182016040528015610a405781602001600182028036833780820191505090505b50905060008390505b60008714610ae1576000838816905060098111610a7557806030610a6d9190613df6565b60f81b610a86565b806037610a829190613df6565b60f81b5b8383610a9190613e4c565b93508381518110610aa557610aa4613e75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600488901c975050610a49565b81955050505050505b919050565b610af761156c565b610aff611829565b565b60608151835114610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90613f16565b60405180910390fd5b6000835167ffffffffffffffff811115610b6457610b63612d3a565b5b604051908082528060200260200182016040528015610b925781602001602082028036833780820191505090505b50905060005b8451811015610c0f57610bdf858281518110610bb757610bb6613e75565b5b6020026020010151858381518110610bd257610bd1613e75565b5b602002602001015161063a565b828281518110610bf257610bf1613e75565b5b60200260200101818152505080610c0890613dae565b9050610b98565b508091505092915050565b600080610c268361126b565b119050919050565b610c3661156c565b80600a9081610c459190613bf5565b5050565b6000600360149054906101000a900460ff16905090565b610c6861188c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cae5750610cad83610ca861188c565b6112ef565b5b610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490613fa8565b60405180910390fd5b610cf8838383611894565b505050565b8383600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790614014565b60405180910390fd5b60006006547f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c933604051602001610dc8929190614034565b60405160208183030381529060405280519060200120604051602001610def9291906140ca565b6040516020818303038152906040528051906020012090506000610e6084848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505083611b6290919063ffffffff16565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061414d565b60405180910390fd5b60011515600d60009054906101000a900460ff16151503610f5b57600c54610f1a338861063a565b10610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906141b9565b60405180910390fd5b5b610f656007611b89565b610f8033878760405180602001604052806000815250611b9f565b5050505050505050565b610f9261156c565b610f9c6000611d4f565b565b610fa661156c565b80600c8190555050565b610fb861156c565b610fc0611e15565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060005b60208160ff161080156110435750600060f81b838260ff166020811061101a57611019613e75565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561105b578080611053906141e6565b915050610ff1565b60008160ff1667ffffffffffffffff81111561107a57611079612d3a565b5b6040519080825280601f01601f1916602001820160405280156110ac5781602001600182028036833780820191505090505b509050600091505b60208260ff161080156111065750600060f81b848360ff16602081106110dd576110dc613e75565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561117d57838260ff166020811061112157611120613e75565b5b1a60f81b818360ff168151811061113b5761113a613e75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508180611175906141e6565b9250506110b4565b8092505050919050565b6009805461119490613928565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090613928565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b505050505081565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613d5f565b60405180910390fd5b61125861156c565b80600990816112679190613bf5565b5050565b600060046000838152602001908152602001600020549050919050565b61129061156c565b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112dc61156c565b80600890816112eb9190613bf5565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590613d5f565b60405180910390fd5b6113c661156c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90614281565b60405180910390fd5b61143e81611d4f565b50565b61144961188c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061148f575061148e8361148961188c565b6112ef565b5b6114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613fa8565b60405180910390fd5b6114d9838383611e78565b505050565b7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61157461188c565b73ffffffffffffffffffffffffffffffffffffffff16611592610fc2565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906142ed565b60405180910390fd5b565b80600290816115f99190613bf5565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361166c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116639061437f565b60405180910390fd5b81518351146116b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790614411565b60405180910390fd5b60006116ba61188c565b90506116cb816000878787876120be565b60005b8451811015611784578381815181106116ea576116e9613e75565b5b602002602001015160008087848151811061170857611707613e75565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176a9190613df6565b92505081905550808061177c90613dae565b9150506116ce565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117fc929190614431565b60405180910390a4611813816000878787876120dc565b611822816000878787876120e4565b5050505050565b6118316122bb565b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61187561188c565b6040516118829190613630565b60405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa906144da565b60405180910390fd5b8051825114611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614411565b60405180910390fd5b600061195161188c565b9050611971818560008686604051806020016040528060008152506120be565b60005b8351811015611abe57600084828151811061199257611991613e75565b5b6020026020010151905060008483815181106119b1576119b0613e75565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061456c565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611ab690613dae565b915050611974565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b36929190614431565b60405180910390a4611b5c818560008686604051806020016040528060008152506120dc565b50505050565b6000806000611b718585612304565b91509150611b7e81612385565b819250505092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c059061437f565b60405180910390fd5b6000611c1861188c565b90506000611c2585612551565b90506000611c3285612551565b9050611c43836000898585896120be565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca29190613df6565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611d2092919061458c565b60405180910390a4611d37836000898585896120dc565b611d46836000898989896125cb565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e1d6127a2565b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e6161188c565b604051611e6e9190613630565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede906144da565b60405180910390fd5b6000611ef161188c565b90506000611efe84612551565b90506000611f0b84612551565b9050611f2b838760008585604051806020016040528060008152506120be565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb99061456c565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161208f92919061458c565b60405180910390a46120b5848860008686604051806020016040528060008152506120dc565b50505050505050565b6120c66127a2565b6120d48686868686866127ec565b505050505050565b505050505050565b6121038473ffffffffffffffffffffffffffffffffffffffff166129bc565b156122b3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161214995949392919061460a565b6020604051808303816000875af192505050801561218557506040513d601f19601f820116820180604052508101906121829190614687565b60015b61222a576121916146c1565b806308c379a0036121ed57506121a56146e3565b806121b057506121ef565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e49190612f36565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612221906147e5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890614877565b60405180910390fd5b505b505050505050565b6122c3610c49565b612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906148e3565b60405180910390fd5b565b60008060418351036123455760008060006020860151925060408601519150606086015160001a9050612339878285856129df565b9450945050505061237e565b604083510361237557600080602085015191506040850151905061236a868383612aeb565b93509350505061237e565b60006002915091505b9250929050565b6000600481111561239957612398614903565b5b8160048111156123ac576123ab614903565b5b031561254e57600160048111156123c6576123c5614903565b5b8160048111156123d9576123d8614903565b5b03612419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124109061497e565b60405180910390fd5b6002600481111561242d5761242c614903565b5b8160048111156124405761243f614903565b5b03612480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612477906149ea565b60405180910390fd5b6003600481111561249457612493614903565b5b8160048111156124a7576124a6614903565b5b036124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de90614a7c565b60405180910390fd5b6004808111156124fa576124f9614903565b5b81600481111561250d5761250c614903565b5b0361254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490614b0e565b60405180910390fd5b5b50565b60606000600167ffffffffffffffff8111156125705761256f612d3a565b5b60405190808252806020026020018201604052801561259e5781602001602082028036833780820191505090505b50905082816000815181106125b6576125b5613e75565b5b60200260200101818152505080915050919050565b6125ea8473ffffffffffffffffffffffffffffffffffffffff166129bc565b1561279a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612630959493929190614b2e565b6020604051808303816000875af192505050801561266c57506040513d601f19601f820116820180604052508101906126699190614687565b60015b612711576126786146c1565b806308c379a0036126d4575061268c6146e3565b8061269757506126d6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb9190612f36565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612708906147e5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f90614877565b60405180910390fd5b505b505050505050565b6127aa610c49565b156127ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e190614bd4565b60405180910390fd5b565b6127fa868686868686612b4a565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036128ab5760005b83518110156128a95782818151811061284d5761284c613e75565b5b60200260200101516004600086848151811061286c5761286b613e75565b5b6020026020010151815260200190815260200160002060008282546128919190613df6565b92505081905550806128a290613dae565b9050612831565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129b45760005b83518110156129b2576000848281518110612900576128ff613e75565b5b60200260200101519050600084838151811061291f5761291e613e75565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b90614c66565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806129ab90613dae565b90506128e2565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612a1a576000600391509150612ae2565b601b8560ff1614158015612a325750601c8560ff1614155b15612a44576000600491509150612ae2565b600060018787878760405160008152602001604052604051612a699493929190614c95565b6020604051602081039080840390855afa158015612a8b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ad957600060019250925050612ae2565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612b2e9190613df6565b9050612b3c878288856129df565b935093505050935093915050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9182612b66565b9050919050565b612ba181612b86565b8114612bac57600080fd5b50565b600081359050612bbe81612b98565b92915050565b6000819050919050565b612bd781612bc4565b8114612be257600080fd5b50565b600081359050612bf481612bce565b92915050565b60008060408385031215612c1157612c10612b5c565b5b6000612c1f85828601612baf565b9250506020612c3085828601612be5565b9150509250929050565b612c4381612bc4565b82525050565b6000602082019050612c5e6000830184612c3a565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c9981612c64565b8114612ca457600080fd5b50565b600081359050612cb681612c90565b92915050565b600060208284031215612cd257612cd1612b5c565b5b6000612ce084828501612ca7565b91505092915050565b60008115159050919050565b612cfe81612ce9565b82525050565b6000602082019050612d196000830184612cf5565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d7282612d29565b810181811067ffffffffffffffff82111715612d9157612d90612d3a565b5b80604052505050565b6000612da4612b52565b9050612db08282612d69565b919050565b600067ffffffffffffffff821115612dd057612dcf612d3a565b5b612dd982612d29565b9050602081019050919050565b82818337600083830152505050565b6000612e08612e0384612db5565b612d9a565b905082815260208101848484011115612e2457612e23612d24565b5b612e2f848285612de6565b509392505050565b600082601f830112612e4c57612e4b612d1f565b5b8135612e5c848260208601612df5565b91505092915050565b600060208284031215612e7b57612e7a612b5c565b5b600082013567ffffffffffffffff811115612e9957612e98612b61565b5b612ea584828501612e37565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ee8578082015181840152602081019050612ecd565b83811115612ef7576000848401525b50505050565b6000612f0882612eae565b612f128185612eb9565b9350612f22818560208601612eca565b612f2b81612d29565b840191505092915050565b60006020820190508181036000830152612f508184612efd565b905092915050565b600060208284031215612f6e57612f6d612b5c565b5b6000612f7c84828501612be5565b91505092915050565b600067ffffffffffffffff821115612fa057612f9f612d3a565b5b602082029050602081019050919050565b600080fd5b6000612fc9612fc484612f85565b612d9a565b90508083825260208201905060208402830185811115612fec57612feb612fb1565b5b835b8181101561301557806130018882612be5565b845260208401935050602081019050612fee565b5050509392505050565b600082601f83011261303457613033612d1f565b5b8135613044848260208601612fb6565b91505092915050565b600067ffffffffffffffff82111561306857613067612d3a565b5b61307182612d29565b9050602081019050919050565b600061309161308c8461304d565b612d9a565b9050828152602081018484840111156130ad576130ac612d24565b5b6130b8848285612de6565b509392505050565b600082601f8301126130d5576130d4612d1f565b5b81356130e584826020860161307e565b91505092915050565b6000806000806080858703121561310857613107612b5c565b5b600061311687828801612baf565b945050602085013567ffffffffffffffff81111561313757613136612b61565b5b6131438782880161301f565b935050604085013567ffffffffffffffff81111561316457613163612b61565b5b6131708782880161301f565b925050606085013567ffffffffffffffff81111561319157613190612b61565b5b61319d878288016130c0565b91505092959194509250565b600080600080600060a086880312156131c5576131c4612b5c565b5b60006131d388828901612baf565b95505060206131e488828901612baf565b945050604086013567ffffffffffffffff81111561320557613204612b61565b5b6132118882890161301f565b935050606086013567ffffffffffffffff81111561323257613231612b61565b5b61323e8882890161301f565b925050608086013567ffffffffffffffff81111561325f5761325e612b61565b5b61326b888289016130c0565b9150509295509295909350565b6000819050919050565b61328b81613278565b82525050565b60006020820190506132a66000830184613282565b92915050565b600067ffffffffffffffff8211156132c7576132c6612d3a565b5b602082029050602081019050919050565b60006132eb6132e6846132ac565b612d9a565b9050808382526020820190506020840283018581111561330e5761330d612fb1565b5b835b8181101561333757806133238882612baf565b845260208401935050602081019050613310565b5050509392505050565b600082601f83011261335657613355612d1f565b5b81356133668482602086016132d8565b91505092915050565b6000806040838503121561338657613385612b5c565b5b600083013567ffffffffffffffff8111156133a4576133a3612b61565b5b6133b085828601613341565b925050602083013567ffffffffffffffff8111156133d1576133d0612b61565b5b6133dd8582860161301f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61341c81612bc4565b82525050565b600061342e8383613413565b60208301905092915050565b6000602082019050919050565b6000613452826133e7565b61345c81856133f2565b935061346783613403565b8060005b8381101561349857815161347f8882613422565b975061348a8361343a565b92505060018101905061346b565b5085935050505092915050565b600060208201905081810360008301526134bf8184613447565b905092915050565b6000806000606084860312156134e0576134df612b5c565b5b60006134ee86828701612baf565b935050602084013567ffffffffffffffff81111561350f5761350e612b61565b5b61351b8682870161301f565b925050604084013567ffffffffffffffff81111561353c5761353b612b61565b5b6135488682870161301f565b9150509250925092565b600080fd5b60008083601f84011261356d5761356c612d1f565b5b8235905067ffffffffffffffff81111561358a57613589613552565b5b6020830191508360018202830111156135a6576135a5612fb1565b5b9250929050565b600080600080606085870312156135c7576135c6612b5c565b5b600085013567ffffffffffffffff8111156135e5576135e4612b61565b5b6135f187828801613557565b9450945050602061360487828801612be5565b925050604061361587828801612be5565b91505092959194509250565b61362a81612b86565b82525050565b60006020820190506136456000830184613621565b92915050565b61365481613278565b811461365f57600080fd5b50565b6000813590506136718161364b565b92915050565b60006020828403121561368d5761368c612b5c565b5b600061369b84828501613662565b91505092915050565b6136ad81612ce9565b81146136b857600080fd5b50565b6000813590506136ca816136a4565b92915050565b600080604083850312156136e7576136e6612b5c565b5b60006136f585828601612baf565b9250506020613706858286016136bb565b9150509250929050565b60006020828403121561372657613725612b5c565b5b600061373484828501612baf565b91505092915050565b6000806040838503121561375457613753612b5c565b5b600061376285828601612baf565b925050602061377385828601612baf565b9150509250929050565b600080600080600060a0868803121561379957613798612b5c565b5b60006137a788828901612baf565b95505060206137b888828901612baf565b94505060406137c988828901612be5565b93505060606137da88828901612be5565b925050608086013567ffffffffffffffff8111156137fb576137fa612b61565b5b613807888289016130c0565b9150509295509295909350565b60008060006060848603121561382d5761382c612b5c565b5b600061383b86828701612baf565b935050602061384c86828701612be5565b925050604061385d86828701612be5565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006138c3602a83612eb9565b91506138ce82613867565b604082019050919050565b600060208201905081810360008301526138f2816138b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394057607f821691505b602082108103613953576139526138f9565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461398681613928565b6139908186613959565b945060018216600081146139ab57600181146139c0576139f3565b60ff19831686528115158202860193506139f3565b6139c985613964565b60005b838110156139eb578154818901526001820191506020810190506139cc565b838801955050505b50505092915050565b6000613a0782612eae565b613a118185613959565b9350613a21818560208601612eca565b80840191505092915050565b6000613a398286613979565b9150613a4582856139fc565b9150613a518284613979565b9150819050949350505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613aab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a6e565b613ab58683613a6e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613af2613aed613ae884612bc4565b613acd565b612bc4565b9050919050565b6000819050919050565b613b0c83613ad7565b613b20613b1882613af9565b848454613a7b565b825550505050565b600090565b613b35613b28565b613b40818484613b03565b505050565b5b81811015613b6457613b59600082613b2d565b600181019050613b46565b5050565b601f821115613ba957613b7a81613964565b613b8384613a5e565b81016020851015613b92578190505b613ba6613b9e85613a5e565b830182613b45565b50505b505050565b600082821c905092915050565b6000613bcc60001984600802613bae565b1980831691505092915050565b6000613be58383613bbb565b9150826002028217905092915050565b613bfe82612eae565b67ffffffffffffffff811115613c1757613c16612d3a565b5b613c218254613928565b613c2c828285613b68565b600060209050601f831160018114613c5f5760008415613c4d578287015190505b613c578582613bd9565b865550613cbf565b601f198416613c6d86613964565b60005b82811015613c9557848901518255600182019150602085019450602081019050613c70565b86831015613cb25784890151613cae601f891682613bbb565b8355505b6001600288020188555050505b505050505050565b7f5468697320746f6b656e20697320736f756c626f756e642e2049742063616e6e60008201527f6f7420626520736f6c64206f72207472616e7366657265642e20596f7527726560208201527f20737475636b2077697468206974210000000000000000000000000000000000604082015250565b6000613d49604f83612eb9565b9150613d5482613cc7565b606082019050919050565b60006020820190508181036000830152613d7881613d3c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613db982612bc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613deb57613dea613d7f565b5b600182019050919050565b6000613e0182612bc4565b9150613e0c83612bc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4157613e40613d7f565b5b828201905092915050565b6000613e5782612bc4565b915060008203613e6a57613e69613d7f565b5b600182039050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613f00602983612eb9565b9150613f0b82613ea4565b604082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000613f92602f83612eb9565b9150613f9d82613f36565b604082019050919050565b60006020820190508181036000830152613fc181613f85565b9050919050565b7f616c6c6f776c697374206e6f7420656e61626c65640000000000000000000000600082015250565b6000613ffe601583612eb9565b915061400982613fc8565b602082019050919050565b6000602082019050818103600083015261402d81613ff1565b9050919050565b60006040820190506140496000830185613282565b6140566020830184613621565b9392505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000614093600283613959565b915061409e8261405d565b600282019050919050565b6000819050919050565b6140c46140bf82613278565b6140a9565b82525050565b60006140d582614086565b91506140e182856140b3565b6020820191506140f182846140b3565b6020820191508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000614137601183612eb9565b915061414282614101565b602082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b7f4f6e6520746f6b656e2070657220616464726573730000000000000000000000600082015250565b60006141a3601583612eb9565b91506141ae8261416d565b602082019050919050565b600060208201905081810360008301526141d281614196565b9050919050565b600060ff82169050919050565b60006141f1826141d9565b915060ff820361420457614203613d7f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061426b602683612eb9565b91506142768261420f565b604082019050919050565b6000602082019050818103600083015261429a8161425e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142d7602083612eb9565b91506142e2826142a1565b602082019050919050565b60006020820190508181036000830152614306816142ca565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614369602183612eb9565b91506143748261430d565b604082019050919050565b600060208201905081810360008301526143988161435c565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006143fb602883612eb9565b91506144068261439f565b604082019050919050565b6000602082019050818103600083015261442a816143ee565b9050919050565b6000604082019050818103600083015261444b8185613447565b9050818103602083015261445f8184613447565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006144c4602383612eb9565b91506144cf82614468565b604082019050919050565b600060208201905081810360008301526144f3816144b7565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614556602483612eb9565b9150614561826144fa565b604082019050919050565b6000602082019050818103600083015261458581614549565b9050919050565b60006040820190506145a16000830185612c3a565b6145ae6020830184612c3a565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006145dc826145b5565b6145e681856145c0565b93506145f6818560208601612eca565b6145ff81612d29565b840191505092915050565b600060a08201905061461f6000830188613621565b61462c6020830187613621565b818103604083015261463e8186613447565b905081810360608301526146528185613447565b9050818103608083015261466681846145d1565b90509695505050505050565b60008151905061468181612c90565b92915050565b60006020828403121561469d5761469c612b5c565b5b60006146ab84828501614672565b91505092915050565b60008160e01c9050919050565b600060033d11156146e05760046000803e6146dd6000516146b4565b90505b90565b600060443d10614770576146f5612b52565b60043d036004823e80513d602482011167ffffffffffffffff8211171561471d575050614770565b808201805167ffffffffffffffff81111561473b5750505050614770565b80602083010160043d038501811115614758575050505050614770565b61476782602001850186612d69565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006147cf603483612eb9565b91506147da82614773565b604082019050919050565b600060208201905081810360008301526147fe816147c2565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614861602883612eb9565b915061486c82614805565b604082019050919050565b6000602082019050818103600083015261489081614854565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006148cd601483612eb9565b91506148d882614897565b602082019050919050565b600060208201905081810360008301526148fc816148c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614968601883612eb9565b915061497382614932565b602082019050919050565b600060208201905081810360008301526149978161495b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006149d4601f83612eb9565b91506149df8261499e565b602082019050919050565b60006020820190508181036000830152614a03816149c7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a66602283612eb9565b9150614a7182614a0a565b604082019050919050565b60006020820190508181036000830152614a9581614a59565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614af8602283612eb9565b9150614b0382614a9c565b604082019050919050565b60006020820190508181036000830152614b2781614aeb565b9050919050565b600060a082019050614b436000830188613621565b614b506020830187613621565b614b5d6040830186612c3a565b614b6a6060830185612c3a565b8181036080830152614b7c81846145d1565b90509695505050505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614bbe601083612eb9565b9150614bc982614b88565b602082019050919050565b60006020820190508181036000830152614bed81614bb1565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614c50602883612eb9565b9150614c5b82614bf4565b604082019050919050565b60006020820190508181036000830152614c7f81614c43565b9050919050565b614c8f816141d9565b82525050565b6000608082019050614caa6000830187613282565b614cb76020830186614c86565b614cc46040830185613282565b614cd16060830184613282565b9594505050505056fea2646970667358221220b6eab1f45c962003ede8c2881c43aa3a919779397ba3d153672045b160dbfbbe64736f6c634300080f003368747470733a2f2f697066732e696f2f697066732f516d52486872316a6d57613239536b463976457839756d3345434554423777736d4b484b416e364e435a354632592f68747470733a2f2f697066732e696f2f697066732f516d52486872316a6d57613239536b463976457839756d3345434554423777736d4b484b416e364e435a354632592f7b69647d2e6a736f6e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102055760003560e01c806370f93ede1161011a578063b84c8246116100ad578063e985e9c51161007c578063e985e9c514610598578063f242432a146105c8578063f2fde38b146105e4578063f5298aca14610600578063fa4d280c1461061c57610205565b8063b84c824614610514578063bd85b03914610530578063be00df4a14610560578063c47f00271461057c57610205565b80638da5cb5b116100e95780638da5cb5b1461048c5780639201de55146104aa57806395d89b41146104da578063a22cb465146104f857610205565b806370f93ede14610440578063715018a61461045c5780637bddd65b146104665780638456cb591461048257610205565b80632eb2c2d61161019d5780634e1273f41161016c5780634e1273f41461038a5780634f558e79146103ba57806355f804b3146103ea5780635c975abb146104065780636b20c4541461042457610205565b80632eb2c2d6146103165780633644e515146103325780633c93d8be146103505780633f4ba83a1461038057610205565b80630e3a92c7116101d95780630e3a92c7146102a45780630e89341c146102ae5780631f7fdffa146102de5780632ce9af50146102fa57610205565b8062fdd58e1461020a57806301ffc9a71461023a57806302fe53051461026a57806306fdde0314610286575b600080fd5b610224600480360381019061021f9190612bfa565b61063a565b6040516102319190612c49565b60405180910390f35b610254600480360381019061024f9190612cbc565b610702565b6040516102619190612d04565b60405180910390f35b610284600480360381019061027f9190612e65565b6107e4565b005b61028e6107f8565b60405161029b9190612f36565b60405180910390f35b6102ac610886565b005b6102c860048036038101906102c39190612f58565b6108ba565b6040516102d59190612f36565b60405180910390f35b6102f860048036038101906102f391906130ee565b6108f6565b005b610314600480360381019061030f9190612e65565b61091f565b005b610330600480360381019061032b91906131a9565b61093a565b005b61033a610975565b6040516103479190613291565b60405180910390f35b61036a60048036038101906103659190612f58565b61097b565b6040516103779190612f36565b60405180910390f35b610388610aef565b005b6103a4600480360381019061039f919061336f565b610b01565b6040516103b191906134a5565b60405180910390f35b6103d460048036038101906103cf9190612f58565b610c1a565b6040516103e19190612d04565b60405180910390f35b61040460048036038101906103ff9190612e65565b610c2e565b005b61040e610c49565b60405161041b9190612d04565b60405180910390f35b61043e600480360381019061043991906134c7565b610c60565b005b61045a600480360381019061045591906135ad565b610cfd565b005b610464610f8a565b005b610480600480360381019061047b9190612f58565b610f9e565b005b61048a610fb0565b005b610494610fc2565b6040516104a19190613630565b60405180910390f35b6104c460048036038101906104bf9190613677565b610fec565b6040516104d19190612f36565b60405180910390f35b6104e2611187565b6040516104ef9190612f36565b60405180910390f35b610512600480360381019061050d91906136d0565b611215565b005b61052e60048036038101906105299190612e65565b611250565b005b61054a60048036038101906105459190612f58565b61126b565b6040516105579190612c49565b60405180910390f35b61057a60048036038101906105759190613710565b611288565b005b61059660048036038101906105919190612e65565b6112d4565b005b6105b260048036038101906105ad919061373d565b6112ef565b6040516105bf9190612d04565b60405180910390f35b6105e260048036038101906105dd919061377d565b611383565b005b6105fe60048036038101906105f99190613710565b6113be565b005b61061a60048036038101906106159190613814565b611441565b005b6106246114de565b6040516106319190613291565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a1906138d9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cd57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107dd57506107dc82611502565b5b9050919050565b6107ec61156c565b6107f5816115ea565b50565b6008805461080590613928565b80601f016020809104026020016040519081016040528092919081815260200182805461083190613928565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b505050505081565b61088e61156c565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060806108c68361097b565b9050600a81600b6040516020016108df93929190613a2d565b604051602081830303815290604052915050919050565b6108fe61156c565b610919848484604051806020016040528060008152506115fd565b50505050565b61092761156c565b80600b90816109369190613bf5565b5050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613d5f565b60405180910390fd5b60065481565b6060600082036109c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610aea565b600082905060005b600082146109ec5780806109dd90613dae565b915050600482901c91506109ca565b6000600f905060008267ffffffffffffffff811115610a0e57610a0d612d3a565b5b6040519080825280601f01601f191660200182016040528015610a405781602001600182028036833780820191505090505b50905060008390505b60008714610ae1576000838816905060098111610a7557806030610a6d9190613df6565b60f81b610a86565b806037610a829190613df6565b60f81b5b8383610a9190613e4c565b93508381518110610aa557610aa4613e75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600488901c975050610a49565b81955050505050505b919050565b610af761156c565b610aff611829565b565b60608151835114610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90613f16565b60405180910390fd5b6000835167ffffffffffffffff811115610b6457610b63612d3a565b5b604051908082528060200260200182016040528015610b925781602001602082028036833780820191505090505b50905060005b8451811015610c0f57610bdf858281518110610bb757610bb6613e75565b5b6020026020010151858381518110610bd257610bd1613e75565b5b602002602001015161063a565b828281518110610bf257610bf1613e75565b5b60200260200101818152505080610c0890613dae565b9050610b98565b508091505092915050565b600080610c268361126b565b119050919050565b610c3661156c565b80600a9081610c459190613bf5565b5050565b6000600360149054906101000a900460ff16905090565b610c6861188c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cae5750610cad83610ca861188c565b6112ef565b5b610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490613fa8565b60405180910390fd5b610cf8838383611894565b505050565b8383600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790614014565b60405180910390fd5b60006006547f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c933604051602001610dc8929190614034565b60405160208183030381529060405280519060200120604051602001610def9291906140ca565b6040516020818303038152906040528051906020012090506000610e6084848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505083611b6290919063ffffffff16565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061414d565b60405180910390fd5b60011515600d60009054906101000a900460ff16151503610f5b57600c54610f1a338861063a565b10610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906141b9565b60405180910390fd5b5b610f656007611b89565b610f8033878760405180602001604052806000815250611b9f565b5050505050505050565b610f9261156c565b610f9c6000611d4f565b565b610fa661156c565b80600c8190555050565b610fb861156c565b610fc0611e15565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060005b60208160ff161080156110435750600060f81b838260ff166020811061101a57611019613e75565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561105b578080611053906141e6565b915050610ff1565b60008160ff1667ffffffffffffffff81111561107a57611079612d3a565b5b6040519080825280601f01601f1916602001820160405280156110ac5781602001600182028036833780820191505090505b509050600091505b60208260ff161080156111065750600060f81b848360ff16602081106110dd576110dc613e75565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561117d57838260ff166020811061112157611120613e75565b5b1a60f81b818360ff168151811061113b5761113a613e75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508180611175906141e6565b9250506110b4565b8092505050919050565b6009805461119490613928565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090613928565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b505050505081565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613d5f565b60405180910390fd5b61125861156c565b80600990816112679190613bf5565b5050565b600060046000838152602001908152602001600020549050919050565b61129061156c565b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112dc61156c565b80600890816112eb9190613bf5565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590613d5f565b60405180910390fd5b6113c661156c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90614281565b60405180910390fd5b61143e81611d4f565b50565b61144961188c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061148f575061148e8361148961188c565b6112ef565b5b6114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613fa8565b60405180910390fd5b6114d9838383611e78565b505050565b7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61157461188c565b73ffffffffffffffffffffffffffffffffffffffff16611592610fc2565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906142ed565b60405180910390fd5b565b80600290816115f99190613bf5565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361166c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116639061437f565b60405180910390fd5b81518351146116b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790614411565b60405180910390fd5b60006116ba61188c565b90506116cb816000878787876120be565b60005b8451811015611784578381815181106116ea576116e9613e75565b5b602002602001015160008087848151811061170857611707613e75565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176a9190613df6565b92505081905550808061177c90613dae565b9150506116ce565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117fc929190614431565b60405180910390a4611813816000878787876120dc565b611822816000878787876120e4565b5050505050565b6118316122bb565b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61187561188c565b6040516118829190613630565b60405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa906144da565b60405180910390fd5b8051825114611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614411565b60405180910390fd5b600061195161188c565b9050611971818560008686604051806020016040528060008152506120be565b60005b8351811015611abe57600084828151811061199257611991613e75565b5b6020026020010151905060008483815181106119b1576119b0613e75565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061456c565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611ab690613dae565b915050611974565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b36929190614431565b60405180910390a4611b5c818560008686604051806020016040528060008152506120dc565b50505050565b6000806000611b718585612304565b91509150611b7e81612385565b819250505092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c059061437f565b60405180910390fd5b6000611c1861188c565b90506000611c2585612551565b90506000611c3285612551565b9050611c43836000898585896120be565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca29190613df6565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611d2092919061458c565b60405180910390a4611d37836000898585896120dc565b611d46836000898989896125cb565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e1d6127a2565b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e6161188c565b604051611e6e9190613630565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede906144da565b60405180910390fd5b6000611ef161188c565b90506000611efe84612551565b90506000611f0b84612551565b9050611f2b838760008585604051806020016040528060008152506120be565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb99061456c565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161208f92919061458c565b60405180910390a46120b5848860008686604051806020016040528060008152506120dc565b50505050505050565b6120c66127a2565b6120d48686868686866127ec565b505050505050565b505050505050565b6121038473ffffffffffffffffffffffffffffffffffffffff166129bc565b156122b3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161214995949392919061460a565b6020604051808303816000875af192505050801561218557506040513d601f19601f820116820180604052508101906121829190614687565b60015b61222a576121916146c1565b806308c379a0036121ed57506121a56146e3565b806121b057506121ef565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e49190612f36565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612221906147e5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890614877565b60405180910390fd5b505b505050505050565b6122c3610c49565b612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906148e3565b60405180910390fd5b565b60008060418351036123455760008060006020860151925060408601519150606086015160001a9050612339878285856129df565b9450945050505061237e565b604083510361237557600080602085015191506040850151905061236a868383612aeb565b93509350505061237e565b60006002915091505b9250929050565b6000600481111561239957612398614903565b5b8160048111156123ac576123ab614903565b5b031561254e57600160048111156123c6576123c5614903565b5b8160048111156123d9576123d8614903565b5b03612419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124109061497e565b60405180910390fd5b6002600481111561242d5761242c614903565b5b8160048111156124405761243f614903565b5b03612480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612477906149ea565b60405180910390fd5b6003600481111561249457612493614903565b5b8160048111156124a7576124a6614903565b5b036124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de90614a7c565b60405180910390fd5b6004808111156124fa576124f9614903565b5b81600481111561250d5761250c614903565b5b0361254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490614b0e565b60405180910390fd5b5b50565b60606000600167ffffffffffffffff8111156125705761256f612d3a565b5b60405190808252806020026020018201604052801561259e5781602001602082028036833780820191505090505b50905082816000815181106125b6576125b5613e75565b5b60200260200101818152505080915050919050565b6125ea8473ffffffffffffffffffffffffffffffffffffffff166129bc565b1561279a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612630959493929190614b2e565b6020604051808303816000875af192505050801561266c57506040513d601f19601f820116820180604052508101906126699190614687565b60015b612711576126786146c1565b806308c379a0036126d4575061268c6146e3565b8061269757506126d6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb9190612f36565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612708906147e5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f90614877565b60405180910390fd5b505b505050505050565b6127aa610c49565b156127ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e190614bd4565b60405180910390fd5b565b6127fa868686868686612b4a565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036128ab5760005b83518110156128a95782818151811061284d5761284c613e75565b5b60200260200101516004600086848151811061286c5761286b613e75565b5b6020026020010151815260200190815260200160002060008282546128919190613df6565b92505081905550806128a290613dae565b9050612831565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129b45760005b83518110156129b2576000848281518110612900576128ff613e75565b5b60200260200101519050600084838151811061291f5761291e613e75565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b90614c66565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806129ab90613dae565b90506128e2565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612a1a576000600391509150612ae2565b601b8560ff1614158015612a325750601c8560ff1614155b15612a44576000600491509150612ae2565b600060018787878760405160008152602001604052604051612a699493929190614c95565b6020604051602081039080840390855afa158015612a8b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ad957600060019250925050612ae2565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612b2e9190613df6565b9050612b3c878288856129df565b935093505050935093915050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9182612b66565b9050919050565b612ba181612b86565b8114612bac57600080fd5b50565b600081359050612bbe81612b98565b92915050565b6000819050919050565b612bd781612bc4565b8114612be257600080fd5b50565b600081359050612bf481612bce565b92915050565b60008060408385031215612c1157612c10612b5c565b5b6000612c1f85828601612baf565b9250506020612c3085828601612be5565b9150509250929050565b612c4381612bc4565b82525050565b6000602082019050612c5e6000830184612c3a565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c9981612c64565b8114612ca457600080fd5b50565b600081359050612cb681612c90565b92915050565b600060208284031215612cd257612cd1612b5c565b5b6000612ce084828501612ca7565b91505092915050565b60008115159050919050565b612cfe81612ce9565b82525050565b6000602082019050612d196000830184612cf5565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d7282612d29565b810181811067ffffffffffffffff82111715612d9157612d90612d3a565b5b80604052505050565b6000612da4612b52565b9050612db08282612d69565b919050565b600067ffffffffffffffff821115612dd057612dcf612d3a565b5b612dd982612d29565b9050602081019050919050565b82818337600083830152505050565b6000612e08612e0384612db5565b612d9a565b905082815260208101848484011115612e2457612e23612d24565b5b612e2f848285612de6565b509392505050565b600082601f830112612e4c57612e4b612d1f565b5b8135612e5c848260208601612df5565b91505092915050565b600060208284031215612e7b57612e7a612b5c565b5b600082013567ffffffffffffffff811115612e9957612e98612b61565b5b612ea584828501612e37565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ee8578082015181840152602081019050612ecd565b83811115612ef7576000848401525b50505050565b6000612f0882612eae565b612f128185612eb9565b9350612f22818560208601612eca565b612f2b81612d29565b840191505092915050565b60006020820190508181036000830152612f508184612efd565b905092915050565b600060208284031215612f6e57612f6d612b5c565b5b6000612f7c84828501612be5565b91505092915050565b600067ffffffffffffffff821115612fa057612f9f612d3a565b5b602082029050602081019050919050565b600080fd5b6000612fc9612fc484612f85565b612d9a565b90508083825260208201905060208402830185811115612fec57612feb612fb1565b5b835b8181101561301557806130018882612be5565b845260208401935050602081019050612fee565b5050509392505050565b600082601f83011261303457613033612d1f565b5b8135613044848260208601612fb6565b91505092915050565b600067ffffffffffffffff82111561306857613067612d3a565b5b61307182612d29565b9050602081019050919050565b600061309161308c8461304d565b612d9a565b9050828152602081018484840111156130ad576130ac612d24565b5b6130b8848285612de6565b509392505050565b600082601f8301126130d5576130d4612d1f565b5b81356130e584826020860161307e565b91505092915050565b6000806000806080858703121561310857613107612b5c565b5b600061311687828801612baf565b945050602085013567ffffffffffffffff81111561313757613136612b61565b5b6131438782880161301f565b935050604085013567ffffffffffffffff81111561316457613163612b61565b5b6131708782880161301f565b925050606085013567ffffffffffffffff81111561319157613190612b61565b5b61319d878288016130c0565b91505092959194509250565b600080600080600060a086880312156131c5576131c4612b5c565b5b60006131d388828901612baf565b95505060206131e488828901612baf565b945050604086013567ffffffffffffffff81111561320557613204612b61565b5b6132118882890161301f565b935050606086013567ffffffffffffffff81111561323257613231612b61565b5b61323e8882890161301f565b925050608086013567ffffffffffffffff81111561325f5761325e612b61565b5b61326b888289016130c0565b9150509295509295909350565b6000819050919050565b61328b81613278565b82525050565b60006020820190506132a66000830184613282565b92915050565b600067ffffffffffffffff8211156132c7576132c6612d3a565b5b602082029050602081019050919050565b60006132eb6132e6846132ac565b612d9a565b9050808382526020820190506020840283018581111561330e5761330d612fb1565b5b835b8181101561333757806133238882612baf565b845260208401935050602081019050613310565b5050509392505050565b600082601f83011261335657613355612d1f565b5b81356133668482602086016132d8565b91505092915050565b6000806040838503121561338657613385612b5c565b5b600083013567ffffffffffffffff8111156133a4576133a3612b61565b5b6133b085828601613341565b925050602083013567ffffffffffffffff8111156133d1576133d0612b61565b5b6133dd8582860161301f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61341c81612bc4565b82525050565b600061342e8383613413565b60208301905092915050565b6000602082019050919050565b6000613452826133e7565b61345c81856133f2565b935061346783613403565b8060005b8381101561349857815161347f8882613422565b975061348a8361343a565b92505060018101905061346b565b5085935050505092915050565b600060208201905081810360008301526134bf8184613447565b905092915050565b6000806000606084860312156134e0576134df612b5c565b5b60006134ee86828701612baf565b935050602084013567ffffffffffffffff81111561350f5761350e612b61565b5b61351b8682870161301f565b925050604084013567ffffffffffffffff81111561353c5761353b612b61565b5b6135488682870161301f565b9150509250925092565b600080fd5b60008083601f84011261356d5761356c612d1f565b5b8235905067ffffffffffffffff81111561358a57613589613552565b5b6020830191508360018202830111156135a6576135a5612fb1565b5b9250929050565b600080600080606085870312156135c7576135c6612b5c565b5b600085013567ffffffffffffffff8111156135e5576135e4612b61565b5b6135f187828801613557565b9450945050602061360487828801612be5565b925050604061361587828801612be5565b91505092959194509250565b61362a81612b86565b82525050565b60006020820190506136456000830184613621565b92915050565b61365481613278565b811461365f57600080fd5b50565b6000813590506136718161364b565b92915050565b60006020828403121561368d5761368c612b5c565b5b600061369b84828501613662565b91505092915050565b6136ad81612ce9565b81146136b857600080fd5b50565b6000813590506136ca816136a4565b92915050565b600080604083850312156136e7576136e6612b5c565b5b60006136f585828601612baf565b9250506020613706858286016136bb565b9150509250929050565b60006020828403121561372657613725612b5c565b5b600061373484828501612baf565b91505092915050565b6000806040838503121561375457613753612b5c565b5b600061376285828601612baf565b925050602061377385828601612baf565b9150509250929050565b600080600080600060a0868803121561379957613798612b5c565b5b60006137a788828901612baf565b95505060206137b888828901612baf565b94505060406137c988828901612be5565b93505060606137da88828901612be5565b925050608086013567ffffffffffffffff8111156137fb576137fa612b61565b5b613807888289016130c0565b9150509295509295909350565b60008060006060848603121561382d5761382c612b5c565b5b600061383b86828701612baf565b935050602061384c86828701612be5565b925050604061385d86828701612be5565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006138c3602a83612eb9565b91506138ce82613867565b604082019050919050565b600060208201905081810360008301526138f2816138b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394057607f821691505b602082108103613953576139526138f9565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461398681613928565b6139908186613959565b945060018216600081146139ab57600181146139c0576139f3565b60ff19831686528115158202860193506139f3565b6139c985613964565b60005b838110156139eb578154818901526001820191506020810190506139cc565b838801955050505b50505092915050565b6000613a0782612eae565b613a118185613959565b9350613a21818560208601612eca565b80840191505092915050565b6000613a398286613979565b9150613a4582856139fc565b9150613a518284613979565b9150819050949350505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613aab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a6e565b613ab58683613a6e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613af2613aed613ae884612bc4565b613acd565b612bc4565b9050919050565b6000819050919050565b613b0c83613ad7565b613b20613b1882613af9565b848454613a7b565b825550505050565b600090565b613b35613b28565b613b40818484613b03565b505050565b5b81811015613b6457613b59600082613b2d565b600181019050613b46565b5050565b601f821115613ba957613b7a81613964565b613b8384613a5e565b81016020851015613b92578190505b613ba6613b9e85613a5e565b830182613b45565b50505b505050565b600082821c905092915050565b6000613bcc60001984600802613bae565b1980831691505092915050565b6000613be58383613bbb565b9150826002028217905092915050565b613bfe82612eae565b67ffffffffffffffff811115613c1757613c16612d3a565b5b613c218254613928565b613c2c828285613b68565b600060209050601f831160018114613c5f5760008415613c4d578287015190505b613c578582613bd9565b865550613cbf565b601f198416613c6d86613964565b60005b82811015613c9557848901518255600182019150602085019450602081019050613c70565b86831015613cb25784890151613cae601f891682613bbb565b8355505b6001600288020188555050505b505050505050565b7f5468697320746f6b656e20697320736f756c626f756e642e2049742063616e6e60008201527f6f7420626520736f6c64206f72207472616e7366657265642e20596f7527726560208201527f20737475636b2077697468206974210000000000000000000000000000000000604082015250565b6000613d49604f83612eb9565b9150613d5482613cc7565b606082019050919050565b60006020820190508181036000830152613d7881613d3c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613db982612bc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613deb57613dea613d7f565b5b600182019050919050565b6000613e0182612bc4565b9150613e0c83612bc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4157613e40613d7f565b5b828201905092915050565b6000613e5782612bc4565b915060008203613e6a57613e69613d7f565b5b600182039050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613f00602983612eb9565b9150613f0b82613ea4565b604082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000613f92602f83612eb9565b9150613f9d82613f36565b604082019050919050565b60006020820190508181036000830152613fc181613f85565b9050919050565b7f616c6c6f776c697374206e6f7420656e61626c65640000000000000000000000600082015250565b6000613ffe601583612eb9565b915061400982613fc8565b602082019050919050565b6000602082019050818103600083015261402d81613ff1565b9050919050565b60006040820190506140496000830185613282565b6140566020830184613621565b9392505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000614093600283613959565b915061409e8261405d565b600282019050919050565b6000819050919050565b6140c46140bf82613278565b6140a9565b82525050565b60006140d582614086565b91506140e182856140b3565b6020820191506140f182846140b3565b6020820191508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000614137601183612eb9565b915061414282614101565b602082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b7f4f6e6520746f6b656e2070657220616464726573730000000000000000000000600082015250565b60006141a3601583612eb9565b91506141ae8261416d565b602082019050919050565b600060208201905081810360008301526141d281614196565b9050919050565b600060ff82169050919050565b60006141f1826141d9565b915060ff820361420457614203613d7f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061426b602683612eb9565b91506142768261420f565b604082019050919050565b6000602082019050818103600083015261429a8161425e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142d7602083612eb9565b91506142e2826142a1565b602082019050919050565b60006020820190508181036000830152614306816142ca565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614369602183612eb9565b91506143748261430d565b604082019050919050565b600060208201905081810360008301526143988161435c565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006143fb602883612eb9565b91506144068261439f565b604082019050919050565b6000602082019050818103600083015261442a816143ee565b9050919050565b6000604082019050818103600083015261444b8185613447565b9050818103602083015261445f8184613447565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006144c4602383612eb9565b91506144cf82614468565b604082019050919050565b600060208201905081810360008301526144f3816144b7565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614556602483612eb9565b9150614561826144fa565b604082019050919050565b6000602082019050818103600083015261458581614549565b9050919050565b60006040820190506145a16000830185612c3a565b6145ae6020830184612c3a565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006145dc826145b5565b6145e681856145c0565b93506145f6818560208601612eca565b6145ff81612d29565b840191505092915050565b600060a08201905061461f6000830188613621565b61462c6020830187613621565b818103604083015261463e8186613447565b905081810360608301526146528185613447565b9050818103608083015261466681846145d1565b90509695505050505050565b60008151905061468181612c90565b92915050565b60006020828403121561469d5761469c612b5c565b5b60006146ab84828501614672565b91505092915050565b60008160e01c9050919050565b600060033d11156146e05760046000803e6146dd6000516146b4565b90505b90565b600060443d10614770576146f5612b52565b60043d036004823e80513d602482011167ffffffffffffffff8211171561471d575050614770565b808201805167ffffffffffffffff81111561473b5750505050614770565b80602083010160043d038501811115614758575050505050614770565b61476782602001850186612d69565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006147cf603483612eb9565b91506147da82614773565b604082019050919050565b600060208201905081810360008301526147fe816147c2565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614861602883612eb9565b915061486c82614805565b604082019050919050565b6000602082019050818103600083015261489081614854565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006148cd601483612eb9565b91506148d882614897565b602082019050919050565b600060208201905081810360008301526148fc816148c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614968601883612eb9565b915061497382614932565b602082019050919050565b600060208201905081810360008301526149978161495b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006149d4601f83612eb9565b91506149df8261499e565b602082019050919050565b60006020820190508181036000830152614a03816149c7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a66602283612eb9565b9150614a7182614a0a565b604082019050919050565b60006020820190508181036000830152614a9581614a59565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614af8602283612eb9565b9150614b0382614a9c565b604082019050919050565b60006020820190508181036000830152614b2781614aeb565b9050919050565b600060a082019050614b436000830188613621565b614b506020830187613621565b614b5d6040830186612c3a565b614b6a6060830185612c3a565b8181036080830152614b7c81846145d1565b90509695505050505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614bbe601083612eb9565b9150614bc982614b88565b602082019050919050565b60006020820190508181036000830152614bed81614bb1565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614c50602883612eb9565b9150614c5b82614bf4565b604082019050919050565b60006020820190508181036000830152614c7f81614c43565b9050919050565b614c8f816141d9565b82525050565b6000608082019050614caa6000830187613282565b614cb76020830186614c86565b614cc46040830185613282565b614cd16060830184613282565b9594505050505056fea2646970667358221220b6eab1f45c962003ede8c2881c43aa3a919779397ba3d153672045b160dbfbbe64736f6c634300080f0033
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.