ERC-1155
NFT
Overview
Max Total Supply
7,659
Holders
6,961
Market
Volume (24H)
0.0019 ETH
Min Price (24H)
$4.84 @ 0.001900 ETH
Max Price (24H)
$4.84 @ 0.001900 ETH
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Coinage
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; /** * @dev Using strings in revert - despite the higher gas its the the best way to extract the error message on the the frontend. */ error WithdrawFailed(); contract Coinage is Ownable, ERC1155Supply, ReentrancyGuard { using Strings for uint256; using ECDSA for bytes32; struct TokenType { uint256 id; uint256 price; uint256 supply; } event networkMintSuccess( uint256 coinageUserId, address minterWalletAddress, uint256 networkGroupId ); event caucusMintSuccess(address minter); event subscriberMintSuccess(address minter); address private signerAddress = 0x569E2DFfDCd7F5F78742E7BF5bCdBF23e0d0Fb7f; address private withdrawalAddress; string private baseURI; uint256 public maxNetworkGroupCount = 500; address private burnContract; mapping(uint256 => uint256) public _networkGroups; mapping(string => bool) public _saleActive; mapping(string => bool) private _usedReferralCodes; /** * @dev * Need to update the caucus price using `updateToken` - 999 is placeholder */ TokenType Network = TokenType(1, 1 ether, 1000); TokenType Caucus = TokenType(2, 999 ether, 9000); TokenType Subscriber = TokenType(3, 0 ether, 1); event SetBaseURI(string indexed _baseURI); constructor(string memory _baseUri, address _withdrawlAddress) ERC1155(_baseUri) { withdrawalAddress = _withdrawlAddress; baseURI = _baseUri; _saleActive["network"] = true; _saleActive["caucus"] = false; _saleActive["subscriber"] = false; } /** * @dev Match Signer * Used to make sure the transaction was signed by our admin wallet */ function matchAddresSigner(bytes32 hash, bytes memory signature) private view returns (bool) { bytes32 signedHash = keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", hash) ); return signedHash.recover(signature) == signerAddress; } /** * @dev Update Price / Supply * Unsure of what caucus price will be when launches so setting the ability to update it */ function updateToken( uint256 id, uint256 price, uint256 supply ) external onlyOwner { if (id == Network.id) { Network.price = price; Network.supply = supply; } if (id == Caucus.id) { Caucus.price = price; Caucus.supply = supply; } } /** * @dev Owner Mint * Mint Free Tokens to an address */ function ownerMint( address to, uint256 amount, uint256 id ) external onlyOwner { _mint(to, id, amount, ""); } /** * @dev Network Mint * Mint Token ID 1 for network mint */ function networkMint( bytes32 hash, bytes memory signature, string memory referralCode, uint256 networkGroupId, uint256 coinageUserId ) external payable { if (!_saleActive["network"]) revert("Network sale not active"); if (totalSupply(Network.id) == Network.supply) revert("Sold Out"); if (_networkGroups[networkGroupId] >= maxNetworkGroupCount) revert("Max Network Group Size"); uint256 ownerTokenCount = balanceOf(msg.sender, Network.id); if (ownerTokenCount > 0) { revert("Already Purchased"); } if (!matchAddresSigner(hash, signature)) { revert("Signature Error"); } if (_usedReferralCodes[referralCode]) { revert("Referral Code Used"); } bytes32 msgHash = keccak256( abi.encodePacked( msg.sender, referralCode, Strings.toString(networkGroupId), Strings.toString(coinageUserId) ) ); if (hash != msgHash) { revert("Hash Error"); } if (msg.value != Network.price) revert("Incorrect ETH Sent"); _usedReferralCodes[referralCode] = true; _networkGroups[networkGroupId] += 1; _mint(msg.sender, Network.id, 1, ""); emit networkMintSuccess(coinageUserId, msg.sender, networkGroupId); } /** * @dev Caucus Mint * Mint Token ID 2 for caucus mint */ function caucusMint(bytes32 hash, bytes memory signature) external payable { if (!_saleActive["caucus"]) revert("Caucus sale not active"); if (totalSupply(Caucus.id) == Caucus.supply) revert("Sold Out"); uint256 ownerTokenCount = balanceOf(msg.sender, Caucus.id); if (ownerTokenCount > 0) { revert("Already Purchased"); } if (!matchAddresSigner(hash, signature)) { revert("Signature Error"); } bytes32 msgHash = keccak256( abi.encodePacked(msg.sender, "Minting Caucus") ); if (hash != msgHash) { revert("Signature Error"); } if (msg.value != Caucus.price) revert("Incorrect ETH Sent"); _mint(msg.sender, Caucus.id, 1, ""); emit caucusMintSuccess(msg.sender); } /** * @dev Subscriber Mint * Mint Token ID 3 for caucus mint (free) */ function subscriberMint() external { if (!_saleActive["subscriber"]) revert("Subscriber sale not active"); uint256 ownerTokenCount = balanceOf(msg.sender, Subscriber.id); if (ownerTokenCount > 0) { revert("Already Purchased"); } _mint(msg.sender, Subscriber.id, 1, ""); emit subscriberMintSuccess(msg.sender); } function setBurnContractAddress(address _burnAddress) external onlyOwner { burnContract = _burnAddress; } function burnTokens( address burnTokenAddress, uint256 qty, uint256 id ) external { if (qty > balanceOf(burnTokenAddress, id)) { revert("Trying to burn more than owned"); } if (id == Subscriber.id) { revert("Can't burn subscriber tokens"); } if (burnContract == address(0)) { revert("Burning not active"); } if (msg.sender != burnContract) { revert("Invalid burn contract address"); } _burn(burnTokenAddress, id, qty); } // Withdrawal Functions function withdraw() external onlyOwner nonReentrant { (bool success, ) = payable(withdrawalAddress).call{ value: address(this).balance }(""); if (!success) revert WithdrawFailed(); } function withdrawTokens(IERC20 token) public onlyOwner nonReentrant { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // Get Functions function getNetworkCount(uint256 networkId) public view returns (uint256) { return _networkGroups[networkId]; } // Set Functions function setWithdrawalAddress(address _withdrawalAddress) external onlyOwner { withdrawalAddress = _withdrawalAddress; } function setSignerWallet(address _signerWalletAddress) external onlyOwner { signerAddress = _signerWalletAddress; } function setMaxNetworkGroupCount(uint256 _newCount) external onlyOwner { maxNetworkGroupCount = _newCount; } function updateBaseUri(string memory _baseURI) external onlyOwner { baseURI = _baseURI; emit SetBaseURI(_baseURI); } function updateSaleActive( bool network, bool caucus, bool subscriber ) external onlyOwner { _saleActive["network"] = network; _saleActive["caucus"] = caucus; _saleActive["subscriber"] = subscriber; } // Retturns the uri for each token function uri(uint256 tokenId) public view override returns (string memory) { return string.concat(baseURI, tokenId.toString()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); 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}. * * 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` * * 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}. * * 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 a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @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.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"_withdrawlAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"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":"string","name":"_baseURI","type":"string"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"caucusMintSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"coinageUserId","type":"uint256"},{"indexed":false,"internalType":"address","name":"minterWalletAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"networkGroupId","type":"uint256"}],"name":"networkMintSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"subscriberMintSuccess","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_networkGroups","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"_saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"burnTokenAddress","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"caucusMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"networkId","type":"uint256"}],"name":"getNetworkCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNetworkGroupCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"referralCode","type":"string"},{"internalType":"uint256","name":"networkGroupId","type":"uint256"},{"internalType":"uint256","name":"coinageUserId","type":"uint256"}],"name":"networkMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerMint","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":"address","name":"_burnAddress","type":"address"}],"name":"setBurnContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCount","type":"uint256"}],"name":"setMaxNetworkGroupCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerWalletAddress","type":"address"}],"name":"setSignerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawalAddress","type":"address"}],"name":"setWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"subscriberMint","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"network","type":"bool"},{"internalType":"bool","name":"caucus","type":"bool"},{"internalType":"bool","name":"subscriber","type":"bool"}],"name":"updateSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"updateToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600680546001600160a01b03191673569e2dffdcd7f5f78742e7bf5bcdbf23e0d0fb7f1790556101f460095560016080819052670de0b6b3a764000060a08190526103e860c0819052600e839055600f91909155601055600260e0819052683627e8f712373c00006101008190526123286101208190526011929092556012556013556101a060405260036101408190526000610160819052610180839052601491909155601555601655348015620000b757600080fd5b5060405162003da238038062003da2833981016040819052620000da91620002fc565b81620000e633620001ba565b620000f1816200020a565b506001600555600780546001600160a01b0319166001600160a01b03831617905581516200012790600890602085019062000223565b506001600c6040516200014790666e6574776f726b60c81b815260070190565b90815260408051918290036020018220805493151560ff199485161790556563617563757360d01b8252600c6006830181905281519283900360260183208054851690556939bab139b1b934b132b960b11b8352600a8301525190819003602a01902080549091169055506200042a9050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516200021f90600390602084019062000223565b5050565b8280546200023190620003ed565b90600052602060002090601f016020900481019282620002555760008555620002a0565b82601f106200027057805160ff1916838001178555620002a0565b82800160010185558215620002a0579182015b82811115620002a057825182559160200191906001019062000283565b50620002ae929150620002b2565b5090565b5b80821115620002ae5760008155600101620002b3565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b0381168114620002f757600080fd5b919050565b600080604083850312156200031057600080fd5b82516001600160401b03808211156200032857600080fd5b818501915085601f8301126200033d57600080fd5b815181811115620003525762000352620002c9565b604051601f8201601f19908116603f011681019083821181831017156200037d576200037d620002c9565b816040528281526020935088848487010111156200039a57600080fd5b600091505b82821015620003be57848201840151818301850152908301906200039f565b82821115620003d05760008484830101525b9550620003e2915050858201620002df565b925050509250929050565b600181811c908216806200040257607f821691505b602082108114156200042457634e487b7160e01b600052602260045260246000fd5b50919050565b613968806200043a6000396000f3fe6080604052600436106101d75760003560e01c8063703bd7dc11610102578063b8c27f7411610095578063e8ebeddb11610064578063e8ebeddb14610582578063e985e9c5146105af578063f242432a146105f8578063f2fde38b1461061857600080fd5b8063b8c27f7414610502578063bd85b03914610515578063d2039bf314610542578063e0aeb7c11461056257600080fd5b80638e29aa91116100d15780638e29aa911461049a57806393b0ff6c146104ad578063a22cb465146104c2578063aa038033146104e257600080fd5b8063703bd7dc14610410578063715018a61461043d57806381cdf766146104525780638da5cb5b1461047257600080fd5b80632eb2c2d61161017a578063492400c911610149578063492400c91461037457806349df728c146103945780634e1273f4146103b45780634f558e79146103e157600080fd5b80632eb2c2d6146102ff578063388b9fe01461031f57806339f7e37f1461033f5780633ccfd60b1461035f57600080fd5b806305ce59f9116101b657806305ce59f9146102555780630e89341c1461029057806317c1eda6146102bd57806321b8092e146102df57600080fd5b8062fdd58e146101dc57806301ffc9a71461020f5780630496f3c61461023f575b600080fd5b3480156101e857600080fd5b506101fc6101f7366004612e6f565b610638565b6040519081526020015b60405180910390f35b34801561021b57600080fd5b5061022f61022a366004612eb1565b6106e3565b6040519015158152602001610206565b34801561024b57600080fd5b506101fc60095481565b34801561026157600080fd5b5061022f610270366004612f8c565b8051602081830181018051600c8252928201919093012091525460ff1681565b34801561029c57600080fd5b506102b06102ab366004612fc1565b610780565b6040516102069190613036565b3480156102c957600080fd5b506102dd6102d8366004612fc1565b6107b4565b005b3480156102eb57600080fd5b506102dd6102fa366004613049565b610801565b34801561030b57600080fd5b506102dd61031a3660046130fb565b610878565b34801561032b57600080fd5b506102dd61033a3660046131a9565b61091a565b34801561034b57600080fd5b506102dd61035a366004612f8c565b610982565b34801561036b57600080fd5b506102dd610a1f565b34801561038057600080fd5b506102dd61038f3660046131ec565b610b54565b3480156103a057600080fd5b506102dd6103af366004613049565b610c39565b3480156103c057600080fd5b506103d46103cf366004613237565b610df4565b604051610206919061333f565b3480156103ed57600080fd5b5061022f6103fc366004612fc1565b600090815260046020526040902054151590565b34801561041c57600080fd5b506101fc61042b366004612fc1565b6000908152600b602052604090205490565b34801561044957600080fd5b506102dd610f32565b34801561045e57600080fd5b506102dd61046d366004613049565b610f86565b34801561047e57600080fd5b506000546040516001600160a01b039091168152602001610206565b6102dd6104a8366004613352565b610ffd565b3480156104b957600080fd5b506102dd6112a7565b3480156104ce57600080fd5b506102dd6104dd36600461338f565b6113cb565b3480156104ee57600080fd5b506102dd6104fd3660046133c8565b6113da565b6102dd6105103660046133f4565b61144d565b34801561052157600080fd5b506101fc610530366004612fc1565b60009081526004602052604090205490565b34801561054e57600080fd5b506102dd61055d366004613049565b611826565b34801561056e57600080fd5b506102dd61057d3660046131a9565b61189d565b34801561058e57600080fd5b506101fc61059d366004612fc1565b600b6020526000908152604090205481565b3480156105bb57600080fd5b5061022f6105ca366004613473565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b34801561060457600080fd5b506102dd6106133660046134a1565b611a05565b34801561062457600080fd5b506102dd610633366004613049565b611aa0565b60006001600160a01b0383166106bb5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167fd9b67a2600000000000000000000000000000000000000000000000000000000148061074657506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061077a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600861078d83611b70565b60405160200161079e929190613561565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146107fc5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b600955565b6000546001600160a01b031633146108495760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b038516331480610894575061089485336105ca565b6109065760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016106b2565b6109138585858585611caa565b5050505050565b6000546001600160a01b031633146109625760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b61097d83828460405180602001604052806000815250611f2e565b505050565b6000546001600160a01b031633146109ca5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b80516109dd906008906020840190612dc1565b50806040516109ec9190613608565b604051908190038120907f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa90600090a250565b6000546001600160a01b03163314610a675760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b60026005541415610aba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b60026005556007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610b0c576040519150601f19603f3d011682016040523d82523d6000602084013e610b11565b606091505b5050905080610b4c576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600555565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b82600c604051610bb990666e6574776f726b60c81b815260070190565b90815260408051918290036020018220805493151560ff199485161790556563617563757360d01b8252600c6006830181905281519283900360260183208054961515968516969096179095556939bab139b1b934b132b960b11b8252600a820194909452925192839003602a0190922080549115159190921617905550565b6000546001600160a01b03163314610c815760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b60026005541415610cd45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b60026005556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d9190613624565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dea919061363d565b5050600160055550565b60608151835114610e6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016106b2565b6000835167ffffffffffffffff811115610e8957610e89612ed5565b604051908082528060200260200182016040528015610eb2578160200160208202803683370190505b50905060005b8451811015610f2a57610efd858281518110610ed657610ed661365a565b6020026020010151858381518110610ef057610ef061365a565b6020026020010151610638565b828281518110610f0f57610f0f61365a565b6020908102919091010152610f2381613686565b9050610eb8565b509392505050565b6000546001600160a01b03163314610f7a5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b610f84600061206f565b565b6000546001600160a01b03163314610fce5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040516563617563757360d01b8152600c906006019081526040519081900360200190205460ff166110715760405162461bcd60e51b815260206004820152601660248201527f4361756375732073616c65206e6f74206163746976650000000000000000000060448201526064016106b2565b60135460115460009081526004602052604090205414156110bf5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106b2565b60006110d033601160000154610638565b905080156111145760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e48141d5c98da185cd959607a1b60448201526064016106b2565b61111e83836120cc565b61115c5760405162461bcd60e51b815260206004820152600f60248201526e29b4b3b730ba3ab9329022b93937b960891b60448201526064016106b2565b6040516bffffffffffffffffffffffff193360601b1660208201527f4d696e74696e672043617563757300000000000000000000000000000000000060348201526000906042016040516020818303038152906040528051906020012090508084146111fc5760405162461bcd60e51b815260206004820152600f60248201526e29b4b3b730ba3ab9329022b93937b960891b60448201526064016106b2565b601254341461124d5760405162461bcd60e51b815260206004820152601260248201527f496e636f7272656374204554482053656e74000000000000000000000000000060448201526064016106b2565b61126e33601160000154600160405180602001604052806000815250611f2e565b6040513381527fbd6a34edf9b122cae67f18d3d8c397ea7d36a696994932ded6b77b092fcef7859060200160405180910390a150505050565b6040516939bab139b1b934b132b960b11b8152600c90600a019081526040519081900360200190205460ff1661131f5760405162461bcd60e51b815260206004820152601a60248201527f537562736372696265722073616c65206e6f742061637469766500000000000060448201526064016106b2565b600061133033601460000154610638565b905080156113745760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e48141d5c98da185cd959607a1b60448201526064016106b2565b61139533601460000154600160405180602001604052806000815250611f2e565b6040513381527fb5addf0b18e8982982cfd550fedb5a87d6071e1a350f3a1f4cf38dac37b6c8ff9060200160405180910390a150565b6113d6338383612147565b5050565b6000546001600160a01b031633146114225760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b600e5483141561143757600f82905560108190555b60115483141561097d5760129190915560135550565b604051666e6574776f726b60c81b8152600c906007019081526040519081900360200190205460ff166114c25760405162461bcd60e51b815260206004820152601760248201527f4e6574776f726b2073616c65206e6f742061637469766500000000000000000060448201526064016106b2565b601054600e5460009081526004602052604090205414156115105760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106b2565b6009546000838152600b60205260409020541061156f5760405162461bcd60e51b815260206004820152601660248201527f4d6178204e6574776f726b2047726f75702053697a650000000000000000000060448201526064016106b2565b600061158033600e60000154610638565b905080156115c45760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e48141d5c98da185cd959607a1b60448201526064016106b2565b6115ce86866120cc565b61160c5760405162461bcd60e51b815260206004820152600f60248201526e29b4b3b730ba3ab9329022b93937b960891b60448201526064016106b2565b600d8460405161161c9190613608565b9081526040519081900360200190205460ff161561167c5760405162461bcd60e51b815260206004820152601260248201527f526566657272616c20436f64652055736564000000000000000000000000000060448201526064016106b2565b6000338561168986611b70565b61169286611b70565b6040516020016116a594939291906136a1565b60405160208183030381529060405280519060200120905080871461170c5760405162461bcd60e51b815260206004820152600a60248201527f48617368204572726f720000000000000000000000000000000000000000000060448201526064016106b2565b600f54341461175d5760405162461bcd60e51b815260206004820152601260248201527f496e636f7272656374204554482053656e74000000000000000000000000000060448201526064016106b2565b6001600d8660405161176f9190613608565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506001600b600086815260200190815260200160002060008282546117b89190613706565b9091555050600e546040805160208101909152600081526117dd913391600190611f2e565b604080518481523360208201529081018590527f470338618ce6dc2b53a903611763fa89ba40d37faf06a8c4da1bbf205aeda1c69060600160405180910390a150505050505050565b6000546001600160a01b0316331461186e5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6118a78382610638565b8211156118f65760405162461bcd60e51b815260206004820152601e60248201527f547279696e6720746f206275726e206d6f7265207468616e206f776e6564000060448201526064016106b2565b6014548114156119485760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206275726e207375627363726962657220746f6b656e730000000060448201526064016106b2565b600a546001600160a01b03166119a05760405162461bcd60e51b815260206004820152601260248201527f4275726e696e67206e6f7420616374697665000000000000000000000000000060448201526064016106b2565b600a546001600160a01b031633146119fa5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206275726e20636f6e7472616374206164647265737300000060448201526064016106b2565b61097d83828461223c565b6001600160a01b038516331480611a215750611a2185336105ca565b611a935760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106b2565b6109138585858585612403565b6000546001600160a01b03163314611ae85760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b6001600160a01b038116611b645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b2565b611b6d8161206f565b50565b606081611bb057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611bda5780611bc481613686565b9150611bd39050600a83613734565b9150611bb4565b60008167ffffffffffffffff811115611bf557611bf5612ed5565b6040519080825280601f01601f191660200182016040528015611c1f576020820181803683370190505b5090505b8415611ca257611c34600183613748565b9150611c41600a8661375f565b611c4c906030613706565b60f81b818381518110611c6157611c6161365a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c9b600a86613734565b9450611c23565b949350505050565b8151835114611d215760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106b2565b6001600160a01b038416611d855760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b2565b33611d948187878787876125c0565b60005b8451811015611ec0576000858281518110611db457611db461365a565b602002602001015190506000858381518110611dd257611dd261365a565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611e665760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016106b2565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ea5908490613706565b9250508190555050505080611eb990613686565b9050611d97565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f10929190613773565b60405180910390a4611f2681878787878761274e565b505050505050565b6001600160a01b038416611faa5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b336000611fb6856128f4565b90506000611fc3856128f4565b9050611fd4836000898585896125c0565b60008681526001602090815260408083206001600160a01b038b16845290915281208054879290612006908490613706565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46120668360008989898961293f565b50505050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018390526000908190605c0160408051601f1981840301815291905280516020909101206006549091506001600160a01b03166121358285612a3b565b6001600160a01b031614949350505050565b816001600160a01b0316836001600160a01b031614156121cf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016106b2565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166122b85760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b3360006122c4846128f4565b905060006122d1846128f4565b90506122f1838760008585604051806020016040528060008152506125c0565b60008581526001602090815260408083206001600160a01b038a168452909152902054848110156123895760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106b2565b60008681526001602090815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052612066565b6001600160a01b0384166124675760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b2565b336000612473856128f4565b90506000612480856128f4565b90506124908389898585896125c0565b60008681526001602090815260408083206001600160a01b038c168452909152902054858110156125165760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016106b2565b60008781526001602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612555908490613706565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46125b5848a8a8a8a8a61293f565b505050505050505050565b6001600160a01b0385166126475760005b8351811015612645578281815181106125ec576125ec61365a565b60200260200101516004600086848151811061260a5761260a61365a565b60200260200101518152602001908152602001600020600082825461262f9190613706565b9091555061263e905081613686565b90506125d1565b505b6001600160a01b038416611f265760005b83518110156120665760008482815181106126755761267561365a565b6020026020010151905060008483815181106126935761269361365a565b602002602001015190506000600460008481526020019081526020016000205490508181101561272b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f7460448201527f616c537570706c7900000000000000000000000000000000000000000000000060648201526084016106b2565b6000928352600460205260409092209103905561274781613686565b9050612658565b6001600160a01b0384163b15611f265760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906127929089908990889088908890600401613798565b6020604051808303816000875af19250505080156127cd575060408051601f3d908101601f191682019092526127ca918101906137f6565b60015b612883576127d9613813565b806308c379a0141561281357506127ee61382f565b806127f95750612815565b8060405162461bcd60e51b81526004016106b29190613036565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016106b2565b6001600160e01b0319811663bc197c8160e01b146120665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016106b2565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061292e5761292e61365a565b602090810291909101015292915050565b6001600160a01b0384163b15611f265760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061298390899089908890889088906004016138b9565b6020604051808303816000875af19250505080156129be575060408051601f3d908101601f191682019092526129bb918101906137f6565b60015b6129ca576127d9613813565b6001600160e01b0319811663f23a6e6160e01b146120665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016106b2565b6000806000612a4a8585612a57565b91509150610f2a81612ac7565b600080825160411415612a8e5760208301516040840151606085015160001a612a8287828585612c82565b94509450505050612ac0565b825160401415612ab85760208301516040840151612aad868383612d6f565b935093505050612ac0565b506000905060025b9250929050565b6000816004811115612adb57612adb6138fc565b1415612ae45750565b6001816004811115612af857612af86138fc565b1415612b465760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b2565b6002816004811115612b5a57612b5a6138fc565b1415612ba85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106b2565b6003816004811115612bbc57612bbc6138fc565b1415612c155760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106b2565b6004816004811115612c2957612c296138fc565b1415611b6d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106b2565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612cb95750600090506003612d66565b8460ff16601b14158015612cd157508460ff16601c14155b15612ce25750600090506004612d66565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612d36573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612d5f57600060019250925050612d66565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681612da560ff86901c601b613706565b9050612db387828885612c82565b935093505050935093915050565b828054612dcd9061350a565b90600052602060002090601f016020900481019282612def5760008555612e35565b82601f10612e0857805160ff1916838001178555612e35565b82800160010185558215612e35579182015b82811115612e35578251825591602001919060010190612e1a565b50612e41929150612e45565b5090565b5b80821115612e415760008155600101612e46565b6001600160a01b0381168114611b6d57600080fd5b60008060408385031215612e8257600080fd5b8235612e8d81612e5a565b946020939093013593505050565b6001600160e01b031981168114611b6d57600080fd5b600060208284031215612ec357600080fd5b8135612ece81612e9b565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715612f1157612f11612ed5565b6040525050565b600082601f830112612f2957600080fd5b813567ffffffffffffffff811115612f4357612f43612ed5565b604051612f5a601f8301601f191660200182612eeb565b818152846020838601011115612f6f57600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215612f9e57600080fd5b813567ffffffffffffffff811115612fb557600080fd5b611ca284828501612f18565b600060208284031215612fd357600080fd5b5035919050565b60005b83811015612ff5578181015183820152602001612fdd565b83811115613004576000848401525b50505050565b60008151808452613022816020860160208601612fda565b601f01601f19169290920160200192915050565b602081526000612ece602083018461300a565b60006020828403121561305b57600080fd5b8135612ece81612e5a565b600067ffffffffffffffff82111561308057613080612ed5565b5060051b60200190565b600082601f83011261309b57600080fd5b813560206130a882613066565b6040516130b58282612eeb565b83815260059390931b85018201928281019150868411156130d557600080fd5b8286015b848110156130f057803583529183019183016130d9565b509695505050505050565b600080600080600060a0868803121561311357600080fd5b853561311e81612e5a565b9450602086013561312e81612e5a565b9350604086013567ffffffffffffffff8082111561314b57600080fd5b61315789838a0161308a565b9450606088013591508082111561316d57600080fd5b61317989838a0161308a565b9350608088013591508082111561318f57600080fd5b5061319c88828901612f18565b9150509295509295909350565b6000806000606084860312156131be57600080fd5b83356131c981612e5a565b95602085013595506040909401359392505050565b8015158114611b6d57600080fd5b60008060006060848603121561320157600080fd5b833561320c816131de565b9250602084013561321c816131de565b9150604084013561322c816131de565b809150509250925092565b6000806040838503121561324a57600080fd5b823567ffffffffffffffff8082111561326257600080fd5b818501915085601f83011261327657600080fd5b8135602061328382613066565b6040516132908282612eeb565b83815260059390931b85018201928281019150898411156132b057600080fd5b948201945b838610156132d75785356132c881612e5a565b825294820194908201906132b5565b965050860135925050808211156132ed57600080fd5b506132fa8582860161308a565b9150509250929050565b600081518084526020808501945080840160005b8381101561333457815187529582019590820190600101613318565b509495945050505050565b602081526000612ece6020830184613304565b6000806040838503121561336557600080fd5b82359150602083013567ffffffffffffffff81111561338357600080fd5b6132fa85828601612f18565b600080604083850312156133a257600080fd5b82356133ad81612e5a565b915060208301356133bd816131de565b809150509250929050565b6000806000606084860312156133dd57600080fd5b505081359360208301359350604090920135919050565b600080600080600060a0868803121561340c57600080fd5b85359450602086013567ffffffffffffffff8082111561342b57600080fd5b61343789838a01612f18565b9550604088013591508082111561344d57600080fd5b5061345a88828901612f18565b9598949750949560608101359550608001359392505050565b6000806040838503121561348657600080fd5b823561349181612e5a565b915060208301356133bd81612e5a565b600080600080600060a086880312156134b957600080fd5b85356134c481612e5a565b945060208601356134d481612e5a565b93506040860135925060608601359150608086013567ffffffffffffffff8111156134fe57600080fd5b61319c88828901612f18565b600181811c9082168061351e57607f821691505b6020821081141561353f57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151613557818560208601612fda565b9290920192915050565b600080845481600182811c91508083168061357d57607f831692505b602080841082141561359d57634e487b7160e01b86526022600452602486fd5b8180156135b157600181146135c2576135ef565b60ff198616895284890196506135ef565b60008b81526020902060005b868110156135e75781548b8201529085019083016135ce565b505084890196505b5050505050506135ff8185613545565b95945050505050565b6000825161361a818460208701612fda565b9190910192915050565b60006020828403121561363657600080fd5b5051919050565b60006020828403121561364f57600080fd5b8151612ece816131de565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561369a5761369a613670565b5060010190565b6bffffffffffffffffffffffff198560601b168152600084516136cb816014850160208901612fda565b8451908301906136e2816014840160208901612fda565b84519101906136f8816014840160208801612fda565b016014019695505050505050565b6000821982111561371957613719613670565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826137435761374361371e565b500490565b60008282101561375a5761375a613670565b500390565b60008261376e5761376e61371e565b500690565b6040815260006137866040830185613304565b82810360208401526135ff8185613304565b60006001600160a01b03808816835280871660208401525060a060408301526137c460a0830186613304565b82810360608401526137d68186613304565b905082810360808401526137ea818561300a565b98975050505050505050565b60006020828403121561380857600080fd5b8151612ece81612e9b565b600060033d111561382c5760046000803e5060005160e01c5b90565b600060443d101561383d5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561386d57505050505090565b82850191508151818111156138855750505050505090565b843d870101602082850101111561389f5750505050505090565b6138ae60208286010187612eeb565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526138f160a083018461300a565b979650505050505050565b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212209254fb19b60354da5784cf2403cc386b1a4377a0de6cbf3e06fee88ff573f59c64736f6c634300080c00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000569e2dffdcd7f5f78742e7bf5bcdbf23e0d0fb7f000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f636f696e6167652e6d656469612f6e66742f000000000000
Deployed Bytecode
0x6080604052600436106101d75760003560e01c8063703bd7dc11610102578063b8c27f7411610095578063e8ebeddb11610064578063e8ebeddb14610582578063e985e9c5146105af578063f242432a146105f8578063f2fde38b1461061857600080fd5b8063b8c27f7414610502578063bd85b03914610515578063d2039bf314610542578063e0aeb7c11461056257600080fd5b80638e29aa91116100d15780638e29aa911461049a57806393b0ff6c146104ad578063a22cb465146104c2578063aa038033146104e257600080fd5b8063703bd7dc14610410578063715018a61461043d57806381cdf766146104525780638da5cb5b1461047257600080fd5b80632eb2c2d61161017a578063492400c911610149578063492400c91461037457806349df728c146103945780634e1273f4146103b45780634f558e79146103e157600080fd5b80632eb2c2d6146102ff578063388b9fe01461031f57806339f7e37f1461033f5780633ccfd60b1461035f57600080fd5b806305ce59f9116101b657806305ce59f9146102555780630e89341c1461029057806317c1eda6146102bd57806321b8092e146102df57600080fd5b8062fdd58e146101dc57806301ffc9a71461020f5780630496f3c61461023f575b600080fd5b3480156101e857600080fd5b506101fc6101f7366004612e6f565b610638565b6040519081526020015b60405180910390f35b34801561021b57600080fd5b5061022f61022a366004612eb1565b6106e3565b6040519015158152602001610206565b34801561024b57600080fd5b506101fc60095481565b34801561026157600080fd5b5061022f610270366004612f8c565b8051602081830181018051600c8252928201919093012091525460ff1681565b34801561029c57600080fd5b506102b06102ab366004612fc1565b610780565b6040516102069190613036565b3480156102c957600080fd5b506102dd6102d8366004612fc1565b6107b4565b005b3480156102eb57600080fd5b506102dd6102fa366004613049565b610801565b34801561030b57600080fd5b506102dd61031a3660046130fb565b610878565b34801561032b57600080fd5b506102dd61033a3660046131a9565b61091a565b34801561034b57600080fd5b506102dd61035a366004612f8c565b610982565b34801561036b57600080fd5b506102dd610a1f565b34801561038057600080fd5b506102dd61038f3660046131ec565b610b54565b3480156103a057600080fd5b506102dd6103af366004613049565b610c39565b3480156103c057600080fd5b506103d46103cf366004613237565b610df4565b604051610206919061333f565b3480156103ed57600080fd5b5061022f6103fc366004612fc1565b600090815260046020526040902054151590565b34801561041c57600080fd5b506101fc61042b366004612fc1565b6000908152600b602052604090205490565b34801561044957600080fd5b506102dd610f32565b34801561045e57600080fd5b506102dd61046d366004613049565b610f86565b34801561047e57600080fd5b506000546040516001600160a01b039091168152602001610206565b6102dd6104a8366004613352565b610ffd565b3480156104b957600080fd5b506102dd6112a7565b3480156104ce57600080fd5b506102dd6104dd36600461338f565b6113cb565b3480156104ee57600080fd5b506102dd6104fd3660046133c8565b6113da565b6102dd6105103660046133f4565b61144d565b34801561052157600080fd5b506101fc610530366004612fc1565b60009081526004602052604090205490565b34801561054e57600080fd5b506102dd61055d366004613049565b611826565b34801561056e57600080fd5b506102dd61057d3660046131a9565b61189d565b34801561058e57600080fd5b506101fc61059d366004612fc1565b600b6020526000908152604090205481565b3480156105bb57600080fd5b5061022f6105ca366004613473565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b34801561060457600080fd5b506102dd6106133660046134a1565b611a05565b34801561062457600080fd5b506102dd610633366004613049565b611aa0565b60006001600160a01b0383166106bb5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167fd9b67a2600000000000000000000000000000000000000000000000000000000148061074657506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061077a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600861078d83611b70565b60405160200161079e929190613561565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146107fc5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b600955565b6000546001600160a01b031633146108495760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b038516331480610894575061089485336105ca565b6109065760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016106b2565b6109138585858585611caa565b5050505050565b6000546001600160a01b031633146109625760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b61097d83828460405180602001604052806000815250611f2e565b505050565b6000546001600160a01b031633146109ca5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b80516109dd906008906020840190612dc1565b50806040516109ec9190613608565b604051908190038120907f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa90600090a250565b6000546001600160a01b03163314610a675760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b60026005541415610aba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b60026005556007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610b0c576040519150601f19603f3d011682016040523d82523d6000602084013e610b11565b606091505b5050905080610b4c576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600555565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b82600c604051610bb990666e6574776f726b60c81b815260070190565b90815260408051918290036020018220805493151560ff199485161790556563617563757360d01b8252600c6006830181905281519283900360260183208054961515968516969096179095556939bab139b1b934b132b960b11b8252600a820194909452925192839003602a0190922080549115159190921617905550565b6000546001600160a01b03163314610c815760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b60026005541415610cd45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b60026005556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d9190613624565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dea919061363d565b5050600160055550565b60608151835114610e6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016106b2565b6000835167ffffffffffffffff811115610e8957610e89612ed5565b604051908082528060200260200182016040528015610eb2578160200160208202803683370190505b50905060005b8451811015610f2a57610efd858281518110610ed657610ed661365a565b6020026020010151858381518110610ef057610ef061365a565b6020026020010151610638565b828281518110610f0f57610f0f61365a565b6020908102919091010152610f2381613686565b9050610eb8565b509392505050565b6000546001600160a01b03163314610f7a5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b610f84600061206f565b565b6000546001600160a01b03163314610fce5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040516563617563757360d01b8152600c906006019081526040519081900360200190205460ff166110715760405162461bcd60e51b815260206004820152601660248201527f4361756375732073616c65206e6f74206163746976650000000000000000000060448201526064016106b2565b60135460115460009081526004602052604090205414156110bf5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106b2565b60006110d033601160000154610638565b905080156111145760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e48141d5c98da185cd959607a1b60448201526064016106b2565b61111e83836120cc565b61115c5760405162461bcd60e51b815260206004820152600f60248201526e29b4b3b730ba3ab9329022b93937b960891b60448201526064016106b2565b6040516bffffffffffffffffffffffff193360601b1660208201527f4d696e74696e672043617563757300000000000000000000000000000000000060348201526000906042016040516020818303038152906040528051906020012090508084146111fc5760405162461bcd60e51b815260206004820152600f60248201526e29b4b3b730ba3ab9329022b93937b960891b60448201526064016106b2565b601254341461124d5760405162461bcd60e51b815260206004820152601260248201527f496e636f7272656374204554482053656e74000000000000000000000000000060448201526064016106b2565b61126e33601160000154600160405180602001604052806000815250611f2e565b6040513381527fbd6a34edf9b122cae67f18d3d8c397ea7d36a696994932ded6b77b092fcef7859060200160405180910390a150505050565b6040516939bab139b1b934b132b960b11b8152600c90600a019081526040519081900360200190205460ff1661131f5760405162461bcd60e51b815260206004820152601a60248201527f537562736372696265722073616c65206e6f742061637469766500000000000060448201526064016106b2565b600061133033601460000154610638565b905080156113745760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e48141d5c98da185cd959607a1b60448201526064016106b2565b61139533601460000154600160405180602001604052806000815250611f2e565b6040513381527fb5addf0b18e8982982cfd550fedb5a87d6071e1a350f3a1f4cf38dac37b6c8ff9060200160405180910390a150565b6113d6338383612147565b5050565b6000546001600160a01b031633146114225760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b600e5483141561143757600f82905560108190555b60115483141561097d5760129190915560135550565b604051666e6574776f726b60c81b8152600c906007019081526040519081900360200190205460ff166114c25760405162461bcd60e51b815260206004820152601760248201527f4e6574776f726b2073616c65206e6f742061637469766500000000000000000060448201526064016106b2565b601054600e5460009081526004602052604090205414156115105760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106b2565b6009546000838152600b60205260409020541061156f5760405162461bcd60e51b815260206004820152601660248201527f4d6178204e6574776f726b2047726f75702053697a650000000000000000000060448201526064016106b2565b600061158033600e60000154610638565b905080156115c45760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e48141d5c98da185cd959607a1b60448201526064016106b2565b6115ce86866120cc565b61160c5760405162461bcd60e51b815260206004820152600f60248201526e29b4b3b730ba3ab9329022b93937b960891b60448201526064016106b2565b600d8460405161161c9190613608565b9081526040519081900360200190205460ff161561167c5760405162461bcd60e51b815260206004820152601260248201527f526566657272616c20436f64652055736564000000000000000000000000000060448201526064016106b2565b6000338561168986611b70565b61169286611b70565b6040516020016116a594939291906136a1565b60405160208183030381529060405280519060200120905080871461170c5760405162461bcd60e51b815260206004820152600a60248201527f48617368204572726f720000000000000000000000000000000000000000000060448201526064016106b2565b600f54341461175d5760405162461bcd60e51b815260206004820152601260248201527f496e636f7272656374204554482053656e74000000000000000000000000000060448201526064016106b2565b6001600d8660405161176f9190613608565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506001600b600086815260200190815260200160002060008282546117b89190613706565b9091555050600e546040805160208101909152600081526117dd913391600190611f2e565b604080518481523360208201529081018590527f470338618ce6dc2b53a903611763fa89ba40d37faf06a8c4da1bbf205aeda1c69060600160405180910390a150505050505050565b6000546001600160a01b0316331461186e5760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6118a78382610638565b8211156118f65760405162461bcd60e51b815260206004820152601e60248201527f547279696e6720746f206275726e206d6f7265207468616e206f776e6564000060448201526064016106b2565b6014548114156119485760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206275726e207375627363726962657220746f6b656e730000000060448201526064016106b2565b600a546001600160a01b03166119a05760405162461bcd60e51b815260206004820152601260248201527f4275726e696e67206e6f7420616374697665000000000000000000000000000060448201526064016106b2565b600a546001600160a01b031633146119fa5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206275726e20636f6e7472616374206164647265737300000060448201526064016106b2565b61097d83828461223c565b6001600160a01b038516331480611a215750611a2185336105ca565b611a935760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106b2565b6109138585858585612403565b6000546001600160a01b03163314611ae85760405162461bcd60e51b8152602060048201819052602482015260008051602061391383398151915260448201526064016106b2565b6001600160a01b038116611b645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b2565b611b6d8161206f565b50565b606081611bb057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611bda5780611bc481613686565b9150611bd39050600a83613734565b9150611bb4565b60008167ffffffffffffffff811115611bf557611bf5612ed5565b6040519080825280601f01601f191660200182016040528015611c1f576020820181803683370190505b5090505b8415611ca257611c34600183613748565b9150611c41600a8661375f565b611c4c906030613706565b60f81b818381518110611c6157611c6161365a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c9b600a86613734565b9450611c23565b949350505050565b8151835114611d215760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106b2565b6001600160a01b038416611d855760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b2565b33611d948187878787876125c0565b60005b8451811015611ec0576000858281518110611db457611db461365a565b602002602001015190506000858381518110611dd257611dd261365a565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611e665760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016106b2565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ea5908490613706565b9250508190555050505080611eb990613686565b9050611d97565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f10929190613773565b60405180910390a4611f2681878787878761274e565b505050505050565b6001600160a01b038416611faa5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b336000611fb6856128f4565b90506000611fc3856128f4565b9050611fd4836000898585896125c0565b60008681526001602090815260408083206001600160a01b038b16845290915281208054879290612006908490613706565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46120668360008989898961293f565b50505050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018390526000908190605c0160408051601f1981840301815291905280516020909101206006549091506001600160a01b03166121358285612a3b565b6001600160a01b031614949350505050565b816001600160a01b0316836001600160a01b031614156121cf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016106b2565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166122b85760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b3360006122c4846128f4565b905060006122d1846128f4565b90506122f1838760008585604051806020016040528060008152506125c0565b60008581526001602090815260408083206001600160a01b038a168452909152902054848110156123895760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106b2565b60008681526001602090815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052612066565b6001600160a01b0384166124675760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b2565b336000612473856128f4565b90506000612480856128f4565b90506124908389898585896125c0565b60008681526001602090815260408083206001600160a01b038c168452909152902054858110156125165760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016106b2565b60008781526001602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612555908490613706565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46125b5848a8a8a8a8a61293f565b505050505050505050565b6001600160a01b0385166126475760005b8351811015612645578281815181106125ec576125ec61365a565b60200260200101516004600086848151811061260a5761260a61365a565b60200260200101518152602001908152602001600020600082825461262f9190613706565b9091555061263e905081613686565b90506125d1565b505b6001600160a01b038416611f265760005b83518110156120665760008482815181106126755761267561365a565b6020026020010151905060008483815181106126935761269361365a565b602002602001015190506000600460008481526020019081526020016000205490508181101561272b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f7460448201527f616c537570706c7900000000000000000000000000000000000000000000000060648201526084016106b2565b6000928352600460205260409092209103905561274781613686565b9050612658565b6001600160a01b0384163b15611f265760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906127929089908990889088908890600401613798565b6020604051808303816000875af19250505080156127cd575060408051601f3d908101601f191682019092526127ca918101906137f6565b60015b612883576127d9613813565b806308c379a0141561281357506127ee61382f565b806127f95750612815565b8060405162461bcd60e51b81526004016106b29190613036565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016106b2565b6001600160e01b0319811663bc197c8160e01b146120665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016106b2565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061292e5761292e61365a565b602090810291909101015292915050565b6001600160a01b0384163b15611f265760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061298390899089908890889088906004016138b9565b6020604051808303816000875af19250505080156129be575060408051601f3d908101601f191682019092526129bb918101906137f6565b60015b6129ca576127d9613813565b6001600160e01b0319811663f23a6e6160e01b146120665760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016106b2565b6000806000612a4a8585612a57565b91509150610f2a81612ac7565b600080825160411415612a8e5760208301516040840151606085015160001a612a8287828585612c82565b94509450505050612ac0565b825160401415612ab85760208301516040840151612aad868383612d6f565b935093505050612ac0565b506000905060025b9250929050565b6000816004811115612adb57612adb6138fc565b1415612ae45750565b6001816004811115612af857612af86138fc565b1415612b465760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b2565b6002816004811115612b5a57612b5a6138fc565b1415612ba85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106b2565b6003816004811115612bbc57612bbc6138fc565b1415612c155760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106b2565b6004816004811115612c2957612c296138fc565b1415611b6d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106b2565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612cb95750600090506003612d66565b8460ff16601b14158015612cd157508460ff16601c14155b15612ce25750600090506004612d66565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612d36573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612d5f57600060019250925050612d66565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681612da560ff86901c601b613706565b9050612db387828885612c82565b935093505050935093915050565b828054612dcd9061350a565b90600052602060002090601f016020900481019282612def5760008555612e35565b82601f10612e0857805160ff1916838001178555612e35565b82800160010185558215612e35579182015b82811115612e35578251825591602001919060010190612e1a565b50612e41929150612e45565b5090565b5b80821115612e415760008155600101612e46565b6001600160a01b0381168114611b6d57600080fd5b60008060408385031215612e8257600080fd5b8235612e8d81612e5a565b946020939093013593505050565b6001600160e01b031981168114611b6d57600080fd5b600060208284031215612ec357600080fd5b8135612ece81612e9b565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715612f1157612f11612ed5565b6040525050565b600082601f830112612f2957600080fd5b813567ffffffffffffffff811115612f4357612f43612ed5565b604051612f5a601f8301601f191660200182612eeb565b818152846020838601011115612f6f57600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215612f9e57600080fd5b813567ffffffffffffffff811115612fb557600080fd5b611ca284828501612f18565b600060208284031215612fd357600080fd5b5035919050565b60005b83811015612ff5578181015183820152602001612fdd565b83811115613004576000848401525b50505050565b60008151808452613022816020860160208601612fda565b601f01601f19169290920160200192915050565b602081526000612ece602083018461300a565b60006020828403121561305b57600080fd5b8135612ece81612e5a565b600067ffffffffffffffff82111561308057613080612ed5565b5060051b60200190565b600082601f83011261309b57600080fd5b813560206130a882613066565b6040516130b58282612eeb565b83815260059390931b85018201928281019150868411156130d557600080fd5b8286015b848110156130f057803583529183019183016130d9565b509695505050505050565b600080600080600060a0868803121561311357600080fd5b853561311e81612e5a565b9450602086013561312e81612e5a565b9350604086013567ffffffffffffffff8082111561314b57600080fd5b61315789838a0161308a565b9450606088013591508082111561316d57600080fd5b61317989838a0161308a565b9350608088013591508082111561318f57600080fd5b5061319c88828901612f18565b9150509295509295909350565b6000806000606084860312156131be57600080fd5b83356131c981612e5a565b95602085013595506040909401359392505050565b8015158114611b6d57600080fd5b60008060006060848603121561320157600080fd5b833561320c816131de565b9250602084013561321c816131de565b9150604084013561322c816131de565b809150509250925092565b6000806040838503121561324a57600080fd5b823567ffffffffffffffff8082111561326257600080fd5b818501915085601f83011261327657600080fd5b8135602061328382613066565b6040516132908282612eeb565b83815260059390931b85018201928281019150898411156132b057600080fd5b948201945b838610156132d75785356132c881612e5a565b825294820194908201906132b5565b965050860135925050808211156132ed57600080fd5b506132fa8582860161308a565b9150509250929050565b600081518084526020808501945080840160005b8381101561333457815187529582019590820190600101613318565b509495945050505050565b602081526000612ece6020830184613304565b6000806040838503121561336557600080fd5b82359150602083013567ffffffffffffffff81111561338357600080fd5b6132fa85828601612f18565b600080604083850312156133a257600080fd5b82356133ad81612e5a565b915060208301356133bd816131de565b809150509250929050565b6000806000606084860312156133dd57600080fd5b505081359360208301359350604090920135919050565b600080600080600060a0868803121561340c57600080fd5b85359450602086013567ffffffffffffffff8082111561342b57600080fd5b61343789838a01612f18565b9550604088013591508082111561344d57600080fd5b5061345a88828901612f18565b9598949750949560608101359550608001359392505050565b6000806040838503121561348657600080fd5b823561349181612e5a565b915060208301356133bd81612e5a565b600080600080600060a086880312156134b957600080fd5b85356134c481612e5a565b945060208601356134d481612e5a565b93506040860135925060608601359150608086013567ffffffffffffffff8111156134fe57600080fd5b61319c88828901612f18565b600181811c9082168061351e57607f821691505b6020821081141561353f57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151613557818560208601612fda565b9290920192915050565b600080845481600182811c91508083168061357d57607f831692505b602080841082141561359d57634e487b7160e01b86526022600452602486fd5b8180156135b157600181146135c2576135ef565b60ff198616895284890196506135ef565b60008b81526020902060005b868110156135e75781548b8201529085019083016135ce565b505084890196505b5050505050506135ff8185613545565b95945050505050565b6000825161361a818460208701612fda565b9190910192915050565b60006020828403121561363657600080fd5b5051919050565b60006020828403121561364f57600080fd5b8151612ece816131de565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561369a5761369a613670565b5060010190565b6bffffffffffffffffffffffff198560601b168152600084516136cb816014850160208901612fda565b8451908301906136e2816014840160208901612fda565b84519101906136f8816014840160208801612fda565b016014019695505050505050565b6000821982111561371957613719613670565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826137435761374361371e565b500490565b60008282101561375a5761375a613670565b500390565b60008261376e5761376e61371e565b500690565b6040815260006137866040830185613304565b82810360208401526135ff8185613304565b60006001600160a01b03808816835280871660208401525060a060408301526137c460a0830186613304565b82810360608401526137d68186613304565b905082810360808401526137ea818561300a565b98975050505050505050565b60006020828403121561380857600080fd5b8151612ece81612e9b565b600060033d111561382c5760046000803e5060005160e01c5b90565b600060443d101561383d5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561386d57505050505090565b82850191508151818111156138855750505050505090565b843d870101602082850101111561389f5750505050505090565b6138ae60208286010187612eeb565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526138f160a083018461300a565b979650505050505050565b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212209254fb19b60354da5784cf2403cc386b1a4377a0de6cbf3e06fee88ff573f59c64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000569e2dffdcd7f5f78742e7bf5bcdbf23e0d0fb7f000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f636f696e6167652e6d656469612f6e66742f000000000000
-----Decoded View---------------
Arg [0] : _baseUri (string): https://coinage.media/nft/
Arg [1] : _withdrawlAddress (address): 0x569E2DFfDCd7F5F78742E7BF5bCdBF23e0d0Fb7f
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000569e2dffdcd7f5f78742e7bf5bcdbf23e0d0fb7f
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [3] : 68747470733a2f2f636f696e6167652e6d656469612f6e66742f000000000000
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.