Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
1,214 RTBNNO
Holders
574
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RottenBananos
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* $$$$$$\ $$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\ $$\ $$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\ $$ __$$\ $$ __$$\ $$ __$$\ $$ | $$ |$$ __$$\\__$$ __|$$ _____|$$ __$$\ $$$\ $$ |$$ _____|\__$$ __|$$ _____|$$ _____|$$ __$$\ $$ / \__|$$ / $$ |$$ | $$ | $$ | $$ |$$ / $$ | $$ | $$ | $$ / \__| $$$$\ $$ |$$ | $$ | $$ | $$ | $$ / \__| $$ |$$$$\ $$ | $$ |$$ | $$ | $$$$$$$$ |$$$$$$$$ | $$ | $$$$$\ \$$$$$$\ $$ $$\$$ |$$$$$\ $$ | $$$$$\ $$$$$\ \$$$$$$\ $$ |\_$$ |$$ | $$ |$$ | $$ | $$ __$$ |$$ __$$ | $$ | $$ __| \____$$\ $$ \$$$$ |$$ __| $$ | $$ __| $$ __| \____$$\ $$ | $$ |$$ | $$ |$$ | $$ | $$ | $$ |$$ | $$ | $$ | $$ | $$\ $$ | $$ |\$$$ |$$ | $$ | $$ | $$ | $$\ $$ | \$$$$$$ | $$$$$$ |$$$$$$$ | $$ | $$ |$$ | $$ | $$ | $$$$$$$$\ \$$$$$$ | $$ | \$$ |$$ | $$ | $$$$$$$$\ $$$$$$$$\ \$$$$$$ | \______/ \______/ \_______/ \__| \__|\__| \__| \__| \________| \______/ \__| \__|\__| \__| \________|\________| \______/ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; interface IERC721 is IERC165 { function balanceOf(address owner) external view returns (uint256); function tokensOfOwner(address owner) external view returns (uint256[] memory); function ownerOf(uint256 tokenId) external view returns (address owner); } contract RottenBananos is ERC1155, Ownable { // Public Constants uint256 public constant MAX_SUPPLY_WL_PHASE_1 = 1000; uint256 public constant MAX_SUPPLY = 4696; uint256 public constant MAX_MINTS_WL_PHASE_1 = 1; uint256 public constant MAX_MINTS_WL_PHASE_2 = 5; uint256 public constant MAX_MINTS_PUBLIC = 5; uint256 public constant BANANA_PRICE_WL_PHASE1 = 0 ether; uint256 public constant BANANA_PRICE_WL_PHASE2 = 0.069 ether; uint256 public constant BANANA_PRICE_PUBLIC = 0.069 ether; string public name; string public symbol; // Variables string private baseURI; uint256 public _minted = 0; address SuperBanana; // Sale controllers bool public WhitelistPhase1Paused = true; bool public WhitelistPhase2Paused = true; bool public PublicPaused = true; // Mappings mapping(uint256 => bool) public dvdaTokenIDBlacklisted; mapping (uint256 => bool) public AlreadyClaimedDVDA; mapping (address => uint256) public AmountClaimedWLPhase2; mapping (address => uint256) public AmountClaimedPublic; IERC721 DVDA = IERC721(0xC084a29DD0C9436568435938B1C6c5af4F5C035f); IERC721 GHN = IERC721(0xE6d48bF4ee912235398b96E16Db6F310c21e82CB); IERC1155 BNNO = IERC1155(0x50BEfFd8A0808314d3cc81B3cbF7f1AFA3A6B56c); IERC721 AHC = IERC721(0x9370045CE37F381500ac7D6802513bb89871e076); constructor( string memory _uri, string memory _name, string memory _symbol ) ERC1155(_uri) { name = _name; symbol = _symbol; } function MintWhitelistPhase1(uint256 DVDA_ID) public payable { require(!WhitelistPhase1Paused, "Whitelist Phase 1 sale is paused"); require(MAX_MINTS_WL_PHASE_1 + _minted <= MAX_SUPPLY_WL_PHASE_1, "Bananos: Exceed WL max supply"); address _owner = DVDA.ownerOf(DVDA_ID); require(_owner == msg.sender, "Must be Owner of DVDA TOKEN ID to mint"); require(msg.value == MAX_MINTS_WL_PHASE_1 * BANANA_PRICE_WL_PHASE1, "Invalid funds provided"); require(!dvdaTokenIDBlacklisted[DVDA_ID], "DVDA Token ID Blacklisted"); require(!AlreadyClaimedDVDA[DVDA_ID], "Banano already claimed with this DVDA Token ID."); _minted += MAX_MINTS_WL_PHASE_1; AlreadyClaimedDVDA[DVDA_ID] = true; _mint(msg.sender, 0, MAX_MINTS_WL_PHASE_1, ""); delete _owner; } function MintWhitelistPhase2(uint256 amount) public payable { require(!WhitelistPhase2Paused, "Whitelist Phase 2 sale is paused"); require(MAX_MINTS_WL_PHASE_2 + _minted <= MAX_SUPPLY, "Bananos: Exceed max supply"); require (isHolderGHNFTeesEcosystem(msg.sender), "Require at least 1 NFT from GodHatesNFTees ecosystem (1 GodHates or 1 Ape or 1 Banano or 1 DVDA)"); require(amount > 0 && amount <= MAX_MINTS_WL_PHASE_2, "Invalid mint amount"); require(msg.value == amount * BANANA_PRICE_WL_PHASE2, "Invalid funds provided"); require(AmountClaimedWLPhase2[msg.sender] < MAX_MINTS_WL_PHASE_2, "Already minted 5 Bananos"); AmountClaimedWLPhase2[msg.sender]+=amount; _minted += amount; _mint(msg.sender, 0, amount, ""); } function MintPublic(uint256 amount) public payable { require(!PublicPaused, "Paused"); require(amount + _minted <= MAX_SUPPLY, "Banana: Exceed max supply"); require(amount > 0 && amount <= MAX_MINTS_PUBLIC, "Invalid mint amount"); require(msg.value == amount * BANANA_PRICE_PUBLIC, "Invalid funds provided"); require(AmountClaimedPublic[msg.sender] < MAX_MINTS_PUBLIC, "Already minted 5 Bananos"); AmountClaimedPublic[msg.sender]+=amount; _minted += amount; _mint(msg.sender, 0, amount, ""); } function setWhitelistPhase1Pause(bool _state) public onlyOwner { WhitelistPhase1Paused = _state; } function setWhitelistPhase2Pause(bool _state) public onlyOwner { WhitelistPhase2Paused = _state; } function setPublicPause(bool _state) public onlyOwner { PublicPaused = _state; } function CheckifDVDAClaimed(uint256 NftID) public view returns (bool){ return AlreadyClaimedDVDA[NftID]; } function burnBanana(address burnTokenAddress) external { require(msg.sender == SuperBanana , "Invalid caller, must be called from SuperBanana Smart Contract"); _burn(burnTokenAddress, 0, 1); } function setSuperBananaAddress(address SuperBananaAddress) external onlyOwner { SuperBanana = SuperBananaAddress; } function HowManyDVDAs(address account) public view returns (uint256){ uint256 numberdvdas = DVDA.balanceOf(account); return numberdvdas; } function HowManyClaimedWLPhase2(address account) public view returns (uint256){ return AmountClaimedWLPhase2[account]; } function HowManyClaimedPublic(address account) public view returns (uint256){ return AmountClaimedPublic[account]; } function DVDA_TOKENS_IDs(address account) public view returns (uint256[] memory){ uint256[] memory tokendvdas = DVDA.tokensOfOwner(account); return tokendvdas; } function isHolderGHNFTeesEcosystem(address account) public view returns (bool){ bool HolderGHNFTeesEcosystem; if (DVDA.balanceOf(account)>0 || GHN.balanceOf(account)>0 || AHC.balanceOf(account)>0 || BNNO.balanceOf(account,0) > 0){ HolderGHNFTeesEcosystem = true; } return HolderGHNFTeesEcosystem; } function updateUri(string memory _newUri) external onlyOwner { _setURI(_newUri); } function addDVDATokenIDToBlackList(uint256 tokenid) public onlyOwner { dvdaTokenIDBlacklisted[tokenid] = true; } function addDVDATokenIDsArrayToBlackList(uint256[] memory tokenids) public onlyOwner { for (uint256 i=0;i< tokenids.length;i++) dvdaTokenIDBlacklisted[tokenids[i]] = true; } function removeDVDATokenIDFromBlackList(uint256 tokenid) public onlyOwner { dvdaTokenIDBlacklisted[tokenid] = false; } function isDVDATokenIDInWhitelist(uint256 tokenid) private view returns (bool) { return dvdaTokenIDBlacklisted[tokenid] ; } function MintAdmin(uint256 amount) external onlyOwner { require(amount + _minted <= MAX_SUPPLY, "Banana: Exceed max supply"); _minted += amount; _mint(msg.sender, 0, amount, ""); } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "WITHDRAW FAILED!"); } function withdrawMoneyTo(address payoutAddress) external onlyOwner { (bool success, ) = payoutAddress.call{value: address(this).balance}(""); require(success, "WITHDRAW FAILED!"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"AlreadyClaimedDVDA","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AmountClaimedPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AmountClaimedWLPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BANANA_PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BANANA_PRICE_WL_PHASE1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BANANA_PRICE_WL_PHASE2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"NftID","type":"uint256"}],"name":"CheckifDVDAClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"DVDA_TOKENS_IDs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"HowManyClaimedPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"HowManyClaimedWLPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"HowManyDVDAs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_WL_PHASE_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_WL_PHASE_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_WL_PHASE_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"DVDA_ID","type":"uint256"}],"name":"MintWhitelistPhase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintWhitelistPhase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PublicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistPhase1Paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistPhase2Paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"addDVDATokenIDToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"addDVDATokenIDsArrayToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"burnTokenAddress","type":"address"}],"name":"burnBanana","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dvdaTokenIDBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isHolderGHNFTeesEcosystem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"removeDVDATokenIDFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"SuperBananaAddress","type":"address"}],"name":"setSuperBananaAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistPhase1Pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistPhase2Pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"updateUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"payoutAddress","type":"address"}],"name":"withdrawMoneyTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006007556001600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff02191690831515021790555073c084a29dd0c9436568435938b1c6c5af4f5c035f600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e6d48bf4ee912235398b96e16db6f310c21e82cb600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507350beffd8a0808314d3cc81b3cbf7f1afa3a6b56c600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739370045ce37f381500ac7d6802513bb89871e076601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001bb57600080fd5b5060405162006122380380620061228339818101604052810190620001e19190620004b7565b82620001f3816200024160201b60201c565b5062000214620002086200025660201b60201c565b6200025e60201b60201c565b8160049081620002259190620007bb565b508060059081620002379190620007bb565b50505050620008a2565b8060029081620002529190620007bb565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200038d8262000342565b810181811067ffffffffffffffff82111715620003af57620003ae62000353565b5b80604052505050565b6000620003c462000324565b9050620003d2828262000382565b919050565b600067ffffffffffffffff821115620003f557620003f462000353565b5b620004008262000342565b9050602081019050919050565b60005b838110156200042d57808201518184015260208101905062000410565b60008484015250505050565b6000620004506200044a84620003d7565b620003b8565b9050828152602081018484840111156200046f576200046e6200033d565b5b6200047c8482856200040d565b509392505050565b600082601f8301126200049c576200049b62000338565b5b8151620004ae84826020860162000439565b91505092915050565b600080600060608486031215620004d357620004d26200032e565b5b600084015167ffffffffffffffff811115620004f457620004f362000333565b5b620005028682870162000484565b935050602084015167ffffffffffffffff81111562000526576200052562000333565b5b620005348682870162000484565b925050604084015167ffffffffffffffff81111562000558576200055762000333565b5b620005668682870162000484565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c357607f821691505b602082108103620005d957620005d86200057b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000604565b6200064f868362000604565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200069c62000696620006908462000667565b62000671565b62000667565b9050919050565b6000819050919050565b620006b8836200067b565b620006d0620006c782620006a3565b84845462000611565b825550505050565b600090565b620006e7620006d8565b620006f4818484620006ad565b505050565b5b818110156200071c5762000710600082620006dd565b600181019050620006fa565b5050565b601f8211156200076b576200073581620005df565b6200074084620005f4565b8101602085101562000750578190505b620007686200075f85620005f4565b830182620006f9565b50505b505050565b600082821c905092915050565b6000620007906000198460080262000770565b1980831691505092915050565b6000620007ab83836200077d565b9150826002028217905092915050565b620007c68262000570565b67ffffffffffffffff811115620007e257620007e162000353565b5b620007ee8254620005aa565b620007fb82828562000720565b600060209050601f8311600181146200083357600084156200081e578287015190505b6200082a85826200079d565b8655506200089a565b601f1984166200084386620005df565b60005b828110156200086d5784890151825560018201915060208501945060208101905062000846565b868310156200088d578489015162000889601f8916826200077d565b8355505b6001600288020188555050505b505050505050565b61587080620008b26000396000f3fe6080604052600436106102c85760003560e01c80637c8927c611610175578063c91c1113116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b26578063f45fdc9814610b4f578063f9eebfec14610b7a578063facfb40d14610ba5576102c8565b8063e985e9c514610a83578063ec70ca3514610ac0578063f242432a14610afd576102c8565b8063c91c11131461094d578063cf98507514610978578063d6f46c58146109a3578063da63d864146109e0578063e31798f314610a09578063e5a6e4a814610a46576102c8565b8063a22cb4651161012e578063a22cb4651461082b578063a84f361414610854578063ac44600214610891578063b6e28c89146108a8578063c2ce0db2146108e5578063c8b2ac0314610922576102c8565b80637c8927c6146107055780637cf46af4146107425780638da5cb5b1461076d578063949de6171461079857806395d89b41146107d55780639fd567b414610800576102c8565b8063315e1f8b116102345780634e1273f4116101ed5780635f4bd467116101c75780635f4bd4671461067e578063643439df146106a95780636eea3441146106c5578063715018a6146106ee576102c8565b80634e1273f4146105ef578063519343581461062c578063570b3c6a14610655576102c8565b8063315e1f8b146104ee57806332cb6b0c1461052b5780633314f318146105565780633cc5331b1461057f5780633f7b6c381461059b5780634bfbfc61146105c4576102c8565b80630e9e533d116102865780630e9e533d146104015780630ff8d8a51461042c5780631c1f693d146104555780632c19b7f31461047e5780632eb2c2d6146104a957806330ae8ae7146104d2576102c8565b8062fdd58e146102cd57806301ffc9a71461030a578063027cae881461034757806306fdde0314610370578063084838ed1461039b5780630e89341c146103c4575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef91906136ed565b610bce565b604051610301919061373c565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906137af565b610c96565b60405161033e91906137f7565b60405180910390f35b34801561035357600080fd5b5061036e6004803603810190610369919061383e565b610d78565b005b34801561037c57600080fd5b50610385610d9d565b60405161039291906138fb565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613a65565b610e2b565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613aae565b610e9c565b6040516103f891906138fb565b60405180910390f35b34801561040d57600080fd5b50610416610f30565b60405161042391906137f7565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613adb565b610f43565b005b34801561046157600080fd5b5061047c60048036038101906104779190613aae565b610ffb565b005b34801561048a57600080fd5b50610493611032565b6040516104a0919061373c565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613bbd565b611038565b005b6104ec60048036038101906104e79190613aae565b6110d9565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613adb565b611406565b604051610522919061373c565b60405180910390f35b34801561053757600080fd5b506105406114b0565b60405161054d919061373c565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190613aae565b6114b6565b005b61059960048036038101906105949190613aae565b611548565b005b3480156105a757600080fd5b506105c260048036038101906105bd919061383e565b6117e7565b005b3480156105d057600080fd5b506105d961180c565b6040516105e6919061373c565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613d4f565b611811565b6040516106239190613e85565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613aae565b61192a565b005b34801561066157600080fd5b5061067c60048036038101906106779190613f48565b611961565b005b34801561068a57600080fd5b50610693611975565b6040516106a091906137f7565b60405180910390f35b6106c360048036038101906106be9190613aae565b611988565b005b3480156106d157600080fd5b506106ec60048036038101906106e7919061383e565b611bde565b005b3480156106fa57600080fd5b50610703611c03565b005b34801561071157600080fd5b5061072c60048036038101906107279190613aae565b611c17565b60405161073991906137f7565b60405180910390f35b34801561074e57600080fd5b50610757611c41565b604051610764919061373c565b60405180910390f35b34801561077957600080fd5b50610782611c47565b60405161078f9190613fa0565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613adb565b611c71565b6040516107cc9190613e85565b60405180910390f35b3480156107e157600080fd5b506107ea611d21565b6040516107f791906138fb565b60405180910390f35b34801561080c57600080fd5b50610815611daf565b604051610822919061373c565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613fbb565b611db4565b005b34801561086057600080fd5b5061087b60048036038101906108769190613adb565b611dca565b604051610888919061373c565b60405180910390f35b34801561089d57600080fd5b506108a6611e13565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613adb565b611eca565b6040516108dc919061373c565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613aae565b611ee2565b60405161091991906137f7565b60405180910390f35b34801561092e57600080fd5b50610937611f02565b604051610944919061373c565b60405180910390f35b34801561095957600080fd5b50610962611f0d565b60405161096f919061373c565b60405180910390f35b34801561098457600080fd5b5061098d611f12565b60405161099a919061373c565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613adb565b611f1d565b6040516109d791906137f7565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613adb565b6121c6565b005b348015610a1557600080fd5b50610a306004803603810190610a2b9190613aae565b612212565b604051610a3d91906137f7565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613adb565b612232565b604051610a7a919061373c565b60405180910390f35b348015610a8f57600080fd5b50610aaa6004803603810190610aa59190613ffb565b61227b565b604051610ab791906137f7565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190613adb565b61230f565b604051610af4919061373c565b60405180910390f35b348015610b0957600080fd5b50610b246004803603810190610b1f919061403b565b612327565b005b348015610b3257600080fd5b50610b4d6004803603810190610b489190613adb565b6123c8565b005b348015610b5b57600080fd5b50610b6461244b565b604051610b7191906137f7565b60405180910390f35b348015610b8657600080fd5b50610b8f61245e565b604051610b9c919061373c565b60405180910390f35b348015610bb157600080fd5b50610bcc6004803603810190610bc79190613adb565b612463565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590614144565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d715750610d7082612503565b5b9050919050565b610d8061256d565b80600860156101000a81548160ff02191690831515021790555050565b60048054610daa90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd690614193565b8015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b505050505081565b610e3361256d565b60005b8151811015610e9857600160096000848481518110610e5857610e576141c4565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9090614222565b915050610e36565b5050565b606060028054610eab90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed790614193565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b50505050509050919050565b600860169054906101000a900460ff1681565b610f4b61256d565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610f719061429b565b60006040518083038185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906142fc565b60405180910390fd5b5050565b61100361256d565b60016009600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b6110406125eb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110865750611085856110806125eb565b61227b565b5b6110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061438e565b60405180910390fd5b6110d285858585856125f3565b5050505050565b600860149054906101000a900460ff1615611129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611120906143fa565b60405180910390fd5b6103e8600754600161113b919061441a565b111561117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061449a565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016111d9919061373c565b602060405180830381865afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a91906144cf565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061456e565b60405180910390fd5b60006001611298919061458e565b34146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d09061461c565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900460ff161561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614688565b60405180910390fd5b600a600083815260200190815260200160002060009054906101000a900460ff161561139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061471a565b60405180910390fd5b6001600760008282546113ae919061441a565b925050819055506001600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506113fe336000600160405180602001604052806000815250612914565b600090505050565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016114649190613fa0565b602060405180830381865afa158015611481573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a5919061474f565b905080915050919050565b61125881565b6114be61256d565b611258600754826114cf919061441a565b1115611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906147c8565b60405180910390fd5b8060076000828254611522919061441a565b925050819055506115453360008360405180602001604052806000815250612914565b50565b600860159054906101000a900460ff1615611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90614834565b60405180910390fd5b61125860075460056115aa919061441a565b11156115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906148a0565b60405180910390fd5b6115f433611f1d565b611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614958565b60405180910390fd5b600081118015611644575060058111155b611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a906149c4565b60405180910390fd5b66f523226980800081611696919061458e565b34146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce9061461c565b60405180910390fd5b6005600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614a30565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a8919061441a565b9250508190555080600760008282546117c1919061441a565b925050819055506117e43360008360405180602001604052806000815250612914565b50565b6117ef61256d565b80600860146101000a81548160ff02191690831515021790555050565b600581565b60608151835114611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614ac2565b60405180910390fd5b6000835167ffffffffffffffff81111561187457611873613922565b5b6040519080825280602002602001820160405280156118a25781602001602082028036833780820191505090505b50905060005b845181101561191f576118ef8582815181106118c7576118c66141c4565b5b60200260200101518583815181106118e2576118e16141c4565b5b6020026020010151610bce565b828281518110611902576119016141c4565b5b6020026020010181815250508061191890614222565b90506118a8565b508091505092915050565b61193261256d565b60006009600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61196961256d565b61197281612ac4565b50565b600860149054906101000a900460ff1681565b600860169054906101000a900460ff16156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90614b2e565b60405180910390fd5b611258600754826119e9919061441a565b1115611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906147c8565b60405180910390fd5b600081118015611a3b575060058111155b611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906149c4565b60405180910390fd5b66f523226980800081611a8d919061458e565b3414611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac59061461c565b60405180910390fd5b6005600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614a30565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9f919061441a565b925050819055508060076000828254611bb8919061441a565b92505081905550611bdb3360008360405180602001604052806000815250612914565b50565b611be661256d565b80600860166101000a81548160ff02191690831515021790555050565b611c0b61256d565b611c156000612ad7565b565b6000600a600083815260200190815260200160002060009054906101000a900460ff169050919050565b6103e881565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638462151c846040518263ffffffff1660e01b8152600401611cd09190613fa0565b600060405180830381865afa158015611ced573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d169190614be5565b905080915050919050565b60058054611d2e90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5a90614193565b8015611da75780601f10611d7c57610100808354040283529160200191611da7565b820191906000526020600020905b815481529060010190602001808311611d8a57829003601f168201915b505050505081565b600181565b611dc6611dbf6125eb565b8383612b9d565b5050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e1b61256d565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611e419061429b565b60006040518083038185875af1925050503d8060008114611e7e576040519150601f19603f3d011682016040523d82523d6000602084013e611e83565b606091505b5050905080611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe906142fc565b60405180910390fd5b50565b600c6020528060005260406000206000915090505481565b600a6020528060005260406000206000915054906101000a900460ff1681565b66f523226980800081565b600581565b66f523226980800081565b6000806000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401611f7d9190613fa0565b602060405180830381865afa158015611f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbe919061474f565b118061206557506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016120229190613fa0565b602060405180830381865afa15801561203f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612063919061474f565b115b8061210b57506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016120c89190613fa0565b602060405180830381865afa1580156120e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612109919061474f565b115b806121b357506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e8560006040518363ffffffff1660e01b8152600401612170929190614c73565b602060405180830381865afa15801561218d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b1919061474f565b115b156121bd57600190505b80915050919050565b6121ce61256d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090505481565b61232f6125eb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061237557506123748561236f6125eb565b61227b565b5b6123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab9061438e565b60405180910390fd5b6123c18585858585612d09565b5050505050565b6123d061256d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690614d0e565b60405180910390fd5b61244881612ad7565b50565b600860159054906101000a900460ff1681565b600081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea90614da0565b60405180910390fd5b6125008160006001612fa4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125756125eb565b73ffffffffffffffffffffffffffffffffffffffff16612593611c47565b73ffffffffffffffffffffffffffffffffffffffff16146125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090614e0c565b60405180910390fd5b565b600033905090565b8151835114612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e90614e9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269d90614f30565b60405180910390fd5b60006126b06125eb565b90506126c08187878787876131ea565b60005b84518110156128715760008582815181106126e1576126e06141c4565b5b602002602001015190506000858381518110612700576126ff6141c4565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614fc2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612856919061441a565b925050819055505050508061286a90614222565b90506126c3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516128e8929190614fe2565b60405180910390a46128fe8187878787876131f2565b61290c8187878787876131fa565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a9061508b565b60405180910390fd5b600061298d6125eb565b9050600061299a856133d1565b905060006129a7856133d1565b90506129b8836000898585896131ea565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a17919061441a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612a959291906150ab565b60405180910390a4612aac836000898585896131f2565b612abb8360008989898961344b565b50505050505050565b8060029081612ad39190615276565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c02906153ba565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cfc91906137f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f90614f30565b60405180910390fd5b6000612d826125eb565b90506000612d8f856133d1565b90506000612d9c856133d1565b9050612dac8389898585896131ea565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3a90614fc2565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef8919061441a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612f759291906150ab565b60405180910390a4612f8b848a8a86868a6131f2565b612f99848a8a8a8a8a61344b565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a9061544c565b60405180910390fd5b600061301d6125eb565b9050600061302a846133d1565b90506000613037846133d1565b9050613057838760008585604051806020016040528060008152506131ea565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156130ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e5906154de565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516131bb9291906150ab565b60405180910390a46131e1848860008686604051806020016040528060008152506131f2565b50505050505050565b505050505050565b505050505050565b6132198473ffffffffffffffffffffffffffffffffffffffff16613622565b156133c9578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161325f959493929190615553565b6020604051808303816000875af192505050801561329b57506040513d601f19601f8201168201806040525081019061329891906155d0565b60015b613340576132a761560a565b806308c379a00361330357506132bb61562c565b806132c65750613305565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa91906138fb565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133379061572e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146133c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133be906157c0565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156133f0576133ef613922565b5b60405190808252806020026020018201604052801561341e5781602001602082028036833780820191505090505b5090508281600081518110613436576134356141c4565b5b60200260200101818152505080915050919050565b61346a8473ffffffffffffffffffffffffffffffffffffffff16613622565b1561361a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016134b09594939291906157e0565b6020604051808303816000875af19250505080156134ec57506040513d601f19601f820116820180604052508101906134e991906155d0565b60015b613591576134f861560a565b806308c379a003613554575061350c61562c565b806135175750613556565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354b91906138fb565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135889061572e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360f906157c0565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061368482613659565b9050919050565b61369481613679565b811461369f57600080fd5b50565b6000813590506136b18161368b565b92915050565b6000819050919050565b6136ca816136b7565b81146136d557600080fd5b50565b6000813590506136e7816136c1565b92915050565b600080604083850312156137045761370361364f565b5b6000613712858286016136a2565b9250506020613723858286016136d8565b9150509250929050565b613736816136b7565b82525050565b6000602082019050613751600083018461372d565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61378c81613757565b811461379757600080fd5b50565b6000813590506137a981613783565b92915050565b6000602082840312156137c5576137c461364f565b5b60006137d38482850161379a565b91505092915050565b60008115159050919050565b6137f1816137dc565b82525050565b600060208201905061380c60008301846137e8565b92915050565b61381b816137dc565b811461382657600080fd5b50565b60008135905061383881613812565b92915050565b6000602082840312156138545761385361364f565b5b600061386284828501613829565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138a557808201518184015260208101905061388a565b60008484015250505050565b6000601f19601f8301169050919050565b60006138cd8261386b565b6138d78185613876565b93506138e7818560208601613887565b6138f0816138b1565b840191505092915050565b6000602082019050818103600083015261391581846138c2565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61395a826138b1565b810181811067ffffffffffffffff8211171561397957613978613922565b5b80604052505050565b600061398c613645565b90506139988282613951565b919050565b600067ffffffffffffffff8211156139b8576139b7613922565b5b602082029050602081019050919050565b600080fd5b60006139e16139dc8461399d565b613982565b90508083825260208201905060208402830185811115613a0457613a036139c9565b5b835b81811015613a2d5780613a1988826136d8565b845260208401935050602081019050613a06565b5050509392505050565b600082601f830112613a4c57613a4b61391d565b5b8135613a5c8482602086016139ce565b91505092915050565b600060208284031215613a7b57613a7a61364f565b5b600082013567ffffffffffffffff811115613a9957613a98613654565b5b613aa584828501613a37565b91505092915050565b600060208284031215613ac457613ac361364f565b5b6000613ad2848285016136d8565b91505092915050565b600060208284031215613af157613af061364f565b5b6000613aff848285016136a2565b91505092915050565b600080fd5b600067ffffffffffffffff821115613b2857613b27613922565b5b613b31826138b1565b9050602081019050919050565b82818337600083830152505050565b6000613b60613b5b84613b0d565b613982565b905082815260208101848484011115613b7c57613b7b613b08565b5b613b87848285613b3e565b509392505050565b600082601f830112613ba457613ba361391d565b5b8135613bb4848260208601613b4d565b91505092915050565b600080600080600060a08688031215613bd957613bd861364f565b5b6000613be7888289016136a2565b9550506020613bf8888289016136a2565b945050604086013567ffffffffffffffff811115613c1957613c18613654565b5b613c2588828901613a37565b935050606086013567ffffffffffffffff811115613c4657613c45613654565b5b613c5288828901613a37565b925050608086013567ffffffffffffffff811115613c7357613c72613654565b5b613c7f88828901613b8f565b9150509295509295909350565b600067ffffffffffffffff821115613ca757613ca6613922565b5b602082029050602081019050919050565b6000613ccb613cc684613c8c565b613982565b90508083825260208201905060208402830185811115613cee57613ced6139c9565b5b835b81811015613d175780613d0388826136a2565b845260208401935050602081019050613cf0565b5050509392505050565b600082601f830112613d3657613d3561391d565b5b8135613d46848260208601613cb8565b91505092915050565b60008060408385031215613d6657613d6561364f565b5b600083013567ffffffffffffffff811115613d8457613d83613654565b5b613d9085828601613d21565b925050602083013567ffffffffffffffff811115613db157613db0613654565b5b613dbd85828601613a37565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dfc816136b7565b82525050565b6000613e0e8383613df3565b60208301905092915050565b6000602082019050919050565b6000613e3282613dc7565b613e3c8185613dd2565b9350613e4783613de3565b8060005b83811015613e78578151613e5f8882613e02565b9750613e6a83613e1a565b925050600181019050613e4b565b5085935050505092915050565b60006020820190508181036000830152613e9f8184613e27565b905092915050565b600067ffffffffffffffff821115613ec257613ec1613922565b5b613ecb826138b1565b9050602081019050919050565b6000613eeb613ee684613ea7565b613982565b905082815260208101848484011115613f0757613f06613b08565b5b613f12848285613b3e565b509392505050565b600082601f830112613f2f57613f2e61391d565b5b8135613f3f848260208601613ed8565b91505092915050565b600060208284031215613f5e57613f5d61364f565b5b600082013567ffffffffffffffff811115613f7c57613f7b613654565b5b613f8884828501613f1a565b91505092915050565b613f9a81613679565b82525050565b6000602082019050613fb56000830184613f91565b92915050565b60008060408385031215613fd257613fd161364f565b5b6000613fe0858286016136a2565b9250506020613ff185828601613829565b9150509250929050565b600080604083850312156140125761401161364f565b5b6000614020858286016136a2565b9250506020614031858286016136a2565b9150509250929050565b600080600080600060a086880312156140575761405661364f565b5b6000614065888289016136a2565b9550506020614076888289016136a2565b9450506040614087888289016136d8565b9350506060614098888289016136d8565b925050608086013567ffffffffffffffff8111156140b9576140b8613654565b5b6140c588828901613b8f565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061412e602a83613876565b9150614139826140d2565b604082019050919050565b6000602082019050818103600083015261415d81614121565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141ab57607f821691505b6020821081036141be576141bd614164565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061422d826136b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361425f5761425e6141f3565b5b600182019050919050565b600081905092915050565b50565b600061428560008361426a565b915061429082614275565b600082019050919050565b60006142a682614278565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b60006142e6601083613876565b91506142f1826142b0565b602082019050919050565b60006020820190508181036000830152614315816142d9565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000614378602f83613876565b91506143838261431c565b604082019050919050565b600060208201905081810360008301526143a78161436b565b9050919050565b7f57686974656c69737420506861736520312073616c6520697320706175736564600082015250565b60006143e4602083613876565b91506143ef826143ae565b602082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b6000614425826136b7565b9150614430836136b7565b9250828201905080821115614448576144476141f3565b5b92915050565b7f42616e616e6f733a2045786365656420574c206d617820737570706c79000000600082015250565b6000614484601d83613876565b915061448f8261444e565b602082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b6000815190506144c98161368b565b92915050565b6000602082840312156144e5576144e461364f565b5b60006144f3848285016144ba565b91505092915050565b7f4d757374206265204f776e6572206f66204456444120544f4b454e204944207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b6000614558602683613876565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b6000614599826136b7565b91506145a4836136b7565b92508282026145b2816136b7565b915082820484148315176145c9576145c86141f3565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614606601683613876565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f4456444120546f6b656e20494420426c61636b6c697374656400000000000000600082015250565b6000614672601983613876565b915061467d8261463c565b602082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f42616e616e6f20616c726561647920636c61696d65642077697468207468697360008201527f204456444120546f6b656e2049442e0000000000000000000000000000000000602082015250565b6000614704602f83613876565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b600081519050614749816136c1565b92915050565b6000602082840312156147655761476461364f565b5b60006147738482850161473a565b91505092915050565b7f42616e616e613a20457863656564206d617820737570706c7900000000000000600082015250565b60006147b2601983613876565b91506147bd8261477c565b602082019050919050565b600060208201905081810360008301526147e1816147a5565b9050919050565b7f57686974656c69737420506861736520322073616c6520697320706175736564600082015250565b600061481e602083613876565b9150614829826147e8565b602082019050919050565b6000602082019050818103600083015261484d81614811565b9050919050565b7f42616e616e6f733a20457863656564206d617820737570706c79000000000000600082015250565b600061488a601a83613876565b915061489582614854565b602082019050919050565b600060208201905081810360008301526148b98161487d565b9050919050565b7f52657175697265206174206c656173742031204e46542066726f6d20476f644860008201527f617465734e46546565732065636f73797374656d20283120476f64486174657360208201527f206f72203120417065206f7220312042616e616e6f206f722031204456444129604082015250565b6000614942606083613876565b915061494d826148c0565b606082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006149ae601383613876565b91506149b982614978565b602082019050919050565b600060208201905081810360008301526149dd816149a1565b9050919050565b7f416c7265616479206d696e74656420352042616e616e6f730000000000000000600082015250565b6000614a1a601883613876565b9150614a25826149e4565b602082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614aac602983613876565b9150614ab782614a50565b604082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000614b18600683613876565b9150614b2382614ae2565b602082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b6000614b61614b5c8461399d565b613982565b90508083825260208201905060208402830185811115614b8457614b836139c9565b5b835b81811015614bad5780614b99888261473a565b845260208401935050602081019050614b86565b5050509392505050565b600082601f830112614bcc57614bcb61391d565b5b8151614bdc848260208601614b4e565b91505092915050565b600060208284031215614bfb57614bfa61364f565b5b600082015167ffffffffffffffff811115614c1957614c18613654565b5b614c2584828501614bb7565b91505092915050565b6000819050919050565b6000819050919050565b6000614c5d614c58614c5384614c2e565b614c38565b6136b7565b9050919050565b614c6d81614c42565b82525050565b6000604082019050614c886000830185613f91565b614c956020830184614c64565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cf8602683613876565b9150614d0382614c9c565b604082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f496e76616c69642063616c6c65722c206d7573742062652063616c6c6564206660008201527f726f6d20537570657242616e616e6120536d61727420436f6e74726163740000602082015250565b6000614d8a603e83613876565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614df6602083613876565b9150614e0182614dc0565b602082019050919050565b60006020820190508181036000830152614e2581614de9565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614e88602883613876565b9150614e9382614e2c565b604082019050919050565b60006020820190508181036000830152614eb781614e7b565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f1a602583613876565b9150614f2582614ebe565b604082019050919050565b60006020820190508181036000830152614f4981614f0d565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614fac602a83613876565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b60006040820190508181036000830152614ffc8185613e27565b905081810360208301526150108184613e27565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615075602183613876565b915061508082615019565b604082019050919050565b600060208201905081810360008301526150a481615068565b9050919050565b60006040820190506150c0600083018561372d565b6150cd602083018461372d565b9392505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026151367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826150f9565b61514086836150f9565b95508019841693508086168417925050509392505050565b600061517361516e615169846136b7565b614c38565b6136b7565b9050919050565b6000819050919050565b61518d83615158565b6151a16151998261517a565b848454615106565b825550505050565b600090565b6151b66151a9565b6151c1818484615184565b505050565b5b818110156151e5576151da6000826151ae565b6001810190506151c7565b5050565b601f82111561522a576151fb816150d4565b615204846150e9565b81016020851015615213578190505b61522761521f856150e9565b8301826151c6565b50505b505050565b600082821c905092915050565b600061524d6000198460080261522f565b1980831691505092915050565b6000615266838361523c565b9150826002028217905092915050565b61527f8261386b565b67ffffffffffffffff81111561529857615297613922565b5b6152a28254614193565b6152ad8282856151e9565b600060209050601f8311600181146152e057600084156152ce578287015190505b6152d8858261525a565b865550615340565b601f1984166152ee866150d4565b60005b82811015615316578489015182556001820191506020850194506020810190506152f1565b86831015615333578489015161532f601f89168261523c565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006153a4602983613876565b91506153af82615348565b604082019050919050565b600060208201905081810360008301526153d381615397565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615436602383613876565b9150615441826153da565b604082019050919050565b6000602082019050818103600083015261546581615429565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006154c8602483613876565b91506154d38261546c565b604082019050919050565b600060208201905081810360008301526154f7816154bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615525826154fe565b61552f8185615509565b935061553f818560208601613887565b615548816138b1565b840191505092915050565b600060a0820190506155686000830188613f91565b6155756020830187613f91565b81810360408301526155878186613e27565b9050818103606083015261559b8185613e27565b905081810360808301526155af818461551a565b90509695505050505050565b6000815190506155ca81613783565b92915050565b6000602082840312156155e6576155e561364f565b5b60006155f4848285016155bb565b91505092915050565b60008160e01c9050919050565b600060033d11156156295760046000803e6156266000516155fd565b90505b90565b600060443d106156b95761563e613645565b60043d036004823e80513d602482011167ffffffffffffffff821117156156665750506156b9565b808201805167ffffffffffffffff81111561568457505050506156b9565b80602083010160043d0385018111156156a15750505050506156b9565b6156b082602001850186613951565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615718603483613876565b9150615723826156bc565b604082019050919050565b600060208201905081810360008301526157478161570b565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006157aa602883613876565b91506157b58261574e565b604082019050919050565b600060208201905081810360008301526157d98161579d565b9050919050565b600060a0820190506157f56000830188613f91565b6158026020830187613f91565b61580f604083018661372d565b61581c606083018561372d565b818103608083015261582e818461551a565b9050969550505050505056fea2646970667358221220466b6e70b4f7e005860114af47e5b4c3cf85ffd516648f0a263c4e7ab2b3d4cd64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d576f6b6d78706e616939765868487a486a67776b6238747a6d4d6d444671656d5a527171514d474561616b752f526f7474656e42616e616e6f2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e526f7474656e2042616e616e6f7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065254424e4e4f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102c85760003560e01c80637c8927c611610175578063c91c1113116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b26578063f45fdc9814610b4f578063f9eebfec14610b7a578063facfb40d14610ba5576102c8565b8063e985e9c514610a83578063ec70ca3514610ac0578063f242432a14610afd576102c8565b8063c91c11131461094d578063cf98507514610978578063d6f46c58146109a3578063da63d864146109e0578063e31798f314610a09578063e5a6e4a814610a46576102c8565b8063a22cb4651161012e578063a22cb4651461082b578063a84f361414610854578063ac44600214610891578063b6e28c89146108a8578063c2ce0db2146108e5578063c8b2ac0314610922576102c8565b80637c8927c6146107055780637cf46af4146107425780638da5cb5b1461076d578063949de6171461079857806395d89b41146107d55780639fd567b414610800576102c8565b8063315e1f8b116102345780634e1273f4116101ed5780635f4bd467116101c75780635f4bd4671461067e578063643439df146106a95780636eea3441146106c5578063715018a6146106ee576102c8565b80634e1273f4146105ef578063519343581461062c578063570b3c6a14610655576102c8565b8063315e1f8b146104ee57806332cb6b0c1461052b5780633314f318146105565780633cc5331b1461057f5780633f7b6c381461059b5780634bfbfc61146105c4576102c8565b80630e9e533d116102865780630e9e533d146104015780630ff8d8a51461042c5780631c1f693d146104555780632c19b7f31461047e5780632eb2c2d6146104a957806330ae8ae7146104d2576102c8565b8062fdd58e146102cd57806301ffc9a71461030a578063027cae881461034757806306fdde0314610370578063084838ed1461039b5780630e89341c146103c4575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef91906136ed565b610bce565b604051610301919061373c565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906137af565b610c96565b60405161033e91906137f7565b60405180910390f35b34801561035357600080fd5b5061036e6004803603810190610369919061383e565b610d78565b005b34801561037c57600080fd5b50610385610d9d565b60405161039291906138fb565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613a65565b610e2b565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613aae565b610e9c565b6040516103f891906138fb565b60405180910390f35b34801561040d57600080fd5b50610416610f30565b60405161042391906137f7565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613adb565b610f43565b005b34801561046157600080fd5b5061047c60048036038101906104779190613aae565b610ffb565b005b34801561048a57600080fd5b50610493611032565b6040516104a0919061373c565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613bbd565b611038565b005b6104ec60048036038101906104e79190613aae565b6110d9565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613adb565b611406565b604051610522919061373c565b60405180910390f35b34801561053757600080fd5b506105406114b0565b60405161054d919061373c565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190613aae565b6114b6565b005b61059960048036038101906105949190613aae565b611548565b005b3480156105a757600080fd5b506105c260048036038101906105bd919061383e565b6117e7565b005b3480156105d057600080fd5b506105d961180c565b6040516105e6919061373c565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613d4f565b611811565b6040516106239190613e85565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613aae565b61192a565b005b34801561066157600080fd5b5061067c60048036038101906106779190613f48565b611961565b005b34801561068a57600080fd5b50610693611975565b6040516106a091906137f7565b60405180910390f35b6106c360048036038101906106be9190613aae565b611988565b005b3480156106d157600080fd5b506106ec60048036038101906106e7919061383e565b611bde565b005b3480156106fa57600080fd5b50610703611c03565b005b34801561071157600080fd5b5061072c60048036038101906107279190613aae565b611c17565b60405161073991906137f7565b60405180910390f35b34801561074e57600080fd5b50610757611c41565b604051610764919061373c565b60405180910390f35b34801561077957600080fd5b50610782611c47565b60405161078f9190613fa0565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613adb565b611c71565b6040516107cc9190613e85565b60405180910390f35b3480156107e157600080fd5b506107ea611d21565b6040516107f791906138fb565b60405180910390f35b34801561080c57600080fd5b50610815611daf565b604051610822919061373c565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613fbb565b611db4565b005b34801561086057600080fd5b5061087b60048036038101906108769190613adb565b611dca565b604051610888919061373c565b60405180910390f35b34801561089d57600080fd5b506108a6611e13565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613adb565b611eca565b6040516108dc919061373c565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613aae565b611ee2565b60405161091991906137f7565b60405180910390f35b34801561092e57600080fd5b50610937611f02565b604051610944919061373c565b60405180910390f35b34801561095957600080fd5b50610962611f0d565b60405161096f919061373c565b60405180910390f35b34801561098457600080fd5b5061098d611f12565b60405161099a919061373c565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613adb565b611f1d565b6040516109d791906137f7565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613adb565b6121c6565b005b348015610a1557600080fd5b50610a306004803603810190610a2b9190613aae565b612212565b604051610a3d91906137f7565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613adb565b612232565b604051610a7a919061373c565b60405180910390f35b348015610a8f57600080fd5b50610aaa6004803603810190610aa59190613ffb565b61227b565b604051610ab791906137f7565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190613adb565b61230f565b604051610af4919061373c565b60405180910390f35b348015610b0957600080fd5b50610b246004803603810190610b1f919061403b565b612327565b005b348015610b3257600080fd5b50610b4d6004803603810190610b489190613adb565b6123c8565b005b348015610b5b57600080fd5b50610b6461244b565b604051610b7191906137f7565b60405180910390f35b348015610b8657600080fd5b50610b8f61245e565b604051610b9c919061373c565b60405180910390f35b348015610bb157600080fd5b50610bcc6004803603810190610bc79190613adb565b612463565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590614144565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d715750610d7082612503565b5b9050919050565b610d8061256d565b80600860156101000a81548160ff02191690831515021790555050565b60048054610daa90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd690614193565b8015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b505050505081565b610e3361256d565b60005b8151811015610e9857600160096000848481518110610e5857610e576141c4565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9090614222565b915050610e36565b5050565b606060028054610eab90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed790614193565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b50505050509050919050565b600860169054906101000a900460ff1681565b610f4b61256d565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610f719061429b565b60006040518083038185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906142fc565b60405180910390fd5b5050565b61100361256d565b60016009600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b6110406125eb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110865750611085856110806125eb565b61227b565b5b6110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061438e565b60405180910390fd5b6110d285858585856125f3565b5050505050565b600860149054906101000a900460ff1615611129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611120906143fa565b60405180910390fd5b6103e8600754600161113b919061441a565b111561117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061449a565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016111d9919061373c565b602060405180830381865afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a91906144cf565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061456e565b60405180910390fd5b60006001611298919061458e565b34146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d09061461c565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900460ff161561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614688565b60405180910390fd5b600a600083815260200190815260200160002060009054906101000a900460ff161561139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061471a565b60405180910390fd5b6001600760008282546113ae919061441a565b925050819055506001600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506113fe336000600160405180602001604052806000815250612914565b600090505050565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016114649190613fa0565b602060405180830381865afa158015611481573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a5919061474f565b905080915050919050565b61125881565b6114be61256d565b611258600754826114cf919061441a565b1115611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906147c8565b60405180910390fd5b8060076000828254611522919061441a565b925050819055506115453360008360405180602001604052806000815250612914565b50565b600860159054906101000a900460ff1615611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90614834565b60405180910390fd5b61125860075460056115aa919061441a565b11156115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906148a0565b60405180910390fd5b6115f433611f1d565b611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614958565b60405180910390fd5b600081118015611644575060058111155b611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a906149c4565b60405180910390fd5b66f523226980800081611696919061458e565b34146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce9061461c565b60405180910390fd5b6005600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614a30565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a8919061441a565b9250508190555080600760008282546117c1919061441a565b925050819055506117e43360008360405180602001604052806000815250612914565b50565b6117ef61256d565b80600860146101000a81548160ff02191690831515021790555050565b600581565b60608151835114611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614ac2565b60405180910390fd5b6000835167ffffffffffffffff81111561187457611873613922565b5b6040519080825280602002602001820160405280156118a25781602001602082028036833780820191505090505b50905060005b845181101561191f576118ef8582815181106118c7576118c66141c4565b5b60200260200101518583815181106118e2576118e16141c4565b5b6020026020010151610bce565b828281518110611902576119016141c4565b5b6020026020010181815250508061191890614222565b90506118a8565b508091505092915050565b61193261256d565b60006009600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61196961256d565b61197281612ac4565b50565b600860149054906101000a900460ff1681565b600860169054906101000a900460ff16156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90614b2e565b60405180910390fd5b611258600754826119e9919061441a565b1115611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906147c8565b60405180910390fd5b600081118015611a3b575060058111155b611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906149c4565b60405180910390fd5b66f523226980800081611a8d919061458e565b3414611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac59061461c565b60405180910390fd5b6005600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614a30565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9f919061441a565b925050819055508060076000828254611bb8919061441a565b92505081905550611bdb3360008360405180602001604052806000815250612914565b50565b611be661256d565b80600860166101000a81548160ff02191690831515021790555050565b611c0b61256d565b611c156000612ad7565b565b6000600a600083815260200190815260200160002060009054906101000a900460ff169050919050565b6103e881565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638462151c846040518263ffffffff1660e01b8152600401611cd09190613fa0565b600060405180830381865afa158015611ced573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d169190614be5565b905080915050919050565b60058054611d2e90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5a90614193565b8015611da75780601f10611d7c57610100808354040283529160200191611da7565b820191906000526020600020905b815481529060010190602001808311611d8a57829003601f168201915b505050505081565b600181565b611dc6611dbf6125eb565b8383612b9d565b5050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e1b61256d565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611e419061429b565b60006040518083038185875af1925050503d8060008114611e7e576040519150601f19603f3d011682016040523d82523d6000602084013e611e83565b606091505b5050905080611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe906142fc565b60405180910390fd5b50565b600c6020528060005260406000206000915090505481565b600a6020528060005260406000206000915054906101000a900460ff1681565b66f523226980800081565b600581565b66f523226980800081565b6000806000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401611f7d9190613fa0565b602060405180830381865afa158015611f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbe919061474f565b118061206557506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016120229190613fa0565b602060405180830381865afa15801561203f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612063919061474f565b115b8061210b57506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016120c89190613fa0565b602060405180830381865afa1580156120e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612109919061474f565b115b806121b357506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e8560006040518363ffffffff1660e01b8152600401612170929190614c73565b602060405180830381865afa15801561218d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b1919061474f565b115b156121bd57600190505b80915050919050565b6121ce61256d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090505481565b61232f6125eb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061237557506123748561236f6125eb565b61227b565b5b6123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab9061438e565b60405180910390fd5b6123c18585858585612d09565b5050505050565b6123d061256d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690614d0e565b60405180910390fd5b61244881612ad7565b50565b600860159054906101000a900460ff1681565b600081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea90614da0565b60405180910390fd5b6125008160006001612fa4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125756125eb565b73ffffffffffffffffffffffffffffffffffffffff16612593611c47565b73ffffffffffffffffffffffffffffffffffffffff16146125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090614e0c565b60405180910390fd5b565b600033905090565b8151835114612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e90614e9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269d90614f30565b60405180910390fd5b60006126b06125eb565b90506126c08187878787876131ea565b60005b84518110156128715760008582815181106126e1576126e06141c4565b5b602002602001015190506000858381518110612700576126ff6141c4565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614fc2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612856919061441a565b925050819055505050508061286a90614222565b90506126c3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516128e8929190614fe2565b60405180910390a46128fe8187878787876131f2565b61290c8187878787876131fa565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a9061508b565b60405180910390fd5b600061298d6125eb565b9050600061299a856133d1565b905060006129a7856133d1565b90506129b8836000898585896131ea565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a17919061441a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612a959291906150ab565b60405180910390a4612aac836000898585896131f2565b612abb8360008989898961344b565b50505050505050565b8060029081612ad39190615276565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c02906153ba565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cfc91906137f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f90614f30565b60405180910390fd5b6000612d826125eb565b90506000612d8f856133d1565b90506000612d9c856133d1565b9050612dac8389898585896131ea565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3a90614fc2565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef8919061441a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612f759291906150ab565b60405180910390a4612f8b848a8a86868a6131f2565b612f99848a8a8a8a8a61344b565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a9061544c565b60405180910390fd5b600061301d6125eb565b9050600061302a846133d1565b90506000613037846133d1565b9050613057838760008585604051806020016040528060008152506131ea565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156130ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e5906154de565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516131bb9291906150ab565b60405180910390a46131e1848860008686604051806020016040528060008152506131f2565b50505050505050565b505050505050565b505050505050565b6132198473ffffffffffffffffffffffffffffffffffffffff16613622565b156133c9578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161325f959493929190615553565b6020604051808303816000875af192505050801561329b57506040513d601f19601f8201168201806040525081019061329891906155d0565b60015b613340576132a761560a565b806308c379a00361330357506132bb61562c565b806132c65750613305565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa91906138fb565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133379061572e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146133c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133be906157c0565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156133f0576133ef613922565b5b60405190808252806020026020018201604052801561341e5781602001602082028036833780820191505090505b5090508281600081518110613436576134356141c4565b5b60200260200101818152505080915050919050565b61346a8473ffffffffffffffffffffffffffffffffffffffff16613622565b1561361a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016134b09594939291906157e0565b6020604051808303816000875af19250505080156134ec57506040513d601f19601f820116820180604052508101906134e991906155d0565b60015b613591576134f861560a565b806308c379a003613554575061350c61562c565b806135175750613556565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354b91906138fb565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135889061572e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360f906157c0565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061368482613659565b9050919050565b61369481613679565b811461369f57600080fd5b50565b6000813590506136b18161368b565b92915050565b6000819050919050565b6136ca816136b7565b81146136d557600080fd5b50565b6000813590506136e7816136c1565b92915050565b600080604083850312156137045761370361364f565b5b6000613712858286016136a2565b9250506020613723858286016136d8565b9150509250929050565b613736816136b7565b82525050565b6000602082019050613751600083018461372d565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61378c81613757565b811461379757600080fd5b50565b6000813590506137a981613783565b92915050565b6000602082840312156137c5576137c461364f565b5b60006137d38482850161379a565b91505092915050565b60008115159050919050565b6137f1816137dc565b82525050565b600060208201905061380c60008301846137e8565b92915050565b61381b816137dc565b811461382657600080fd5b50565b60008135905061383881613812565b92915050565b6000602082840312156138545761385361364f565b5b600061386284828501613829565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138a557808201518184015260208101905061388a565b60008484015250505050565b6000601f19601f8301169050919050565b60006138cd8261386b565b6138d78185613876565b93506138e7818560208601613887565b6138f0816138b1565b840191505092915050565b6000602082019050818103600083015261391581846138c2565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61395a826138b1565b810181811067ffffffffffffffff8211171561397957613978613922565b5b80604052505050565b600061398c613645565b90506139988282613951565b919050565b600067ffffffffffffffff8211156139b8576139b7613922565b5b602082029050602081019050919050565b600080fd5b60006139e16139dc8461399d565b613982565b90508083825260208201905060208402830185811115613a0457613a036139c9565b5b835b81811015613a2d5780613a1988826136d8565b845260208401935050602081019050613a06565b5050509392505050565b600082601f830112613a4c57613a4b61391d565b5b8135613a5c8482602086016139ce565b91505092915050565b600060208284031215613a7b57613a7a61364f565b5b600082013567ffffffffffffffff811115613a9957613a98613654565b5b613aa584828501613a37565b91505092915050565b600060208284031215613ac457613ac361364f565b5b6000613ad2848285016136d8565b91505092915050565b600060208284031215613af157613af061364f565b5b6000613aff848285016136a2565b91505092915050565b600080fd5b600067ffffffffffffffff821115613b2857613b27613922565b5b613b31826138b1565b9050602081019050919050565b82818337600083830152505050565b6000613b60613b5b84613b0d565b613982565b905082815260208101848484011115613b7c57613b7b613b08565b5b613b87848285613b3e565b509392505050565b600082601f830112613ba457613ba361391d565b5b8135613bb4848260208601613b4d565b91505092915050565b600080600080600060a08688031215613bd957613bd861364f565b5b6000613be7888289016136a2565b9550506020613bf8888289016136a2565b945050604086013567ffffffffffffffff811115613c1957613c18613654565b5b613c2588828901613a37565b935050606086013567ffffffffffffffff811115613c4657613c45613654565b5b613c5288828901613a37565b925050608086013567ffffffffffffffff811115613c7357613c72613654565b5b613c7f88828901613b8f565b9150509295509295909350565b600067ffffffffffffffff821115613ca757613ca6613922565b5b602082029050602081019050919050565b6000613ccb613cc684613c8c565b613982565b90508083825260208201905060208402830185811115613cee57613ced6139c9565b5b835b81811015613d175780613d0388826136a2565b845260208401935050602081019050613cf0565b5050509392505050565b600082601f830112613d3657613d3561391d565b5b8135613d46848260208601613cb8565b91505092915050565b60008060408385031215613d6657613d6561364f565b5b600083013567ffffffffffffffff811115613d8457613d83613654565b5b613d9085828601613d21565b925050602083013567ffffffffffffffff811115613db157613db0613654565b5b613dbd85828601613a37565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dfc816136b7565b82525050565b6000613e0e8383613df3565b60208301905092915050565b6000602082019050919050565b6000613e3282613dc7565b613e3c8185613dd2565b9350613e4783613de3565b8060005b83811015613e78578151613e5f8882613e02565b9750613e6a83613e1a565b925050600181019050613e4b565b5085935050505092915050565b60006020820190508181036000830152613e9f8184613e27565b905092915050565b600067ffffffffffffffff821115613ec257613ec1613922565b5b613ecb826138b1565b9050602081019050919050565b6000613eeb613ee684613ea7565b613982565b905082815260208101848484011115613f0757613f06613b08565b5b613f12848285613b3e565b509392505050565b600082601f830112613f2f57613f2e61391d565b5b8135613f3f848260208601613ed8565b91505092915050565b600060208284031215613f5e57613f5d61364f565b5b600082013567ffffffffffffffff811115613f7c57613f7b613654565b5b613f8884828501613f1a565b91505092915050565b613f9a81613679565b82525050565b6000602082019050613fb56000830184613f91565b92915050565b60008060408385031215613fd257613fd161364f565b5b6000613fe0858286016136a2565b9250506020613ff185828601613829565b9150509250929050565b600080604083850312156140125761401161364f565b5b6000614020858286016136a2565b9250506020614031858286016136a2565b9150509250929050565b600080600080600060a086880312156140575761405661364f565b5b6000614065888289016136a2565b9550506020614076888289016136a2565b9450506040614087888289016136d8565b9350506060614098888289016136d8565b925050608086013567ffffffffffffffff8111156140b9576140b8613654565b5b6140c588828901613b8f565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061412e602a83613876565b9150614139826140d2565b604082019050919050565b6000602082019050818103600083015261415d81614121565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141ab57607f821691505b6020821081036141be576141bd614164565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061422d826136b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361425f5761425e6141f3565b5b600182019050919050565b600081905092915050565b50565b600061428560008361426a565b915061429082614275565b600082019050919050565b60006142a682614278565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b60006142e6601083613876565b91506142f1826142b0565b602082019050919050565b60006020820190508181036000830152614315816142d9565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000614378602f83613876565b91506143838261431c565b604082019050919050565b600060208201905081810360008301526143a78161436b565b9050919050565b7f57686974656c69737420506861736520312073616c6520697320706175736564600082015250565b60006143e4602083613876565b91506143ef826143ae565b602082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b6000614425826136b7565b9150614430836136b7565b9250828201905080821115614448576144476141f3565b5b92915050565b7f42616e616e6f733a2045786365656420574c206d617820737570706c79000000600082015250565b6000614484601d83613876565b915061448f8261444e565b602082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b6000815190506144c98161368b565b92915050565b6000602082840312156144e5576144e461364f565b5b60006144f3848285016144ba565b91505092915050565b7f4d757374206265204f776e6572206f66204456444120544f4b454e204944207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b6000614558602683613876565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b6000614599826136b7565b91506145a4836136b7565b92508282026145b2816136b7565b915082820484148315176145c9576145c86141f3565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614606601683613876565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f4456444120546f6b656e20494420426c61636b6c697374656400000000000000600082015250565b6000614672601983613876565b915061467d8261463c565b602082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f42616e616e6f20616c726561647920636c61696d65642077697468207468697360008201527f204456444120546f6b656e2049442e0000000000000000000000000000000000602082015250565b6000614704602f83613876565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b600081519050614749816136c1565b92915050565b6000602082840312156147655761476461364f565b5b60006147738482850161473a565b91505092915050565b7f42616e616e613a20457863656564206d617820737570706c7900000000000000600082015250565b60006147b2601983613876565b91506147bd8261477c565b602082019050919050565b600060208201905081810360008301526147e1816147a5565b9050919050565b7f57686974656c69737420506861736520322073616c6520697320706175736564600082015250565b600061481e602083613876565b9150614829826147e8565b602082019050919050565b6000602082019050818103600083015261484d81614811565b9050919050565b7f42616e616e6f733a20457863656564206d617820737570706c79000000000000600082015250565b600061488a601a83613876565b915061489582614854565b602082019050919050565b600060208201905081810360008301526148b98161487d565b9050919050565b7f52657175697265206174206c656173742031204e46542066726f6d20476f644860008201527f617465734e46546565732065636f73797374656d20283120476f64486174657360208201527f206f72203120417065206f7220312042616e616e6f206f722031204456444129604082015250565b6000614942606083613876565b915061494d826148c0565b606082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006149ae601383613876565b91506149b982614978565b602082019050919050565b600060208201905081810360008301526149dd816149a1565b9050919050565b7f416c7265616479206d696e74656420352042616e616e6f730000000000000000600082015250565b6000614a1a601883613876565b9150614a25826149e4565b602082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614aac602983613876565b9150614ab782614a50565b604082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000614b18600683613876565b9150614b2382614ae2565b602082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b6000614b61614b5c8461399d565b613982565b90508083825260208201905060208402830185811115614b8457614b836139c9565b5b835b81811015614bad5780614b99888261473a565b845260208401935050602081019050614b86565b5050509392505050565b600082601f830112614bcc57614bcb61391d565b5b8151614bdc848260208601614b4e565b91505092915050565b600060208284031215614bfb57614bfa61364f565b5b600082015167ffffffffffffffff811115614c1957614c18613654565b5b614c2584828501614bb7565b91505092915050565b6000819050919050565b6000819050919050565b6000614c5d614c58614c5384614c2e565b614c38565b6136b7565b9050919050565b614c6d81614c42565b82525050565b6000604082019050614c886000830185613f91565b614c956020830184614c64565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cf8602683613876565b9150614d0382614c9c565b604082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f496e76616c69642063616c6c65722c206d7573742062652063616c6c6564206660008201527f726f6d20537570657242616e616e6120536d61727420436f6e74726163740000602082015250565b6000614d8a603e83613876565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614df6602083613876565b9150614e0182614dc0565b602082019050919050565b60006020820190508181036000830152614e2581614de9565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614e88602883613876565b9150614e9382614e2c565b604082019050919050565b60006020820190508181036000830152614eb781614e7b565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f1a602583613876565b9150614f2582614ebe565b604082019050919050565b60006020820190508181036000830152614f4981614f0d565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614fac602a83613876565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b60006040820190508181036000830152614ffc8185613e27565b905081810360208301526150108184613e27565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615075602183613876565b915061508082615019565b604082019050919050565b600060208201905081810360008301526150a481615068565b9050919050565b60006040820190506150c0600083018561372d565b6150cd602083018461372d565b9392505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026151367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826150f9565b61514086836150f9565b95508019841693508086168417925050509392505050565b600061517361516e615169846136b7565b614c38565b6136b7565b9050919050565b6000819050919050565b61518d83615158565b6151a16151998261517a565b848454615106565b825550505050565b600090565b6151b66151a9565b6151c1818484615184565b505050565b5b818110156151e5576151da6000826151ae565b6001810190506151c7565b5050565b601f82111561522a576151fb816150d4565b615204846150e9565b81016020851015615213578190505b61522761521f856150e9565b8301826151c6565b50505b505050565b600082821c905092915050565b600061524d6000198460080261522f565b1980831691505092915050565b6000615266838361523c565b9150826002028217905092915050565b61527f8261386b565b67ffffffffffffffff81111561529857615297613922565b5b6152a28254614193565b6152ad8282856151e9565b600060209050601f8311600181146152e057600084156152ce578287015190505b6152d8858261525a565b865550615340565b601f1984166152ee866150d4565b60005b82811015615316578489015182556001820191506020850194506020810190506152f1565b86831015615333578489015161532f601f89168261523c565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006153a4602983613876565b91506153af82615348565b604082019050919050565b600060208201905081810360008301526153d381615397565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615436602383613876565b9150615441826153da565b604082019050919050565b6000602082019050818103600083015261546581615429565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006154c8602483613876565b91506154d38261546c565b604082019050919050565b600060208201905081810360008301526154f7816154bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615525826154fe565b61552f8185615509565b935061553f818560208601613887565b615548816138b1565b840191505092915050565b600060a0820190506155686000830188613f91565b6155756020830187613f91565b81810360408301526155878186613e27565b9050818103606083015261559b8185613e27565b905081810360808301526155af818461551a565b90509695505050505050565b6000815190506155ca81613783565b92915050565b6000602082840312156155e6576155e561364f565b5b60006155f4848285016155bb565b91505092915050565b60008160e01c9050919050565b600060033d11156156295760046000803e6156266000516155fd565b90505b90565b600060443d106156b95761563e613645565b60043d036004823e80513d602482011167ffffffffffffffff821117156156665750506156b9565b808201805167ffffffffffffffff81111561568457505050506156b9565b80602083010160043d0385018111156156a15750505050506156b9565b6156b082602001850186613951565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615718603483613876565b9150615723826156bc565b604082019050919050565b600060208201905081810360008301526157478161570b565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006157aa602883613876565b91506157b58261574e565b604082019050919050565b600060208201905081810360008301526157d98161579d565b9050919050565b600060a0820190506157f56000830188613f91565b6158026020830187613f91565b61580f604083018661372d565b61581c606083018561372d565b818103608083015261582e818461551a565b9050969550505050505056fea2646970667358221220466b6e70b4f7e005860114af47e5b4c3cf85ffd516648f0a263c4e7ab2b3d4cd64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d576f6b6d78706e616939765868487a486a67776b6238747a6d4d6d444671656d5a527171514d474561616b752f526f7474656e42616e616e6f2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e526f7474656e2042616e616e6f7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065254424e4e4f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmWokmxpnai9vXhHzHjgwkb8tzmMmDFqemZRqqQMGEaaku/RottenBanano.json
Arg [1] : _name (string): Rotten Bananos
Arg [2] : _symbol (string): RTBNNO
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000047
Arg [4] : 697066733a2f2f516d576f6b6d78706e616939765868487a486a67776b623874
Arg [5] : 7a6d4d6d444671656d5a527171514d474561616b752f526f7474656e42616e61
Arg [6] : 6e6f2e6a736f6e00000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [8] : 526f7474656e2042616e616e6f73000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 5254424e4e4f0000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.