Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 392 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16952183 | 635 days ago | IN | 0 ETH | 0.00045185 | ||||
Set Approval For... | 16656326 | 677 days ago | IN | 0 ETH | 0.00145678 | ||||
Set Approval For... | 16592662 | 686 days ago | IN | 0 ETH | 0.00190701 | ||||
Set Approval For... | 16431028 | 708 days ago | IN | 0 ETH | 0.00097771 | ||||
Set Approval For... | 15916174 | 780 days ago | IN | 0 ETH | 0.00060848 | ||||
Set Approval For... | 15892507 | 784 days ago | IN | 0 ETH | 0.00068991 | ||||
Set Approval For... | 15866601 | 787 days ago | IN | 0 ETH | 0.00032026 | ||||
Set Approval For... | 15845708 | 790 days ago | IN | 0 ETH | 0.00046892 | ||||
Set Approval For... | 15690969 | 812 days ago | IN | 0 ETH | 0.00055987 | ||||
Set Approval For... | 15650464 | 817 days ago | IN | 0 ETH | 0.00036983 | ||||
Set Approval For... | 15645685 | 818 days ago | IN | 0 ETH | 0.00038392 | ||||
Set Approval For... | 15642867 | 818 days ago | IN | 0 ETH | 0.00050051 | ||||
Set Approval For... | 15626444 | 821 days ago | IN | 0 ETH | 0.00097493 | ||||
Set Approval For... | 15626049 | 821 days ago | IN | 0 ETH | 0.00189396 | ||||
Set Approval For... | 15599389 | 824 days ago | IN | 0 ETH | 0.00026818 | ||||
Set Approval For... | 15599387 | 824 days ago | IN | 0 ETH | 0.00025423 | ||||
Set Approval For... | 15596236 | 825 days ago | IN | 0 ETH | 0.00040768 | ||||
Set Approval For... | 15537188 | 833 days ago | IN | 0 ETH | 0.00037905 | ||||
Set Approval For... | 15470136 | 844 days ago | IN | 0 ETH | 0.00011372 | ||||
Set Approval For... | 15427599 | 851 days ago | IN | 0 ETH | 0.00015706 | ||||
Safe Transfer Fr... | 15358019 | 862 days ago | IN | 0 ETH | 0.00042415 | ||||
Safe Transfer Fr... | 15357925 | 862 days ago | IN | 0 ETH | 0.00022025 | ||||
Set Approval For... | 15306851 | 870 days ago | IN | 0 ETH | 0.00042914 | ||||
Set Approval For... | 15269710 | 876 days ago | IN | 0 ETH | 0.00037674 | ||||
Set Approval For... | 15236641 | 881 days ago | IN | 0 ETH | 0.00080306 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Naminori
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Naminori is ERC1155, Ownable { enum SaleStatus{STOPPED, WHITE_LIST, PUBLIC} SaleStatus public saleStatus; uint256 public tokensRemaining = 300; uint256 public maxPublicMintPerTx = 1; uint256 public cost = 0 ether; uint256 public constant NAMINORI_NFT = 1; bytes32 merkleRoot; using MerkleProof for bytes32[]; mapping (address => uint256) public mintCount; string public name = "Naminori"; string public symbol = "Naminori"; constructor() ERC1155("https://naminori.xyz/metadata/{id}.json") { saleStatus = SaleStatus.STOPPED; } function withdraw() public payable onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setWhitelist(bytes32 listRoot) public onlyOwner { merkleRoot = listRoot; } function startWhitelistSale(bytes32 listRoot) public onlyOwner { setWhitelist(listRoot); saleStatus = SaleStatus.WHITE_LIST; } function startPublicSale() public onlyOwner { saleStatus = SaleStatus.PUBLIC; } function stopMint() public onlyOwner { saleStatus = SaleStatus.STOPPED; } modifier whiteList(bytes32 merkleRoot1, bytes32[] memory proof) { require(saleStatus == SaleStatus.WHITE_LIST, "Whitelist sale currently unavailable."); require(proof.verify(merkleRoot1, keccak256(abi.encodePacked(msg.sender))),"You are not in the list"); _; } modifier mintable(uint256 amount) { require(amount>0,"Amount must be positive integer."); _; } function mint(uint256 amount) internal { _mint(msg.sender, NAMINORI_NFT, amount, ""); tokensRemaining -= amount; } function whitelistMint(bytes32[] memory proof) public payable whiteList(merkleRoot, proof) mintable(1) { require(mintCount[msg.sender] == 0, "You have already minted"); mintCount[msg.sender] += 1; mint(1); } function publicMint(uint256 amount) public payable mintable(amount) { require(saleStatus == SaleStatus.PUBLIC, "public sale currently unavailable."); require(amount <= maxPublicMintPerTx, "Minting limit exceeded"); require(mintCount[msg.sender] == 0, "You have already minted"); require(amount <= tokensRemaining,"Exceeds max supply."); mintCount[msg.sender] += 1; mint(amount); } function devMint(uint256 amount, address targetAddress) public onlyOwner { require(amount <= tokensRemaining); _mint(targetAddress, NAMINORI_NFT, amount, ""); tokensRemaining -= amount; } function setURI(string memory uri_) public onlyOwner { _setURI(uri_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `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(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); 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); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { 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.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"NAMINORI_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"targetAddress","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"enum Naminori.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"listRoot","type":"bytes32"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"listRoot","type":"bytes32"}],"name":"startWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMint","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":"tokensRemaining","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":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405261012c600455600160055560006006556040518060400160405280600881526020017f4e616d696e6f726900000000000000000000000000000000000000000000000081525060099080519060200190620000619291906200024c565b506040518060400160405280600881526020017f4e616d696e6f7269000000000000000000000000000000000000000000000000815250600a9080519060200190620000af9291906200024c565b50348015620000bd57600080fd5b506040518060600160405280602781526020016200480b60279139620000e9816200016260201b60201c565b506200010a620000fe6200017e60201b60201c565b6200018660201b60201c565b6000600360146101000a81548160ff0219169083600281111562000157577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555062000361565b80600290805190602001906200017a9291906200024c565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025a90620002fc565b90600052602060002090601f0160209004810192826200027e5760008555620002ca565b82601f106200029957805160ff1916838001178555620002ca565b82800160010185558215620002ca579182015b82811115620002c9578251825591602001919060010190620002ac565b5b509050620002d99190620002dd565b5090565b5b80821115620002f8576000816000905550600101620002de565b5090565b600060028204905060018216806200031557607f821691505b602082108114156200032c576200032b62000332565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61449a80620003716000396000f3fe6080604052600436106101b65760003560e01c80634e1273f4116100ec578063c8b081251161008a578063ed9ec88811610064578063ed9ec88814610596578063f242432a146105d3578063f2fde38b146105fc578063f9020e3314610625576101b6565b8063c8b0812514610517578063d558296514610542578063e985e9c514610559576101b6565b8063715018a6116100c6578063715018a6146104815780638da5cb5b1461049857806395d89b41146104c3578063a22cb465146104ee576101b6565b80634e1273f4146103ee578063503ca7891461042b57806358edecf314610456576101b6565b806313faede6116101595780632eb2c2d6116101335780632eb2c2d614610376578063372f657c1461039f5780633ccfd60b146103bb578063440bc7f3146103c5576101b6565b806313faede6146103065780632d1a12f6146103315780632db115441461035a576101b6565b806306fdde031161019557806306fdde031461025e5780630ab5d8c7146102895780630c1c972a146102b25780630e89341c146102c9576101b6565b8062fdd58e146101bb57806301ffc9a7146101f857806302fe530514610235575b600080fd5b3480156101c757600080fd5b506101e260048036038101906101dd9190612ebe565b610650565b6040516101ef91906138f7565b60405180910390f35b34801561020457600080fd5b5061021f600480360381019061021a9190612fd0565b610719565b60405161022c919061361f565b60405180910390f35b34801561024157600080fd5b5061025c60048036038101906102579190613022565b6107fb565b005b34801561026a57600080fd5b50610273610883565b6040516102809190613655565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190612fa7565b610911565b005b3480156102be57600080fd5b506102c76109ea565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190613063565b610ab9565b6040516102fd9190613655565b60405180910390f35b34801561031257600080fd5b5061031b610b4d565b60405161032891906138f7565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061308c565b610b53565b005b610374600480360381019061036f9190613063565b610c17565b005b34801561038257600080fd5b5061039d60048036038101906103989190612d34565b610e8c565b005b6103b960048036038101906103b49190612f66565b610f2d565b005b6103c361119b565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612fa7565b611260565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612efa565b6112e6565b60405161042291906135c6565b60405180910390f35b34801561043757600080fd5b50610440611497565b60405161044d91906138f7565b60405180910390f35b34801561046257600080fd5b5061046b61149d565b60405161047891906138f7565b60405180910390f35b34801561048d57600080fd5b506104966114a2565b005b3480156104a457600080fd5b506104ad61152a565b6040516104ba91906134e9565b60405180910390f35b3480156104cf57600080fd5b506104d8611554565b6040516104e59190613655565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612e82565b6115e2565b005b34801561052357600080fd5b5061052c6115f8565b60405161053991906138f7565b60405180910390f35b34801561054e57600080fd5b506105576115fe565b005b34801561056557600080fd5b50610580600480360381019061057b9190612cf8565b6116cd565b60405161058d919061361f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612ccf565b611761565b6040516105ca91906138f7565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612df3565b611779565b005b34801561060857600080fd5b50610623600480360381019061061e9190612ccf565b61181a565b005b34801561063157600080fd5b5061063a611912565b604051610647919061363a565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b8906136b7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f457506107f382611925565b5b9050919050565b61080361198f565b73ffffffffffffffffffffffffffffffffffffffff1661082161152a565b73ffffffffffffffffffffffffffffffffffffffff1614610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e906137f7565b60405180910390fd5b61088081611997565b50565b6009805461089090613c26565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc90613c26565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b505050505081565b61091961198f565b73ffffffffffffffffffffffffffffffffffffffff1661093761152a565b73ffffffffffffffffffffffffffffffffffffffff161461098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906137f7565b60405180910390fd5b61099681611260565b6001600360146101000a81548160ff021916908360028111156109e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6109f261198f565b73ffffffffffffffffffffffffffffffffffffffff16610a1061152a565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906137f7565b60405180910390fd5b6002600360146101000a81548160ff02191690836002811115610ab2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b606060028054610ac890613c26565b80601f0160208091040260200160405190810160405280929190818152602001828054610af490613c26565b8015610b415780601f10610b1657610100808354040283529160200191610b41565b820191906000526020600020905b815481529060010190602001808311610b2457829003601f168201915b50505050509050919050565b60065481565b610b5b61198f565b73ffffffffffffffffffffffffffffffffffffffff16610b7961152a565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906137f7565b60405180910390fd5b600454821115610bde57600080fd5b610bfa81600184604051806020016040528060008152506119b1565b8160046000828254610c0c9190613b0d565b925050819055505050565b8060008111610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906137d7565b60405180910390fd5b600280811115610c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600360149054906101000a900460ff166002811115610cdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613897565b60405180910390fd5b600554821115610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613737565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906136f7565b60405180910390fd5b600454821115610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90613817565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e789190613ab7565b92505081905550610e8882611b47565b5050565b610e9461198f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610eda5750610ed985610ed461198f565b6116cd565b5b610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613797565b60405180910390fd5b610f268585858585611b7f565b5050505050565b6007548160016002811115610f6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600360149054906101000a900460ff166002811115610fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613837565b60405180910390fd5b61102e823360405160200161100891906134ce565b6040516020818303038152906040528051906020012083611edf9092919063ffffffff16565b61106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613757565b60405180910390fd5b6001600081116110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906137d7565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b906136f7565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111849190613ab7565b925050819055506111956001611b47565b50505050565b6111a361198f565b73ffffffffffffffffffffffffffffffffffffffff166111c161152a565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906137f7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561125d573d6000803e3d6000fd5b50565b61126861198f565b73ffffffffffffffffffffffffffffffffffffffff1661128661152a565b73ffffffffffffffffffffffffffffffffffffffff16146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d3906137f7565b60405180910390fd5b8060078190555050565b6060815183511461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613877565b60405180910390fd5b6000835167ffffffffffffffff81111561136f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561139d5781602001602082028036833780820191505090505b50905060005b845181101561148c576114368582815181106113e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611429577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610650565b82828151811061146f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061148590613c89565b90506113a3565b508091505092915050565b60055481565b600181565b6114aa61198f565b73ffffffffffffffffffffffffffffffffffffffff166114c861152a565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611515906137f7565b60405180910390fd5b6115286000611ef6565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a805461156190613c26565b80601f016020809104026020016040519081016040528092919081815260200182805461158d90613c26565b80156115da5780601f106115af576101008083540402835291602001916115da565b820191906000526020600020905b8154815290600101906020018083116115bd57829003601f168201915b505050505081565b6115f46115ed61198f565b8383611fbc565b5050565b60045481565b61160661198f565b73ffffffffffffffffffffffffffffffffffffffff1661162461152a565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611671906137f7565b60405180910390fd5b6000600360146101000a81548160ff021916908360028111156116c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60086020528060005260406000206000915090505481565b61178161198f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117c757506117c6856117c161198f565b6116cd565b5b611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90613717565b60405180910390fd5b6118138585858585612129565b5050505050565b61182261198f565b73ffffffffffffffffffffffffffffffffffffffff1661184061152a565b73ffffffffffffffffffffffffffffffffffffffff1614611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d906137f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906136d7565b60405180910390fd5b61190f81611ef6565b50565b600360149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600290805190602001906119ad92919061291c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906138d7565b60405180910390fd5b6000611a2b61198f565b9050611a4c81600087611a3d886123ab565b611a46886123ab565b87612471565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aab9190613ab7565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b29929190613912565b60405180910390a4611b4081600087878787612479565b5050505050565b611b6333600183604051806020016040528060008152506119b1565b8060046000828254611b759190613b0d565b9250508190555050565b8151835114611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba906138b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90613777565b60405180910390fd5b6000611c3d61198f565b9050611c4d818787878787612471565b60005b8451811015611e4a576000858281518110611c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611cd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906137b7565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2f9190613ab7565b9250508190555050505080611e4390613c89565b9050611c50565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ec19291906135e8565b60405180910390a4611ed7818787878787612660565b505050505050565b600082611eec8584612847565b1490509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290613857565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211c919061361f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613777565b60405180910390fd5b60006121a361198f565b90506121c38187876121b4886123ab565b6121bd886123ab565b87612471565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561225a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612251906137b7565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230f9190613ab7565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161238c929190613912565b60405180910390a46123a2828888888888612479565b50505050505050565b60606000600167ffffffffffffffff8111156123f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561241e5781602001602082028036833780820191505090505b509050828160008151811061245c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b6124988473ffffffffffffffffffffffffffffffffffffffff166128e2565b15612658578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016124de95949392919061356c565b602060405180830381600087803b1580156124f857600080fd5b505af192505050801561252957506040513d601f19601f820116820180604052508101906125269190612ff9565b60015b6125cf57612535613db2565b806308c379a01415612592575061254a614347565b806125555750612594565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125899190613655565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690613677565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d90613697565b60405180910390fd5b505b505050505050565b61267f8473ffffffffffffffffffffffffffffffffffffffff166128e2565b1561283f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016126c5959493929190613504565b602060405180830381600087803b1580156126df57600080fd5b505af192505050801561271057506040513d601f19601f8201168201806040525081019061270d9190612ff9565b60015b6127b65761271c613db2565b806308c379a014156127795750612731614347565b8061273c575061277b565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127709190613655565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90613677565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461283d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283490613697565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156128d7576000858281518110612894577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116128b6576128af8382612905565b92506128c3565b6128c08184612905565b92505b5080806128cf90613c89565b915050612850565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b82805461292890613c26565b90600052602060002090601f01602090048101928261294a5760008555612991565b82601f1061296357805160ff1916838001178555612991565b82800160010185558215612991579182015b82811115612990578251825591602001919060010190612975565b5b50905061299e91906129a2565b5090565b5b808211156129bb5760008160009055506001016129a3565b5090565b60006129d26129cd84613960565b61393b565b905080838252602082019050828560208602820111156129f157600080fd5b60005b85811015612a215781612a078882612b7f565b8452602084019350602083019250506001810190506129f4565b5050509392505050565b6000612a3e612a398461398c565b61393b565b90508083825260208201905082856020860282011115612a5d57600080fd5b60005b85811015612a8d5781612a738882612c27565b845260208401935060208301925050600181019050612a60565b5050509392505050565b6000612aaa612aa5846139b8565b61393b565b90508083825260208201905082856020860282011115612ac957600080fd5b60005b85811015612af95781612adf8882612cba565b845260208401935060208301925050600181019050612acc565b5050509392505050565b6000612b16612b11846139e4565b61393b565b905082815260208101848484011115612b2e57600080fd5b612b39848285613be4565b509392505050565b6000612b54612b4f84613a15565b61393b565b905082815260208101848484011115612b6c57600080fd5b612b77848285613be4565b509392505050565b600081359050612b8e816143f1565b92915050565b600082601f830112612ba557600080fd5b8135612bb58482602086016129bf565b91505092915050565b600082601f830112612bcf57600080fd5b8135612bdf848260208601612a2b565b91505092915050565b600082601f830112612bf957600080fd5b8135612c09848260208601612a97565b91505092915050565b600081359050612c2181614408565b92915050565b600081359050612c368161441f565b92915050565b600081359050612c4b81614436565b92915050565b600081519050612c6081614436565b92915050565b600082601f830112612c7757600080fd5b8135612c87848260208601612b03565b91505092915050565b600082601f830112612ca157600080fd5b8135612cb1848260208601612b41565b91505092915050565b600081359050612cc98161444d565b92915050565b600060208284031215612ce157600080fd5b6000612cef84828501612b7f565b91505092915050565b60008060408385031215612d0b57600080fd5b6000612d1985828601612b7f565b9250506020612d2a85828601612b7f565b9150509250929050565b600080600080600060a08688031215612d4c57600080fd5b6000612d5a88828901612b7f565b9550506020612d6b88828901612b7f565b945050604086013567ffffffffffffffff811115612d8857600080fd5b612d9488828901612be8565b935050606086013567ffffffffffffffff811115612db157600080fd5b612dbd88828901612be8565b925050608086013567ffffffffffffffff811115612dda57600080fd5b612de688828901612c66565b9150509295509295909350565b600080600080600060a08688031215612e0b57600080fd5b6000612e1988828901612b7f565b9550506020612e2a88828901612b7f565b9450506040612e3b88828901612cba565b9350506060612e4c88828901612cba565b925050608086013567ffffffffffffffff811115612e6957600080fd5b612e7588828901612c66565b9150509295509295909350565b60008060408385031215612e9557600080fd5b6000612ea385828601612b7f565b9250506020612eb485828601612c12565b9150509250929050565b60008060408385031215612ed157600080fd5b6000612edf85828601612b7f565b9250506020612ef085828601612cba565b9150509250929050565b60008060408385031215612f0d57600080fd5b600083013567ffffffffffffffff811115612f2757600080fd5b612f3385828601612b94565b925050602083013567ffffffffffffffff811115612f5057600080fd5b612f5c85828601612be8565b9150509250929050565b600060208284031215612f7857600080fd5b600082013567ffffffffffffffff811115612f9257600080fd5b612f9e84828501612bbe565b91505092915050565b600060208284031215612fb957600080fd5b6000612fc784828501612c27565b91505092915050565b600060208284031215612fe257600080fd5b6000612ff084828501612c3c565b91505092915050565b60006020828403121561300b57600080fd5b600061301984828501612c51565b91505092915050565b60006020828403121561303457600080fd5b600082013567ffffffffffffffff81111561304e57600080fd5b61305a84828501612c90565b91505092915050565b60006020828403121561307557600080fd5b600061308384828501612cba565b91505092915050565b6000806040838503121561309f57600080fd5b60006130ad85828601612cba565b92505060206130be85828601612b7f565b9150509250929050565b60006130d483836134b0565b60208301905092915050565b6130e981613b41565b82525050565b6131006130fb82613b41565b613cd2565b82525050565b600061311182613a56565b61311b8185613a84565b935061312683613a46565b8060005b8381101561315757815161313e88826130c8565b975061314983613a77565b92505060018101905061312a565b5085935050505092915050565b61316d81613b53565b82525050565b600061317e82613a61565b6131888185613a95565b9350613198818560208601613bf3565b6131a181613dd4565b840191505092915050565b6131b581613bd2565b82525050565b60006131c682613a6c565b6131d08185613aa6565b93506131e0818560208601613bf3565b6131e981613dd4565b840191505092915050565b6000613201603483613aa6565b915061320c82613dff565b604082019050919050565b6000613224602883613aa6565b915061322f82613e4e565b604082019050919050565b6000613247602b83613aa6565b915061325282613e9d565b604082019050919050565b600061326a602683613aa6565b915061327582613eec565b604082019050919050565b600061328d601783613aa6565b915061329882613f3b565b602082019050919050565b60006132b0602983613aa6565b91506132bb82613f64565b604082019050919050565b60006132d3601683613aa6565b91506132de82613fb3565b602082019050919050565b60006132f6601783613aa6565b915061330182613fdc565b602082019050919050565b6000613319602583613aa6565b915061332482614005565b604082019050919050565b600061333c603283613aa6565b915061334782614054565b604082019050919050565b600061335f602a83613aa6565b915061336a826140a3565b604082019050919050565b6000613382602083613aa6565b915061338d826140f2565b602082019050919050565b60006133a5602083613aa6565b91506133b08261411b565b602082019050919050565b60006133c8601383613aa6565b91506133d382614144565b602082019050919050565b60006133eb602583613aa6565b91506133f68261416d565b604082019050919050565b600061340e602983613aa6565b9150613419826141bc565b604082019050919050565b6000613431602983613aa6565b915061343c8261420b565b604082019050919050565b6000613454602283613aa6565b915061345f8261425a565b604082019050919050565b6000613477602883613aa6565b9150613482826142a9565b604082019050919050565b600061349a602183613aa6565b91506134a5826142f8565b604082019050919050565b6134b981613bc8565b82525050565b6134c881613bc8565b82525050565b60006134da82846130ef565b60148201915081905092915050565b60006020820190506134fe60008301846130e0565b92915050565b600060a08201905061351960008301886130e0565b61352660208301876130e0565b81810360408301526135388186613106565b9050818103606083015261354c8185613106565b905081810360808301526135608184613173565b90509695505050505050565b600060a08201905061358160008301886130e0565b61358e60208301876130e0565b61359b60408301866134bf565b6135a860608301856134bf565b81810360808301526135ba8184613173565b90509695505050505050565b600060208201905081810360008301526135e08184613106565b905092915050565b600060408201905081810360008301526136028185613106565b905081810360208301526136168184613106565b90509392505050565b60006020820190506136346000830184613164565b92915050565b600060208201905061364f60008301846131ac565b92915050565b6000602082019050818103600083015261366f81846131bb565b905092915050565b60006020820190508181036000830152613690816131f4565b9050919050565b600060208201905081810360008301526136b081613217565b9050919050565b600060208201905081810360008301526136d08161323a565b9050919050565b600060208201905081810360008301526136f08161325d565b9050919050565b6000602082019050818103600083015261371081613280565b9050919050565b60006020820190508181036000830152613730816132a3565b9050919050565b60006020820190508181036000830152613750816132c6565b9050919050565b60006020820190508181036000830152613770816132e9565b9050919050565b600060208201905081810360008301526137908161330c565b9050919050565b600060208201905081810360008301526137b08161332f565b9050919050565b600060208201905081810360008301526137d081613352565b9050919050565b600060208201905081810360008301526137f081613375565b9050919050565b6000602082019050818103600083015261381081613398565b9050919050565b60006020820190508181036000830152613830816133bb565b9050919050565b60006020820190508181036000830152613850816133de565b9050919050565b6000602082019050818103600083015261387081613401565b9050919050565b6000602082019050818103600083015261389081613424565b9050919050565b600060208201905081810360008301526138b081613447565b9050919050565b600060208201905081810360008301526138d08161346a565b9050919050565b600060208201905081810360008301526138f08161348d565b9050919050565b600060208201905061390c60008301846134bf565b92915050565b600060408201905061392760008301856134bf565b61393460208301846134bf565b9392505050565b6000613945613956565b90506139518282613c58565b919050565b6000604051905090565b600067ffffffffffffffff82111561397b5761397a613d83565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139a7576139a6613d83565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139d3576139d2613d83565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139ff576139fe613d83565b5b613a0882613dd4565b9050602081019050919050565b600067ffffffffffffffff821115613a3057613a2f613d83565b5b613a3982613dd4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ac282613bc8565b9150613acd83613bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0257613b01613cf6565b5b828201905092915050565b6000613b1882613bc8565b9150613b2383613bc8565b925082821015613b3657613b35613cf6565b5b828203905092915050565b6000613b4c82613ba8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613ba3826143dd565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613bdd82613b95565b9050919050565b82818337600083830152505050565b60005b83811015613c11578082015181840152602081019050613bf6565b83811115613c20576000848401525b50505050565b60006002820490506001821680613c3e57607f821691505b60208210811415613c5257613c51613d54565b5b50919050565b613c6182613dd4565b810181811067ffffffffffffffff82111715613c8057613c7f613d83565b5b80604052505050565b6000613c9482613bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc757613cc6613cf6565b5b600182019050919050565b6000613cdd82613ce4565b9050919050565b6000613cef82613de5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613dd15760046000803e613dce600051613df2565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206c696d697420657863656564656400000000000000000000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d75737420626520706f73697469766520696e74656765722e600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f57686974656c6973742073616c652063757272656e746c7920756e617661696c60008201527f61626c652e000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f7075626c69632073616c652063757272656e746c7920756e617661696c61626c60008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614357576143da565b61435f613956565b60043d036004823e80513d602482011167ffffffffffffffff821117156143875750506143da565b808201805167ffffffffffffffff8111156143a557505050506143da565b80602083010160043d0385018111156143c25750505050506143da565b6143d182602001850186613c58565b82955050505050505b90565b600381106143ee576143ed613d25565b5b50565b6143fa81613b41565b811461440557600080fd5b50565b61441181613b53565b811461441c57600080fd5b50565b61442881613b5f565b811461443357600080fd5b50565b61443f81613b69565b811461444a57600080fd5b50565b61445681613bc8565b811461446157600080fd5b5056fea2646970667358221220ce5e9d666f2dbba16cc821a54aaf7b02000b6160508e98aeb63722692e6a7f9d64736f6c6343000804003368747470733a2f2f6e616d696e6f72692e78797a2f6d657461646174612f7b69647d2e6a736f6e
Deployed Bytecode
0x6080604052600436106101b65760003560e01c80634e1273f4116100ec578063c8b081251161008a578063ed9ec88811610064578063ed9ec88814610596578063f242432a146105d3578063f2fde38b146105fc578063f9020e3314610625576101b6565b8063c8b0812514610517578063d558296514610542578063e985e9c514610559576101b6565b8063715018a6116100c6578063715018a6146104815780638da5cb5b1461049857806395d89b41146104c3578063a22cb465146104ee576101b6565b80634e1273f4146103ee578063503ca7891461042b57806358edecf314610456576101b6565b806313faede6116101595780632eb2c2d6116101335780632eb2c2d614610376578063372f657c1461039f5780633ccfd60b146103bb578063440bc7f3146103c5576101b6565b806313faede6146103065780632d1a12f6146103315780632db115441461035a576101b6565b806306fdde031161019557806306fdde031461025e5780630ab5d8c7146102895780630c1c972a146102b25780630e89341c146102c9576101b6565b8062fdd58e146101bb57806301ffc9a7146101f857806302fe530514610235575b600080fd5b3480156101c757600080fd5b506101e260048036038101906101dd9190612ebe565b610650565b6040516101ef91906138f7565b60405180910390f35b34801561020457600080fd5b5061021f600480360381019061021a9190612fd0565b610719565b60405161022c919061361f565b60405180910390f35b34801561024157600080fd5b5061025c60048036038101906102579190613022565b6107fb565b005b34801561026a57600080fd5b50610273610883565b6040516102809190613655565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190612fa7565b610911565b005b3480156102be57600080fd5b506102c76109ea565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190613063565b610ab9565b6040516102fd9190613655565b60405180910390f35b34801561031257600080fd5b5061031b610b4d565b60405161032891906138f7565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061308c565b610b53565b005b610374600480360381019061036f9190613063565b610c17565b005b34801561038257600080fd5b5061039d60048036038101906103989190612d34565b610e8c565b005b6103b960048036038101906103b49190612f66565b610f2d565b005b6103c361119b565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612fa7565b611260565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612efa565b6112e6565b60405161042291906135c6565b60405180910390f35b34801561043757600080fd5b50610440611497565b60405161044d91906138f7565b60405180910390f35b34801561046257600080fd5b5061046b61149d565b60405161047891906138f7565b60405180910390f35b34801561048d57600080fd5b506104966114a2565b005b3480156104a457600080fd5b506104ad61152a565b6040516104ba91906134e9565b60405180910390f35b3480156104cf57600080fd5b506104d8611554565b6040516104e59190613655565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612e82565b6115e2565b005b34801561052357600080fd5b5061052c6115f8565b60405161053991906138f7565b60405180910390f35b34801561054e57600080fd5b506105576115fe565b005b34801561056557600080fd5b50610580600480360381019061057b9190612cf8565b6116cd565b60405161058d919061361f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612ccf565b611761565b6040516105ca91906138f7565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612df3565b611779565b005b34801561060857600080fd5b50610623600480360381019061061e9190612ccf565b61181a565b005b34801561063157600080fd5b5061063a611912565b604051610647919061363a565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b8906136b7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f457506107f382611925565b5b9050919050565b61080361198f565b73ffffffffffffffffffffffffffffffffffffffff1661082161152a565b73ffffffffffffffffffffffffffffffffffffffff1614610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e906137f7565b60405180910390fd5b61088081611997565b50565b6009805461089090613c26565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc90613c26565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b505050505081565b61091961198f565b73ffffffffffffffffffffffffffffffffffffffff1661093761152a565b73ffffffffffffffffffffffffffffffffffffffff161461098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906137f7565b60405180910390fd5b61099681611260565b6001600360146101000a81548160ff021916908360028111156109e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6109f261198f565b73ffffffffffffffffffffffffffffffffffffffff16610a1061152a565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906137f7565b60405180910390fd5b6002600360146101000a81548160ff02191690836002811115610ab2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b606060028054610ac890613c26565b80601f0160208091040260200160405190810160405280929190818152602001828054610af490613c26565b8015610b415780601f10610b1657610100808354040283529160200191610b41565b820191906000526020600020905b815481529060010190602001808311610b2457829003601f168201915b50505050509050919050565b60065481565b610b5b61198f565b73ffffffffffffffffffffffffffffffffffffffff16610b7961152a565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906137f7565b60405180910390fd5b600454821115610bde57600080fd5b610bfa81600184604051806020016040528060008152506119b1565b8160046000828254610c0c9190613b0d565b925050819055505050565b8060008111610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906137d7565b60405180910390fd5b600280811115610c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600360149054906101000a900460ff166002811115610cdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613897565b60405180910390fd5b600554821115610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613737565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906136f7565b60405180910390fd5b600454821115610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90613817565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e789190613ab7565b92505081905550610e8882611b47565b5050565b610e9461198f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610eda5750610ed985610ed461198f565b6116cd565b5b610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613797565b60405180910390fd5b610f268585858585611b7f565b5050505050565b6007548160016002811115610f6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600360149054906101000a900460ff166002811115610fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613837565b60405180910390fd5b61102e823360405160200161100891906134ce565b6040516020818303038152906040528051906020012083611edf9092919063ffffffff16565b61106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613757565b60405180910390fd5b6001600081116110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906137d7565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b906136f7565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111849190613ab7565b925050819055506111956001611b47565b50505050565b6111a361198f565b73ffffffffffffffffffffffffffffffffffffffff166111c161152a565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906137f7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561125d573d6000803e3d6000fd5b50565b61126861198f565b73ffffffffffffffffffffffffffffffffffffffff1661128661152a565b73ffffffffffffffffffffffffffffffffffffffff16146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d3906137f7565b60405180910390fd5b8060078190555050565b6060815183511461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613877565b60405180910390fd5b6000835167ffffffffffffffff81111561136f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561139d5781602001602082028036833780820191505090505b50905060005b845181101561148c576114368582815181106113e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611429577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610650565b82828151811061146f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061148590613c89565b90506113a3565b508091505092915050565b60055481565b600181565b6114aa61198f565b73ffffffffffffffffffffffffffffffffffffffff166114c861152a565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611515906137f7565b60405180910390fd5b6115286000611ef6565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a805461156190613c26565b80601f016020809104026020016040519081016040528092919081815260200182805461158d90613c26565b80156115da5780601f106115af576101008083540402835291602001916115da565b820191906000526020600020905b8154815290600101906020018083116115bd57829003601f168201915b505050505081565b6115f46115ed61198f565b8383611fbc565b5050565b60045481565b61160661198f565b73ffffffffffffffffffffffffffffffffffffffff1661162461152a565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611671906137f7565b60405180910390fd5b6000600360146101000a81548160ff021916908360028111156116c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60086020528060005260406000206000915090505481565b61178161198f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117c757506117c6856117c161198f565b6116cd565b5b611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90613717565b60405180910390fd5b6118138585858585612129565b5050505050565b61182261198f565b73ffffffffffffffffffffffffffffffffffffffff1661184061152a565b73ffffffffffffffffffffffffffffffffffffffff1614611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d906137f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906136d7565b60405180910390fd5b61190f81611ef6565b50565b600360149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600290805190602001906119ad92919061291c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906138d7565b60405180910390fd5b6000611a2b61198f565b9050611a4c81600087611a3d886123ab565b611a46886123ab565b87612471565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aab9190613ab7565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b29929190613912565b60405180910390a4611b4081600087878787612479565b5050505050565b611b6333600183604051806020016040528060008152506119b1565b8060046000828254611b759190613b0d565b9250508190555050565b8151835114611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba906138b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90613777565b60405180910390fd5b6000611c3d61198f565b9050611c4d818787878787612471565b60005b8451811015611e4a576000858281518110611c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611cd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906137b7565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2f9190613ab7565b9250508190555050505080611e4390613c89565b9050611c50565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ec19291906135e8565b60405180910390a4611ed7818787878787612660565b505050505050565b600082611eec8584612847565b1490509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290613857565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211c919061361f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613777565b60405180910390fd5b60006121a361198f565b90506121c38187876121b4886123ab565b6121bd886123ab565b87612471565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561225a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612251906137b7565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230f9190613ab7565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161238c929190613912565b60405180910390a46123a2828888888888612479565b50505050505050565b60606000600167ffffffffffffffff8111156123f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561241e5781602001602082028036833780820191505090505b509050828160008151811061245c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b6124988473ffffffffffffffffffffffffffffffffffffffff166128e2565b15612658578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016124de95949392919061356c565b602060405180830381600087803b1580156124f857600080fd5b505af192505050801561252957506040513d601f19601f820116820180604052508101906125269190612ff9565b60015b6125cf57612535613db2565b806308c379a01415612592575061254a614347565b806125555750612594565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125899190613655565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690613677565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d90613697565b60405180910390fd5b505b505050505050565b61267f8473ffffffffffffffffffffffffffffffffffffffff166128e2565b1561283f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016126c5959493929190613504565b602060405180830381600087803b1580156126df57600080fd5b505af192505050801561271057506040513d601f19601f8201168201806040525081019061270d9190612ff9565b60015b6127b65761271c613db2565b806308c379a014156127795750612731614347565b8061273c575061277b565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127709190613655565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90613677565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461283d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283490613697565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156128d7576000858281518110612894577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116128b6576128af8382612905565b92506128c3565b6128c08184612905565b92505b5080806128cf90613c89565b915050612850565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b82805461292890613c26565b90600052602060002090601f01602090048101928261294a5760008555612991565b82601f1061296357805160ff1916838001178555612991565b82800160010185558215612991579182015b82811115612990578251825591602001919060010190612975565b5b50905061299e91906129a2565b5090565b5b808211156129bb5760008160009055506001016129a3565b5090565b60006129d26129cd84613960565b61393b565b905080838252602082019050828560208602820111156129f157600080fd5b60005b85811015612a215781612a078882612b7f565b8452602084019350602083019250506001810190506129f4565b5050509392505050565b6000612a3e612a398461398c565b61393b565b90508083825260208201905082856020860282011115612a5d57600080fd5b60005b85811015612a8d5781612a738882612c27565b845260208401935060208301925050600181019050612a60565b5050509392505050565b6000612aaa612aa5846139b8565b61393b565b90508083825260208201905082856020860282011115612ac957600080fd5b60005b85811015612af95781612adf8882612cba565b845260208401935060208301925050600181019050612acc565b5050509392505050565b6000612b16612b11846139e4565b61393b565b905082815260208101848484011115612b2e57600080fd5b612b39848285613be4565b509392505050565b6000612b54612b4f84613a15565b61393b565b905082815260208101848484011115612b6c57600080fd5b612b77848285613be4565b509392505050565b600081359050612b8e816143f1565b92915050565b600082601f830112612ba557600080fd5b8135612bb58482602086016129bf565b91505092915050565b600082601f830112612bcf57600080fd5b8135612bdf848260208601612a2b565b91505092915050565b600082601f830112612bf957600080fd5b8135612c09848260208601612a97565b91505092915050565b600081359050612c2181614408565b92915050565b600081359050612c368161441f565b92915050565b600081359050612c4b81614436565b92915050565b600081519050612c6081614436565b92915050565b600082601f830112612c7757600080fd5b8135612c87848260208601612b03565b91505092915050565b600082601f830112612ca157600080fd5b8135612cb1848260208601612b41565b91505092915050565b600081359050612cc98161444d565b92915050565b600060208284031215612ce157600080fd5b6000612cef84828501612b7f565b91505092915050565b60008060408385031215612d0b57600080fd5b6000612d1985828601612b7f565b9250506020612d2a85828601612b7f565b9150509250929050565b600080600080600060a08688031215612d4c57600080fd5b6000612d5a88828901612b7f565b9550506020612d6b88828901612b7f565b945050604086013567ffffffffffffffff811115612d8857600080fd5b612d9488828901612be8565b935050606086013567ffffffffffffffff811115612db157600080fd5b612dbd88828901612be8565b925050608086013567ffffffffffffffff811115612dda57600080fd5b612de688828901612c66565b9150509295509295909350565b600080600080600060a08688031215612e0b57600080fd5b6000612e1988828901612b7f565b9550506020612e2a88828901612b7f565b9450506040612e3b88828901612cba565b9350506060612e4c88828901612cba565b925050608086013567ffffffffffffffff811115612e6957600080fd5b612e7588828901612c66565b9150509295509295909350565b60008060408385031215612e9557600080fd5b6000612ea385828601612b7f565b9250506020612eb485828601612c12565b9150509250929050565b60008060408385031215612ed157600080fd5b6000612edf85828601612b7f565b9250506020612ef085828601612cba565b9150509250929050565b60008060408385031215612f0d57600080fd5b600083013567ffffffffffffffff811115612f2757600080fd5b612f3385828601612b94565b925050602083013567ffffffffffffffff811115612f5057600080fd5b612f5c85828601612be8565b9150509250929050565b600060208284031215612f7857600080fd5b600082013567ffffffffffffffff811115612f9257600080fd5b612f9e84828501612bbe565b91505092915050565b600060208284031215612fb957600080fd5b6000612fc784828501612c27565b91505092915050565b600060208284031215612fe257600080fd5b6000612ff084828501612c3c565b91505092915050565b60006020828403121561300b57600080fd5b600061301984828501612c51565b91505092915050565b60006020828403121561303457600080fd5b600082013567ffffffffffffffff81111561304e57600080fd5b61305a84828501612c90565b91505092915050565b60006020828403121561307557600080fd5b600061308384828501612cba565b91505092915050565b6000806040838503121561309f57600080fd5b60006130ad85828601612cba565b92505060206130be85828601612b7f565b9150509250929050565b60006130d483836134b0565b60208301905092915050565b6130e981613b41565b82525050565b6131006130fb82613b41565b613cd2565b82525050565b600061311182613a56565b61311b8185613a84565b935061312683613a46565b8060005b8381101561315757815161313e88826130c8565b975061314983613a77565b92505060018101905061312a565b5085935050505092915050565b61316d81613b53565b82525050565b600061317e82613a61565b6131888185613a95565b9350613198818560208601613bf3565b6131a181613dd4565b840191505092915050565b6131b581613bd2565b82525050565b60006131c682613a6c565b6131d08185613aa6565b93506131e0818560208601613bf3565b6131e981613dd4565b840191505092915050565b6000613201603483613aa6565b915061320c82613dff565b604082019050919050565b6000613224602883613aa6565b915061322f82613e4e565b604082019050919050565b6000613247602b83613aa6565b915061325282613e9d565b604082019050919050565b600061326a602683613aa6565b915061327582613eec565b604082019050919050565b600061328d601783613aa6565b915061329882613f3b565b602082019050919050565b60006132b0602983613aa6565b91506132bb82613f64565b604082019050919050565b60006132d3601683613aa6565b91506132de82613fb3565b602082019050919050565b60006132f6601783613aa6565b915061330182613fdc565b602082019050919050565b6000613319602583613aa6565b915061332482614005565b604082019050919050565b600061333c603283613aa6565b915061334782614054565b604082019050919050565b600061335f602a83613aa6565b915061336a826140a3565b604082019050919050565b6000613382602083613aa6565b915061338d826140f2565b602082019050919050565b60006133a5602083613aa6565b91506133b08261411b565b602082019050919050565b60006133c8601383613aa6565b91506133d382614144565b602082019050919050565b60006133eb602583613aa6565b91506133f68261416d565b604082019050919050565b600061340e602983613aa6565b9150613419826141bc565b604082019050919050565b6000613431602983613aa6565b915061343c8261420b565b604082019050919050565b6000613454602283613aa6565b915061345f8261425a565b604082019050919050565b6000613477602883613aa6565b9150613482826142a9565b604082019050919050565b600061349a602183613aa6565b91506134a5826142f8565b604082019050919050565b6134b981613bc8565b82525050565b6134c881613bc8565b82525050565b60006134da82846130ef565b60148201915081905092915050565b60006020820190506134fe60008301846130e0565b92915050565b600060a08201905061351960008301886130e0565b61352660208301876130e0565b81810360408301526135388186613106565b9050818103606083015261354c8185613106565b905081810360808301526135608184613173565b90509695505050505050565b600060a08201905061358160008301886130e0565b61358e60208301876130e0565b61359b60408301866134bf565b6135a860608301856134bf565b81810360808301526135ba8184613173565b90509695505050505050565b600060208201905081810360008301526135e08184613106565b905092915050565b600060408201905081810360008301526136028185613106565b905081810360208301526136168184613106565b90509392505050565b60006020820190506136346000830184613164565b92915050565b600060208201905061364f60008301846131ac565b92915050565b6000602082019050818103600083015261366f81846131bb565b905092915050565b60006020820190508181036000830152613690816131f4565b9050919050565b600060208201905081810360008301526136b081613217565b9050919050565b600060208201905081810360008301526136d08161323a565b9050919050565b600060208201905081810360008301526136f08161325d565b9050919050565b6000602082019050818103600083015261371081613280565b9050919050565b60006020820190508181036000830152613730816132a3565b9050919050565b60006020820190508181036000830152613750816132c6565b9050919050565b60006020820190508181036000830152613770816132e9565b9050919050565b600060208201905081810360008301526137908161330c565b9050919050565b600060208201905081810360008301526137b08161332f565b9050919050565b600060208201905081810360008301526137d081613352565b9050919050565b600060208201905081810360008301526137f081613375565b9050919050565b6000602082019050818103600083015261381081613398565b9050919050565b60006020820190508181036000830152613830816133bb565b9050919050565b60006020820190508181036000830152613850816133de565b9050919050565b6000602082019050818103600083015261387081613401565b9050919050565b6000602082019050818103600083015261389081613424565b9050919050565b600060208201905081810360008301526138b081613447565b9050919050565b600060208201905081810360008301526138d08161346a565b9050919050565b600060208201905081810360008301526138f08161348d565b9050919050565b600060208201905061390c60008301846134bf565b92915050565b600060408201905061392760008301856134bf565b61393460208301846134bf565b9392505050565b6000613945613956565b90506139518282613c58565b919050565b6000604051905090565b600067ffffffffffffffff82111561397b5761397a613d83565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139a7576139a6613d83565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139d3576139d2613d83565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139ff576139fe613d83565b5b613a0882613dd4565b9050602081019050919050565b600067ffffffffffffffff821115613a3057613a2f613d83565b5b613a3982613dd4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ac282613bc8565b9150613acd83613bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0257613b01613cf6565b5b828201905092915050565b6000613b1882613bc8565b9150613b2383613bc8565b925082821015613b3657613b35613cf6565b5b828203905092915050565b6000613b4c82613ba8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613ba3826143dd565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613bdd82613b95565b9050919050565b82818337600083830152505050565b60005b83811015613c11578082015181840152602081019050613bf6565b83811115613c20576000848401525b50505050565b60006002820490506001821680613c3e57607f821691505b60208210811415613c5257613c51613d54565b5b50919050565b613c6182613dd4565b810181811067ffffffffffffffff82111715613c8057613c7f613d83565b5b80604052505050565b6000613c9482613bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc757613cc6613cf6565b5b600182019050919050565b6000613cdd82613ce4565b9050919050565b6000613cef82613de5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613dd15760046000803e613dce600051613df2565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206c696d697420657863656564656400000000000000000000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d75737420626520706f73697469766520696e74656765722e600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f57686974656c6973742073616c652063757272656e746c7920756e617661696c60008201527f61626c652e000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f7075626c69632073616c652063757272656e746c7920756e617661696c61626c60008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614357576143da565b61435f613956565b60043d036004823e80513d602482011167ffffffffffffffff821117156143875750506143da565b808201805167ffffffffffffffff8111156143a557505050506143da565b80602083010160043d0385018111156143c25750505050506143da565b6143d182602001850186613c58565b82955050505050505b90565b600381106143ee576143ed613d25565b5b50565b6143fa81613b41565b811461440557600080fd5b50565b61441181613b53565b811461441c57600080fd5b50565b61442881613b5f565b811461443357600080fd5b50565b61443f81613b69565b811461444a57600080fd5b50565b61445681613bc8565b811461446157600080fd5b5056fea2646970667358221220ce5e9d666f2dbba16cc821a54aaf7b02000b6160508e98aeb63722692e6a7f9d64736f6c63430008040033
Loading...
Loading
Loading...
Loading
OVERVIEW
Naminori Yearly beta early access pass is a collection of 300 membership NFTs that give access to the beta version of our analytics tool, Naminori.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.