ERC-1155
Overview
Max Total Supply
179 PHOGB
Holders
146
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
PumpkinHedzOGBadge
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-02 */ // SPDX-License-Identifier: MIT // Developer: jawadklair.eth 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); } /** * @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; } /** * @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); } /** * _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns(bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns(bytes4); } /* * @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 GSN 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 memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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.3._ */ 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.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits; temp = value; while (temp != 0) { buffer[--index] = bytes1(uint8(48 + uint256(temp % 10))); temp /= 10; } return string(buffer); } } /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * * @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; using Strings for uint256; // 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; // Total crystals count, including burnt nft uint256 public totalSupply = 0; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /* * bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e * bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4 * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a * bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6 * * => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^ * 0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26 */ bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26; /* * bytes4(keccak256('uri(uint256)')) == 0x0e89341c */ bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c; /** * @dev See {_setURI}. */ constructor (string memory uri_) { _setURI(uri_); // register the supported interfaces to conform to ERC1155 via ERC165 _registerInterface(_INTERFACE_ID_ERC1155); // register the supported interfaces to conform to ERC1155MetadataURI via ERC165 _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI); } /** * @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 id) external view override returns (string memory) { require(id < totalSupply, "NFT does not exist"); // Even if there is a base URI, it is only appended to non-empty token-specific URIs if (bytes(_uri).length == 0) { return ""; } else { // bytes memory b = new bytes(32); // assembly { mstore(add(b, 32), id) } // abi.encodePacked is being used to concatenate strings return string(abi.encodePacked(_uri, id.toString())); } } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view 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 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) { require(accounts[i] != address(0), "ERC1155: batch balance query for the zero address"); batchBalances[i] = _balances[ids[i]][accounts[i]]; } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view 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(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][from] = _balances[id][from] - amount; _balances[id][to] = _balances[id][to] + amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, 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(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); 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]; _balances[id][from] = _balances[id][from] - amount; _balances[id][to] = _balances[id][to] + amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] = _balances[id][account] + amount; totalSupply++; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint i = 0; i < ids.length; i++) { _balances[ids[i]][to] = amounts[i] + _balances[ids[i]][to]; totalSupply++; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn(address account, uint256 id, uint256 amount) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); _balances[id][account] = _balances[id][account] - amount; totalSupply--; emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint i = 0; i < ids.length; i++) { _balances[ids[i]][account] = _balances[ids[i]][account] - amounts[i]; } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { } function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).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(to).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; } } /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn(address account, uint256 id, uint256 value) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } } contract PumpkinHedzOGBadge is ERC1155Burnable, Ownable { bool public reserved; bool public mintStarted; uint256 maxSupply = 500; mapping(address => uint256) minted; constructor(string memory uri) ERC1155(uri) { } /** * @dev Gets the token name * @return string representing the token name */ function name() external pure returns(string memory) { return "Pumpkin Hedz OG Badge"; } /** * @dev Gets the token symbol * @return string representing the token symbol */ function symbol() external pure returns(string memory) { return "PHOGB"; } function flipMint() external onlyOwner { mintStarted = !mintStarted; } function reserveBadge(address reciever, uint256[] calldata ids, uint256[] calldata amounts) external onlyOwner { require(!reserved,"Cannot reserve Badges multiple time"); _mintBatch(reciever, ids, amounts, ""); reserved = true; } function setBaseURI(string memory baseURI) external onlyOwner { _setURI(baseURI); } function withdraw() external onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } /** * Mints Hedz OG Badge */ function mintBadge() public { require(mintStarted, "OG Bagde minting not started"); require(minted[msg.sender] != 1, "Only one OG Badge per address is allowed"); require(ERC1155.totalSupply+1 <= maxSupply, "Mint will exceed max supply"); minted[msg.sender] = 1; _mint(msg.sender, ERC1155.totalSupply, 1,""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintBadge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reciever","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"reserveBadge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006003556101f46006553480156200001c57600080fd5b50604051620026e7380380620026e78339810160408190526200003f9162000225565b80620000526301ffc9a760e01b620000cc565b6200005d8162000150565b6200006f636cdb3d1360e11b620000cc565b620000816303a24d0760e21b620000cc565b50600580546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350506200033e565b6001600160e01b031980821614156200012b5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b80516200016590600490602084019062000169565b5050565b828054620001779062000301565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200023957600080fd5b82516001600160401b03808211156200025157600080fd5b818501915085601f8301126200026657600080fd5b8151818111156200027b576200027b6200020f565b604051601f8201601f19908116603f01168101908382118183101715620002a657620002a66200020f565b816040528281528886848701011115620002bf57600080fd5b600093505b82841015620002e35784840186015181850187015292850192620002c4565b82841115620002f55760008684830101525b98975050505050505050565b600181811c908216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b612399806200034e6000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c80638da5cb5b116100b8578063da1b3cb01161007c578063da1b3cb0146102d5578063e985e9c5146102dd578063f242432a14610319578063f2fde38b1461032c578063f5298aca1461033f578063fe60d12c1461035257600080fd5b80638da5cb5b1461026a57806395d89b4114610285578063a22cb465146102a6578063a9722cf3146102b9578063d2ed5c59146102cd57600080fd5b806318160ddd1161010a57806318160ddd1461020b5780632eb2c2d6146102145780633ccfd60b146102275780634e1273f41461022f57806355f804b31461024f578063715018a61461026257600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806306fdde03146101a95780630d96b1f1146101e35780630e89341c146101f8575b600080fd5b610159610154366004611836565b610366565b6040519081526020015b60405180910390f35b61019961017a366004611876565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610163565b60408051808201909152601581527450756d706b696e204865647a204f4720426164676560581b60208201525b60405161016391906118f6565b6101f66101f1366004611955565b6103ff565b005b6101d66102063660046119d6565b610525565b61015960035481565b6101f6610222366004611b45565b6105cd565b6101f66107f0565b61024261023d366004611bef565b61084d565b6040516101639190611cf5565b6101f661025d366004611d08565b610a3a565b6101f6610a70565b6005546040516001600160a01b039091168152602001610163565b604080518082019091526005815264282427a3a160d91b60208201526101d6565b6101f66102b4366004611d59565b610ae4565b60055461019990600160a81b900460ff1681565b6101f6610bbb565b6101f6610c06565b6101996102eb366004611d95565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6101f6610327366004611dc8565b610d63565b6101f661033a366004611e2d565b610ebc565b6101f661034d366004611e48565b610fa7565b60055461019990600160a01b900460ff1681565b60006001600160a01b0383166103d75760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b6005546001600160a01b031633146104295760405162461bcd60e51b81526004016103ce90611e7b565b600554600160a01b900460ff161561048f5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74207265736572766520426164676573206d756c7469706c652074604482015262696d6560e81b60648201526084016103ce565b61050b8585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808902828101820190935288825290935088925087918291850190849080828437600092018290525060408051602081019091529081529250610fef915050565b50506005805460ff60a01b1916600160a01b179055505050565b6060600354821061056d5760405162461bcd60e51b815260206004820152601260248201527113919508191bd95cc81b9bdd08195e1a5cdd60721b60448201526064016103ce565b6004805461057a90611eb0565b1515905061059657505060408051602081019091526000815290565b60046105a18361119d565b6040516020016105b2929190611f07565b6040516020818303038152906040529050919050565b919050565b81518351146105ee5760405162461bcd60e51b81526004016103ce90611fae565b6001600160a01b0384166106145760405162461bcd60e51b81526004016103ce90611ff6565b6001600160a01b038516331480610630575061063085336102eb565b6106975760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103ce565b3360005b84518110156107825760008582815181106106b8576106b861203b565b6020026020010151905060008583815181106106d6576106d661203b565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150610712908290612067565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a168152205461074a90829061207e565b60009283526001602090815260408085206001600160a01b038c168652909152909220919091555061077b81612096565b905061069b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516107d29291906120b1565b60405180910390a46107e88187878787876112a6565b505050505050565b6005546001600160a01b0316331461081a5760405162461bcd60e51b81526004016103ce90611e7b565b6040514790339082156108fc029083906000818181858888f19350505050158015610849573d6000803e3d6000fd5b5050565b606081518351146108b25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103ce565b6000835167ffffffffffffffff8111156108ce576108ce6119ef565b6040519080825280602002602001820160405280156108f7578160200160208202803683370190505b50905060005b8451811015610a325760006001600160a01b03168582815181106109235761092361203b565b60200260200101516001600160a01b0316141561099c5760405162461bcd60e51b815260206004820152603160248201527f455243313135353a2062617463682062616c616e636520717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016103ce565b600160008583815181106109b2576109b261203b565b6020026020010151815260200190815260200160002060008683815181106109dc576109dc61203b565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110610a1757610a1761203b565b6020908102919091010152610a2b81612096565b90506108fd565b509392505050565b6005546001600160a01b03163314610a645760405162461bcd60e51b81526004016103ce90611e7b565b610a6d8161141a565b50565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b81526004016103ce90611e7b565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b336001600160a01b0383161415610b4f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103ce565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b03163314610be55760405162461bcd60e51b81526004016103ce90611e7b565b6005805460ff60a81b198116600160a81b9182900460ff1615909102179055565b600554600160a81b900460ff16610c5f5760405162461bcd60e51b815260206004820152601c60248201527f4f47204261676465206d696e74696e67206e6f7420737461727465640000000060448201526064016103ce565b3360009081526007602052604090205460011415610cd05760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f6e65204f4720426164676520706572206164647265737320697360448201526708185b1b1bddd95960c21b60648201526084016103ce565b600654600354610ce190600161207e565b1115610d2f5760405162461bcd60e51b815260206004820152601b60248201527f4d696e742077696c6c20657863656564206d617820737570706c79000000000060448201526064016103ce565b3360008181526007602090815260408083206001908190556003548251938401909252928252610d619392909161142d565b565b6001600160a01b038416610d895760405162461bcd60e51b81526004016103ce90611ff6565b6001600160a01b038516331480610da55750610da585336102eb565b610dc15760405162461bcd60e51b81526004016103ce906120d6565b33610de1818787610dd188611526565b610dda88611526565b5050505050565b60008481526001602090815260408083206001600160a01b038a168452909152902054610e0f908490612067565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054610e4790849061207e565b60008581526001602090815260408083206001600160a01b038a811680865291845293829020949094558051888152918201879052898316928516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107e8818787878787611571565b6005546001600160a01b03163314610ee65760405162461bcd60e51b81526004016103ce90611e7b565b6001600160a01b038116610f4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ce565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316331480610fc35750610fc383336102eb565b610fdf5760405162461bcd60e51b81526004016103ce906120d6565b610fea83838361163b565b505050565b6001600160a01b0384166110155760405162461bcd60e51b81526004016103ce9061211f565b81518351146110365760405162461bcd60e51b81526004016103ce90611fae565b3360005b845181101561113557600160008683815181106110595761105961203b565b602002602001015181526020019081526020016000206000876001600160a01b03166001600160a01b03168152602001908152602001600020548482815181106110a5576110a561203b565b60200260200101516110b7919061207e565b600160008784815181106110cd576110cd61203b565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020819055506003600081548092919061111d90612096565b9190505550808061112d90612096565b91505061103a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111869291906120b1565b60405180910390a4610dda816000878787876112a6565b6060816111c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111eb57806111d581612096565b91506111e49050600a83612176565b91506111c5565b60008167ffffffffffffffff811115611206576112066119ef565b6040519080825280601f01601f191660200182016040528015611230576020820181803683370190505b508593509050815b831561129d57611249600a8561218a565b61125490603061207e565b60f81b826112618361219e565b925082815181106112745761127461203b565b60200101906001600160f81b031916908160001a905350611296600a85612176565b9350611238565b50949350505050565b6001600160a01b0384163b156107e85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112ea90899089908890889088906004016121b5565b602060405180830381600087803b15801561130457600080fd5b505af1925050508015611334575060408051601f3d908101601f1916820190925261133191810190612213565b60015b6113e157611340612230565b806308c379a0141561137a575061135561224c565b80611360575061137c565b8060405162461bcd60e51b81526004016103ce91906118f6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103ce565b6001600160e01b0319811663bc197c8160e01b146114115760405162461bcd60e51b81526004016103ce906122d6565b50505050505050565b8051610849906004906020840190611786565b6001600160a01b0384166114535760405162461bcd60e51b81526004016103ce9061211f565b3361146481600087610dd188611526565b60008481526001602090815260408083206001600160a01b038916845290915290205461149290849061207e565b60008581526001602090815260408083206001600160a01b038a16845290915281209190915560038054916114c683612096565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610dda81600087878787611571565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106115605761156061203b565b602090810291909101015292915050565b6001600160a01b0384163b156107e85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906115b5908990899088908890889060040161231e565b602060405180830381600087803b1580156115cf57600080fd5b505af19250505080156115ff575060408051601f3d908101601f191682019092526115fc91810190612213565b60015b61160b57611340612230565b6001600160e01b0319811663f23a6e6160e01b146114115760405162461bcd60e51b81526004016103ce906122d6565b6001600160a01b03831661169d5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016103ce565b336116cd818560006116ae87611526565b6116b787611526565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b03881684529091529020546116fb908390612067565b60008481526001602090815260408083206001600160a01b0389168452909152812091909155600380549161172f8361219e565b909155505060408051848152602081018490526000916001600160a01b0387811692908516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a450505050565b82805461179290611eb0565b90600052602060002090601f0160209004810192826117b457600085556117fa565b82601f106117cd57805160ff19168380011785556117fa565b828001600101855582156117fa579182015b828111156117fa5782518255916020019190600101906117df565b5061180692915061180a565b5090565b5b80821115611806576000815560010161180b565b80356001600160a01b03811681146105c857600080fd5b6000806040838503121561184957600080fd5b6118528361181f565b946020939093013593505050565b6001600160e01b031981168114610a6d57600080fd5b60006020828403121561188857600080fd5b813561189381611860565b9392505050565b60005b838110156118b557818101518382015260200161189d565b838111156118c4576000848401525b50505050565b600081518084526118e281602086016020860161189a565b601f01601f19169290920160200192915050565b60208152600061189360208301846118ca565b60008083601f84011261191b57600080fd5b50813567ffffffffffffffff81111561193357600080fd5b6020830191508360208260051b850101111561194e57600080fd5b9250929050565b60008060008060006060868803121561196d57600080fd5b6119768661181f565b9450602086013567ffffffffffffffff8082111561199357600080fd5b61199f89838a01611909565b909650945060408801359150808211156119b857600080fd5b506119c588828901611909565b969995985093965092949392505050565b6000602082840312156119e857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611a2b57611a2b6119ef565b6040525050565b600067ffffffffffffffff821115611a4c57611a4c6119ef565b5060051b60200190565b600082601f830112611a6757600080fd5b81356020611a7482611a32565b604051611a818282611a05565b83815260059390931b8501820192828101915086841115611aa157600080fd5b8286015b84811015611abc5780358352918301918301611aa5565b509695505050505050565b600067ffffffffffffffff831115611ae157611ae16119ef565b604051611af8601f8501601f191660200182611a05565b809150838152848484011115611b0d57600080fd5b83836020830137600060208583010152509392505050565b600082601f830112611b3657600080fd5b61189383833560208501611ac7565b600080600080600060a08688031215611b5d57600080fd5b611b668661181f565b9450611b746020870161181f565b9350604086013567ffffffffffffffff80821115611b9157600080fd5b611b9d89838a01611a56565b94506060880135915080821115611bb357600080fd5b611bbf89838a01611a56565b93506080880135915080821115611bd557600080fd5b50611be288828901611b25565b9150509295509295909350565b60008060408385031215611c0257600080fd5b823567ffffffffffffffff80821115611c1a57600080fd5b818501915085601f830112611c2e57600080fd5b81356020611c3b82611a32565b604051611c488282611a05565b83815260059390931b8501820192828101915089841115611c6857600080fd5b948201945b83861015611c8d57611c7e8661181f565b82529482019490820190611c6d565b96505086013592505080821115611ca357600080fd5b50611cb085828601611a56565b9150509250929050565b600081518084526020808501945080840160005b83811015611cea57815187529582019590820190600101611cce565b509495945050505050565b6020815260006118936020830184611cba565b600060208284031215611d1a57600080fd5b813567ffffffffffffffff811115611d3157600080fd5b8201601f81018413611d4257600080fd5b611d5184823560208401611ac7565b949350505050565b60008060408385031215611d6c57600080fd5b611d758361181f565b915060208301358015158114611d8a57600080fd5b809150509250929050565b60008060408385031215611da857600080fd5b611db18361181f565b9150611dbf6020840161181f565b90509250929050565b600080600080600060a08688031215611de057600080fd5b611de98661181f565b9450611df76020870161181f565b93506040860135925060608601359150608086013567ffffffffffffffff811115611e2157600080fd5b611be288828901611b25565b600060208284031215611e3f57600080fd5b6118938261181f565b600080600060608486031215611e5d57600080fd5b611e668461181f565b95602085013595506040909401359392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ec457607f821691505b60208210811415611ee557634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611efd81856020860161189a565b9290920192915050565b600080845481600182811c915080831680611f2357607f831692505b6020808410821415611f4357634e487b7160e01b86526022600452602486fd5b818015611f575760018114611f6857611f95565b60ff19861689528489019650611f95565b60008b81526020902060005b86811015611f8d5781548b820152908501908301611f74565b505084890196505b505050505050611fa58185611eeb565b95945050505050565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561207957612079612051565b500390565b6000821982111561209157612091612051565b500190565b60006000198214156120aa576120aa612051565b5060010190565b6040815260006120c46040830185611cba565b8281036020840152611fa58185611cba565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261218557612185612160565b500490565b60008261219957612199612160565b500690565b6000816121ad576121ad612051565b506000190190565b6001600160a01b0386811682528516602082015260a0604082018190526000906121e190830186611cba565b82810360608401526121f38186611cba565b9050828103608084015261220781856118ca565b98975050505050505050565b60006020828403121561222557600080fd5b815161189381611860565b600060033d11156122495760046000803e5060005160e01c5b90565b600060443d101561225a5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561228a57505050505090565b82850191508151818111156122a25750505050505090565b843d87010160208285010111156122bc5750505050505090565b6122cb60208286010187611a05565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612358908301846118ca565b97965050505050505056fea2646970667358221220e8f447f4b333fa17b9544556abea56c54131115af441af88a14b863169889db864736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d55686b7371537a5245584b37346a426761334d444e46636b6350615362376750415167797831794b55427a4d2f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101415760003560e01c80638da5cb5b116100b8578063da1b3cb01161007c578063da1b3cb0146102d5578063e985e9c5146102dd578063f242432a14610319578063f2fde38b1461032c578063f5298aca1461033f578063fe60d12c1461035257600080fd5b80638da5cb5b1461026a57806395d89b4114610285578063a22cb465146102a6578063a9722cf3146102b9578063d2ed5c59146102cd57600080fd5b806318160ddd1161010a57806318160ddd1461020b5780632eb2c2d6146102145780633ccfd60b146102275780634e1273f41461022f57806355f804b31461024f578063715018a61461026257600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806306fdde03146101a95780630d96b1f1146101e35780630e89341c146101f8575b600080fd5b610159610154366004611836565b610366565b6040519081526020015b60405180910390f35b61019961017a366004611876565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610163565b60408051808201909152601581527450756d706b696e204865647a204f4720426164676560581b60208201525b60405161016391906118f6565b6101f66101f1366004611955565b6103ff565b005b6101d66102063660046119d6565b610525565b61015960035481565b6101f6610222366004611b45565b6105cd565b6101f66107f0565b61024261023d366004611bef565b61084d565b6040516101639190611cf5565b6101f661025d366004611d08565b610a3a565b6101f6610a70565b6005546040516001600160a01b039091168152602001610163565b604080518082019091526005815264282427a3a160d91b60208201526101d6565b6101f66102b4366004611d59565b610ae4565b60055461019990600160a81b900460ff1681565b6101f6610bbb565b6101f6610c06565b6101996102eb366004611d95565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6101f6610327366004611dc8565b610d63565b6101f661033a366004611e2d565b610ebc565b6101f661034d366004611e48565b610fa7565b60055461019990600160a01b900460ff1681565b60006001600160a01b0383166103d75760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b6005546001600160a01b031633146104295760405162461bcd60e51b81526004016103ce90611e7b565b600554600160a01b900460ff161561048f5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74207265736572766520426164676573206d756c7469706c652074604482015262696d6560e81b60648201526084016103ce565b61050b8585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808902828101820190935288825290935088925087918291850190849080828437600092018290525060408051602081019091529081529250610fef915050565b50506005805460ff60a01b1916600160a01b179055505050565b6060600354821061056d5760405162461bcd60e51b815260206004820152601260248201527113919508191bd95cc81b9bdd08195e1a5cdd60721b60448201526064016103ce565b6004805461057a90611eb0565b1515905061059657505060408051602081019091526000815290565b60046105a18361119d565b6040516020016105b2929190611f07565b6040516020818303038152906040529050919050565b919050565b81518351146105ee5760405162461bcd60e51b81526004016103ce90611fae565b6001600160a01b0384166106145760405162461bcd60e51b81526004016103ce90611ff6565b6001600160a01b038516331480610630575061063085336102eb565b6106975760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103ce565b3360005b84518110156107825760008582815181106106b8576106b861203b565b6020026020010151905060008583815181106106d6576106d661203b565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150610712908290612067565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a168152205461074a90829061207e565b60009283526001602090815260408085206001600160a01b038c168652909152909220919091555061077b81612096565b905061069b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516107d29291906120b1565b60405180910390a46107e88187878787876112a6565b505050505050565b6005546001600160a01b0316331461081a5760405162461bcd60e51b81526004016103ce90611e7b565b6040514790339082156108fc029083906000818181858888f19350505050158015610849573d6000803e3d6000fd5b5050565b606081518351146108b25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103ce565b6000835167ffffffffffffffff8111156108ce576108ce6119ef565b6040519080825280602002602001820160405280156108f7578160200160208202803683370190505b50905060005b8451811015610a325760006001600160a01b03168582815181106109235761092361203b565b60200260200101516001600160a01b0316141561099c5760405162461bcd60e51b815260206004820152603160248201527f455243313135353a2062617463682062616c616e636520717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016103ce565b600160008583815181106109b2576109b261203b565b6020026020010151815260200190815260200160002060008683815181106109dc576109dc61203b565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110610a1757610a1761203b565b6020908102919091010152610a2b81612096565b90506108fd565b509392505050565b6005546001600160a01b03163314610a645760405162461bcd60e51b81526004016103ce90611e7b565b610a6d8161141a565b50565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b81526004016103ce90611e7b565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b336001600160a01b0383161415610b4f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103ce565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b03163314610be55760405162461bcd60e51b81526004016103ce90611e7b565b6005805460ff60a81b198116600160a81b9182900460ff1615909102179055565b600554600160a81b900460ff16610c5f5760405162461bcd60e51b815260206004820152601c60248201527f4f47204261676465206d696e74696e67206e6f7420737461727465640000000060448201526064016103ce565b3360009081526007602052604090205460011415610cd05760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f6e65204f4720426164676520706572206164647265737320697360448201526708185b1b1bddd95960c21b60648201526084016103ce565b600654600354610ce190600161207e565b1115610d2f5760405162461bcd60e51b815260206004820152601b60248201527f4d696e742077696c6c20657863656564206d617820737570706c79000000000060448201526064016103ce565b3360008181526007602090815260408083206001908190556003548251938401909252928252610d619392909161142d565b565b6001600160a01b038416610d895760405162461bcd60e51b81526004016103ce90611ff6565b6001600160a01b038516331480610da55750610da585336102eb565b610dc15760405162461bcd60e51b81526004016103ce906120d6565b33610de1818787610dd188611526565b610dda88611526565b5050505050565b60008481526001602090815260408083206001600160a01b038a168452909152902054610e0f908490612067565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054610e4790849061207e565b60008581526001602090815260408083206001600160a01b038a811680865291845293829020949094558051888152918201879052898316928516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107e8818787878787611571565b6005546001600160a01b03163314610ee65760405162461bcd60e51b81526004016103ce90611e7b565b6001600160a01b038116610f4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ce565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316331480610fc35750610fc383336102eb565b610fdf5760405162461bcd60e51b81526004016103ce906120d6565b610fea83838361163b565b505050565b6001600160a01b0384166110155760405162461bcd60e51b81526004016103ce9061211f565b81518351146110365760405162461bcd60e51b81526004016103ce90611fae565b3360005b845181101561113557600160008683815181106110595761105961203b565b602002602001015181526020019081526020016000206000876001600160a01b03166001600160a01b03168152602001908152602001600020548482815181106110a5576110a561203b565b60200260200101516110b7919061207e565b600160008784815181106110cd576110cd61203b565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020819055506003600081548092919061111d90612096565b9190505550808061112d90612096565b91505061103a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111869291906120b1565b60405180910390a4610dda816000878787876112a6565b6060816111c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111eb57806111d581612096565b91506111e49050600a83612176565b91506111c5565b60008167ffffffffffffffff811115611206576112066119ef565b6040519080825280601f01601f191660200182016040528015611230576020820181803683370190505b508593509050815b831561129d57611249600a8561218a565b61125490603061207e565b60f81b826112618361219e565b925082815181106112745761127461203b565b60200101906001600160f81b031916908160001a905350611296600a85612176565b9350611238565b50949350505050565b6001600160a01b0384163b156107e85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112ea90899089908890889088906004016121b5565b602060405180830381600087803b15801561130457600080fd5b505af1925050508015611334575060408051601f3d908101601f1916820190925261133191810190612213565b60015b6113e157611340612230565b806308c379a0141561137a575061135561224c565b80611360575061137c565b8060405162461bcd60e51b81526004016103ce91906118f6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103ce565b6001600160e01b0319811663bc197c8160e01b146114115760405162461bcd60e51b81526004016103ce906122d6565b50505050505050565b8051610849906004906020840190611786565b6001600160a01b0384166114535760405162461bcd60e51b81526004016103ce9061211f565b3361146481600087610dd188611526565b60008481526001602090815260408083206001600160a01b038916845290915290205461149290849061207e565b60008581526001602090815260408083206001600160a01b038a16845290915281209190915560038054916114c683612096565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610dda81600087878787611571565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106115605761156061203b565b602090810291909101015292915050565b6001600160a01b0384163b156107e85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906115b5908990899088908890889060040161231e565b602060405180830381600087803b1580156115cf57600080fd5b505af19250505080156115ff575060408051601f3d908101601f191682019092526115fc91810190612213565b60015b61160b57611340612230565b6001600160e01b0319811663f23a6e6160e01b146114115760405162461bcd60e51b81526004016103ce906122d6565b6001600160a01b03831661169d5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016103ce565b336116cd818560006116ae87611526565b6116b787611526565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b03881684529091529020546116fb908390612067565b60008481526001602090815260408083206001600160a01b0389168452909152812091909155600380549161172f8361219e565b909155505060408051848152602081018490526000916001600160a01b0387811692908516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a450505050565b82805461179290611eb0565b90600052602060002090601f0160209004810192826117b457600085556117fa565b82601f106117cd57805160ff19168380011785556117fa565b828001600101855582156117fa579182015b828111156117fa5782518255916020019190600101906117df565b5061180692915061180a565b5090565b5b80821115611806576000815560010161180b565b80356001600160a01b03811681146105c857600080fd5b6000806040838503121561184957600080fd5b6118528361181f565b946020939093013593505050565b6001600160e01b031981168114610a6d57600080fd5b60006020828403121561188857600080fd5b813561189381611860565b9392505050565b60005b838110156118b557818101518382015260200161189d565b838111156118c4576000848401525b50505050565b600081518084526118e281602086016020860161189a565b601f01601f19169290920160200192915050565b60208152600061189360208301846118ca565b60008083601f84011261191b57600080fd5b50813567ffffffffffffffff81111561193357600080fd5b6020830191508360208260051b850101111561194e57600080fd5b9250929050565b60008060008060006060868803121561196d57600080fd5b6119768661181f565b9450602086013567ffffffffffffffff8082111561199357600080fd5b61199f89838a01611909565b909650945060408801359150808211156119b857600080fd5b506119c588828901611909565b969995985093965092949392505050565b6000602082840312156119e857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611a2b57611a2b6119ef565b6040525050565b600067ffffffffffffffff821115611a4c57611a4c6119ef565b5060051b60200190565b600082601f830112611a6757600080fd5b81356020611a7482611a32565b604051611a818282611a05565b83815260059390931b8501820192828101915086841115611aa157600080fd5b8286015b84811015611abc5780358352918301918301611aa5565b509695505050505050565b600067ffffffffffffffff831115611ae157611ae16119ef565b604051611af8601f8501601f191660200182611a05565b809150838152848484011115611b0d57600080fd5b83836020830137600060208583010152509392505050565b600082601f830112611b3657600080fd5b61189383833560208501611ac7565b600080600080600060a08688031215611b5d57600080fd5b611b668661181f565b9450611b746020870161181f565b9350604086013567ffffffffffffffff80821115611b9157600080fd5b611b9d89838a01611a56565b94506060880135915080821115611bb357600080fd5b611bbf89838a01611a56565b93506080880135915080821115611bd557600080fd5b50611be288828901611b25565b9150509295509295909350565b60008060408385031215611c0257600080fd5b823567ffffffffffffffff80821115611c1a57600080fd5b818501915085601f830112611c2e57600080fd5b81356020611c3b82611a32565b604051611c488282611a05565b83815260059390931b8501820192828101915089841115611c6857600080fd5b948201945b83861015611c8d57611c7e8661181f565b82529482019490820190611c6d565b96505086013592505080821115611ca357600080fd5b50611cb085828601611a56565b9150509250929050565b600081518084526020808501945080840160005b83811015611cea57815187529582019590820190600101611cce565b509495945050505050565b6020815260006118936020830184611cba565b600060208284031215611d1a57600080fd5b813567ffffffffffffffff811115611d3157600080fd5b8201601f81018413611d4257600080fd5b611d5184823560208401611ac7565b949350505050565b60008060408385031215611d6c57600080fd5b611d758361181f565b915060208301358015158114611d8a57600080fd5b809150509250929050565b60008060408385031215611da857600080fd5b611db18361181f565b9150611dbf6020840161181f565b90509250929050565b600080600080600060a08688031215611de057600080fd5b611de98661181f565b9450611df76020870161181f565b93506040860135925060608601359150608086013567ffffffffffffffff811115611e2157600080fd5b611be288828901611b25565b600060208284031215611e3f57600080fd5b6118938261181f565b600080600060608486031215611e5d57600080fd5b611e668461181f565b95602085013595506040909401359392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ec457607f821691505b60208210811415611ee557634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611efd81856020860161189a565b9290920192915050565b600080845481600182811c915080831680611f2357607f831692505b6020808410821415611f4357634e487b7160e01b86526022600452602486fd5b818015611f575760018114611f6857611f95565b60ff19861689528489019650611f95565b60008b81526020902060005b86811015611f8d5781548b820152908501908301611f74565b505084890196505b505050505050611fa58185611eeb565b95945050505050565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561207957612079612051565b500390565b6000821982111561209157612091612051565b500190565b60006000198214156120aa576120aa612051565b5060010190565b6040815260006120c46040830185611cba565b8281036020840152611fa58185611cba565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261218557612185612160565b500490565b60008261219957612199612160565b500690565b6000816121ad576121ad612051565b506000190190565b6001600160a01b0386811682528516602082015260a0604082018190526000906121e190830186611cba565b82810360608401526121f38186611cba565b9050828103608084015261220781856118ca565b98975050505050505050565b60006020828403121561222557600080fd5b815161189381611860565b600060033d11156122495760046000803e5060005160e01c5b90565b600060443d101561225a5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561228a57505050505090565b82850191508151818111156122a25750505050505090565b843d87010160208285010111156122bc5750505050505090565b6122cb60208286010187611a05565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612358908301846118ca565b97965050505050505056fea2646970667358221220e8f447f4b333fa17b9544556abea56c54131115af441af88a14b863169889db864736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d55686b7371537a5245584b37346a426761334d444e46636b6350615362376750415167797831794b55427a4d2f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : uri (string): https://ipfs.io/ipfs/QmUhksqSzREXK74jBga3MDNFckcPaSb7gPAQgyx1yKUBzM/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d55686b7371537a5245
Arg [3] : 584b37346a426761334d444e46636b6350615362376750415167797831794b55
Arg [4] : 427a4d2f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36351:1705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24439:223;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;24439:223:0;;;;;;;;9339:142;;;;;;:::i;:::-;-1:-1:-1;;;;;;9440:33:0;9416:4;9440:33;;;;;;;;;;;;;;9339:142;;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;9339:142:0;1019:187:1;36718:102:0;36782:30;;;;;;;;;;;;-1:-1:-1;;;36782:30:0;;;;36718:102;;;;;;;:::i;37122:263::-;;;;;;:::i;:::-;;:::i;:::-;;23726:562;;;;;;:::i;:::-;;:::i;21831:30::-;;;;;;27099:1119;;;;;;:::i;:::-;;:::i;37498:142::-;;;:::i;24828:634::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37393:97::-;;;;;;:::i;:::-;;:::i;20604:148::-;;;:::i;19953:87::-;20026:6;;19953:87;;-1:-1:-1;;;;;20026:6:0;;;8862:51:1;;8850:2;8835:18;19953:87:0;8716:203:1;36934:88:0;37000:14;;;;;;;;;;;;-1:-1:-1;;;37000:14:0;;;;36934:88;;25535:311;;;;;;:::i;:::-;;:::i;36447:23::-;;;;;-1:-1:-1;;;36447:23:0;;;;;;37030:84;;;:::i;37692:361::-;;;:::i;25918:160::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26033:27:0;;;26009:4;26033:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;25918:160;26150:872;;;;;;:::i;:::-;;:::i;20907:244::-;;;;;;:::i;:::-;;:::i;36057:287::-;;;;;;:::i;:::-;;:::i;36420:20::-;;;;;-1:-1:-1;;;36420:20:0;;;;;;24439:223;24517:7;-1:-1:-1;;;;;24545:21:0;;24537:77;;;;-1:-1:-1;;;24537:77:0;;10872:2:1;24537:77:0;;;10854:21:1;10911:2;10891:18;;;10884:30;10950:34;10930:18;;;10923:62;-1:-1:-1;;;11001:18:1;;;10994:41;11052:19;;24537:77:0;;;;;;;;;-1:-1:-1;24632:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;24632:22:0;;;;;;;;;;;;24439:223::o;37122:263::-;20026:6;;-1:-1:-1;;;;;20026:6:0;8180:10;20173:23;20165:68;;;;-1:-1:-1;;;20165:68:0;;;;;;;:::i;:::-;37253:8:::1;::::0;-1:-1:-1;;;37253:8:0;::::1;;;37252:9;37244:56;;;::::0;-1:-1:-1;;;37244:56:0;;11645:2:1;37244:56:0::1;::::0;::::1;11627:21:1::0;11684:2;11664:18;;;11657:30;11723:34;11703:18;;;11696:62;-1:-1:-1;;;11774:18:1;;;11767:33;11817:19;;37244:56:0::1;11443:399:1::0;37244:56:0::1;37313:38;37324:8;37334:3;;37313:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;37313:38:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;37339:7:0;;-1:-1:-1;37339:7:0;;;;37313:38;::::1;::::0;37339:7;;37313:38;37339:7;37313:38;::::1;;::::0;::::1;::::0;;;-1:-1:-1;37313:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;-1:-1:-1;37313:10:0::1;::::0;-1:-1:-1;;37313:38:0:i:1;:::-;-1:-1:-1::0;;37362:8:0::1;:15:::0;;-1:-1:-1;;;;37362:15:0::1;-1:-1:-1::0;;;37362:15:0::1;::::0;;-1:-1:-1;;;37122:263:0:o;23726:562::-;23783:13;23822:11;;23817:2;:16;23809:47;;;;-1:-1:-1;;;23809:47:0;;12049:2:1;23809:47:0;;;12031:21:1;12088:2;12068:18;;;12061:30;-1:-1:-1;;;12107:18:1;;;12100:48;12165:18;;23809:47:0;11847:342:1;23809:47:0;23971:4;23965:18;;;;;:::i;:::-;:23;23961:320;;-1:-1:-1;23961:320:0;;-1:-1:-1;;24005:9:0;;;;;;;;;-1:-1:-1;24005:9:0;;;23726:562::o;23961:320::-;24248:4;24254:13;:2;:11;:13::i;:::-;24231:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24217:52;;23726:562;;;:::o;23961:320::-;23726:562;;;:::o;27099:1119::-;27364:7;:14;27350:3;:10;:28;27342:81;;;;-1:-1:-1;;;27342:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27442:16:0;;27434:66;;;;-1:-1:-1;;;27434:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27533:20:0;;8180:10;27533:20;;:60;;-1:-1:-1;27557:36:0;27574:4;8180:10;25918:160;:::i;27557:36::-;27511:160;;;;-1:-1:-1;;;27511:160:0;;15091:2:1;27511:160:0;;;15073:21:1;15130:2;15110:18;;;15103:30;15169:34;15149:18;;;15142:62;-1:-1:-1;;;15220:18:1;;;15213:48;15278:19;;27511:160:0;14889:414:1;27511:160:0;8180:10;27684:16;27801:257;27825:3;:10;27821:1;:14;27801:257;;;27857:10;27870:3;27874:1;27870:6;;;;;;;;:::i;:::-;;;;;;;27857:19;;27891:14;27908:7;27916:1;27908:10;;;;;;;;:::i;:::-;;;;;;;;;;;;27957:13;;;;:9;:13;;;;;;-1:-1:-1;;;;;27957:19:0;;;;;;;;;;;;27908:10;;-1:-1:-1;27957:28:0;;27908:10;;27957:28;:::i;:::-;27935:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27935:19:0;;;;;;;;;;:50;;;;28020:17;;;;;;:26;;28040:6;;28020:26;:::i;:::-;28000:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28000:17:0;;;;;;;;;;:46;;;;-1:-1:-1;27837:3:0;;;:::i;:::-;;;27801:257;;;;28105:2;-1:-1:-1;;;;;28075:47:0;28099:4;-1:-1:-1;;;;;28075:47:0;28089:8;-1:-1:-1;;;;;28075:47:0;;28109:3;28114:7;28075:47;;;;;;;:::i;:::-;;;;;;;;28135:75;28171:8;28181:4;28187:2;28191:3;28196:7;28205:4;28135:35;:75::i;:::-;27331:887;27099:1119;;;;;:::o;37498:142::-;20026:6;;-1:-1:-1;;;;;20026:6:0;8180:10;20173:23;20165:68;;;;-1:-1:-1;;;20165:68:0;;;;;;;:::i;:::-;37595:37:::1;::::0;37563:21:::1;::::0;37603:10:::1;::::0;37595:37;::::1;;;::::0;37563:21;;37548:12:::1;37595:37:::0;37548:12;37595:37;37563:21;37603:10;37595:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37537:103;37498:142::o:0;24828:634::-;24992:16;25053:3;:10;25034:8;:15;:29;25026:83;;;;-1:-1:-1;;;25026:83:0;;16647:2:1;25026:83:0;;;16629:21:1;16686:2;16666:18;;;16659:30;16725:34;16705:18;;;16698:62;-1:-1:-1;;;16776:18:1;;;16769:39;16825:19;;25026:83:0;16445:405:1;25026:83:0;25122:30;25169:8;:15;25155:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25155:30:0;;25122:63;;25203:9;25198:224;25222:8;:15;25218:1;:19;25198:224;;;25290:1;-1:-1:-1;;;;;25267:25:0;:8;25276:1;25267:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;25267:25:0;;;25259:87;;;;-1:-1:-1;;;25259:87:0;;17057:2:1;25259:87:0;;;17039:21:1;17096:2;17076:18;;;17069:30;17135:34;17115:18;;;17108:62;-1:-1:-1;;;17186:18:1;;;17179:47;17243:19;;25259:87:0;16855:413:1;25259:87:0;25380:9;:17;25390:3;25394:1;25390:6;;;;;;;;:::i;:::-;;;;;;;25380:17;;;;;;;;;;;:30;25398:8;25407:1;25398:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;25380:30:0;-1:-1:-1;;;;;25380:30:0;;;;;;;;;;;;;25361:13;25375:1;25361:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25239:3;;;:::i;:::-;;;25198:224;;;-1:-1:-1;25441:13:0;24828:634;-1:-1:-1;;;24828:634:0:o;37393:97::-;20026:6;;-1:-1:-1;;;;;20026:6:0;8180:10;20173:23;20165:68;;;;-1:-1:-1;;;20165:68:0;;;;;;;:::i;:::-;37466:16:::1;37474:7;37466;:16::i;:::-;37393:97:::0;:::o;20604:148::-;20026:6;;-1:-1:-1;;;;;20026:6:0;8180:10;20173:23;20165:68;;;;-1:-1:-1;;;20165:68:0;;;;;;;:::i;:::-;20695:6:::1;::::0;20674:40:::1;::::0;20711:1:::1;::::0;-1:-1:-1;;;;;20695:6:0::1;::::0;20674:40:::1;::::0;20711:1;;20674:40:::1;20725:6;:19:::0;;-1:-1:-1;;;;;;20725:19:0::1;::::0;;20604:148::o;25535:311::-;8180:10;-1:-1:-1;;;;;25638:24:0;;;;25630:78;;;;-1:-1:-1;;;25630:78:0;;17475:2:1;25630:78:0;;;17457:21:1;17514:2;17494:18;;;17487:30;17553:34;17533:18;;;17526:62;-1:-1:-1;;;17604:18:1;;;17597:39;17653:19;;25630:78:0;17273:405:1;25630:78:0;8180:10;25721:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25721:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25721:53:0;;;;;;;;;;25790:48;;1159:41:1;;;25721:42:0;;8180:10;25790:48;;1132:18:1;25790:48:0;;;;;;;25535:311;;:::o;37030:84::-;20026:6;;-1:-1:-1;;;;;20026:6:0;8180:10;20173:23;20165:68;;;;-1:-1:-1;;;20165:68:0;;;;;;;:::i;:::-;37095:11:::1;::::0;;-1:-1:-1;;;;37080:26:0;::::1;-1:-1:-1::0;;;37095:11:0;;;::::1;;;37094:12;37080:26:::0;;::::1;;::::0;;37030:84::o;37692:361::-;37739:11;;-1:-1:-1;;;37739:11:0;;;;37731:52;;;;-1:-1:-1;;;37731:52:0;;17885:2:1;37731:52:0;;;17867:21:1;17924:2;17904:18;;;17897:30;17963;17943:18;;;17936:58;18011:18;;37731:52:0;17683:352:1;37731:52:0;37809:10;37802:18;;;;:6;:18;;;;;;37824:1;37802:23;;37794:76;;;;-1:-1:-1;;;37794:76:0;;18242:2:1;37794:76:0;;;18224:21:1;18281:2;18261:18;;;18254:30;18320:34;18300:18;;;18293:62;-1:-1:-1;;;18371:18:1;;;18364:38;18419:19;;37794:76:0;18040:404:1;37794:76:0;37914:9;;37889:19;;:21;;37909:1;37889:21;:::i;:::-;:34;;37881:74;;;;-1:-1:-1;;;37881:74:0;;18651:2:1;37881:74:0;;;18633:21:1;18690:2;18670:18;;;18663:30;18729:29;18709:18;;;18702:57;18776:18;;37881:74:0;18449:351:1;37881:74:0;37975:10;37968:18;;;;:6;:18;;;;;;;;37989:1;37968:22;;;;38019:19;;38001:44;;;;;;;;;;;;;37975:10;38019:19;;38001:5;:44::i;:::-;37692:361::o;26150:872::-;-1:-1:-1;;;;;26376:16:0;;26368:66;;;;-1:-1:-1;;;26368:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26467:20:0;;8180:10;26467:20;;:60;;-1:-1:-1;26491:36:0;26508:4;8180:10;25918:160;:::i;26491:36::-;26445:151;;;;-1:-1:-1;;;26445:151:0;;;;;;;:::i;:::-;8180:10;26653:96;8180:10;26684:4;26690:2;26694:21;26712:2;26694:17;:21::i;:::-;26717:25;26735:6;26717:17;:25::i;:::-;27099:1119;;;;;;26653:96;26784:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;26784:19:0;;;;;;;;;;:28;;26806:6;;26784:28;:::i;:::-;26762:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;26762:19:0;;;;;;;;;;:50;;;;26843:17;;;;;;:26;;26863:6;;26843:26;:::i;:::-;26823:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;26823:17:0;;;;;;;;;;;;;:46;;;;26887;;19389:25:1;;;19430:18;;;19423:34;;;26887:46:0;;;;;;;;;19362:18:1;26887:46:0;;;;;;;26946:68;26977:8;26987:4;26993:2;26997;27001:6;27009:4;26946:30;:68::i;20907:244::-;20026:6;;-1:-1:-1;;;;;20026:6:0;8180:10;20173:23;20165:68;;;;-1:-1:-1;;;20165:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20996:22:0;::::1;20988:73;;;::::0;-1:-1:-1;;;20988:73:0;;19670:2:1;20988:73:0::1;::::0;::::1;19652:21:1::0;19709:2;19689:18;;;19682:30;19748:34;19728:18;;;19721:62;-1:-1:-1;;;19799:18:1;;;19792:36;19845:19;;20988:73:0::1;19468:402:1::0;20988:73:0::1;21098:6;::::0;21077:38:::1;::::0;-1:-1:-1;;;;;21077:38:0;;::::1;::::0;21098:6:::1;::::0;21077:38:::1;::::0;21098:6:::1;::::0;21077:38:::1;21126:6;:17:::0;;-1:-1:-1;;;;;;21126:17:0::1;-1:-1:-1::0;;;;;21126:17:0;;;::::1;::::0;;;::::1;::::0;;20907:244::o;36057:287::-;-1:-1:-1;;;;;36163:23:0;;8180:10;36163:23;;:66;;-1:-1:-1;36190:39:0;36207:7;8180:10;25918:160;:::i;36190:39::-;36141:157;;;;-1:-1:-1;;;36141:157:0;;;;;;;:::i;:::-;36311:25;36317:7;36326:2;36330:5;36311;:25::i;:::-;36057:287;;;:::o;30513:740::-;-1:-1:-1;;;;;30648:16:0;;30640:62;;;;-1:-1:-1;;;30640:62:0;;;;;;;:::i;:::-;30735:7;:14;30721:3;:10;:28;30713:81;;;;-1:-1:-1;;;30713:81:0;;;;;;;:::i;:::-;8180:10;30807:16;30930:151;30951:3;:10;30947:1;:14;30930:151;;;31020:9;:17;31030:3;31034:1;31030:6;;;;;;;;:::i;:::-;;;;;;;31020:17;;;;;;;;;;;:21;31038:2;-1:-1:-1;;;;;31020:21:0;-1:-1:-1;;;;;31020:21:0;;;;;;;;;;;;;31007:7;31015:1;31007:10;;;;;;;;:::i;:::-;;;;;;;:34;;;;:::i;:::-;30983:9;:17;30993:3;30997:1;30993:6;;;;;;;;:::i;:::-;;;;;;;30983:17;;;;;;;;;;;:21;31001:2;-1:-1:-1;;;;;30983:21:0;-1:-1:-1;;;;;30983:21:0;;;;;;;;;;;;:58;;;;31056:11;;:13;;;;;;;;;:::i;:::-;;;;;;30963:3;;;;;:::i;:::-;;;;30930:151;;;;31134:2;-1:-1:-1;;;;;31098:53:0;31130:1;-1:-1:-1;;;;;31098:53:0;31112:8;-1:-1:-1;;;;;31098:53:0;;31138:3;31143:7;31098:53;;;;;;;:::i;:::-;;;;;;;;31164:81;31200:8;31218:1;31222:2;31226:3;31231:7;31240:4;31164:35;:81::i;18187:751::-;18243:13;18464:10;18460:53;;-1:-1:-1;;18491:10:0;;;;;;;;;;;;-1:-1:-1;;;18491:10:0;;;;;18187:751::o;18460:53::-;18538:5;18523:12;18579:78;18586:9;;18579:78;;18612:8;;;;:::i;:::-;;-1:-1:-1;18635:10:0;;-1:-1:-1;18643:2:0;18635:10;;:::i;:::-;;;18579:78;;;18667:19;18699:6;18689:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18689:17:0;-1:-1:-1;18757:5:0;;-1:-1:-1;18667:39:0;-1:-1:-1;18733:6:0;18773:126;18780:9;;18773:126;;18850:9;18857:2;18850:4;:9;:::i;:::-;18837:23;;:2;:23;:::i;:::-;18824:38;;18806:6;18813:7;;;:::i;:::-;;;;18806:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18806:56:0;;;;;;;;-1:-1:-1;18877:10:0;18885:2;18877:10;;:::i;:::-;;;18773:126;;;-1:-1:-1;18923:6:0;18187:751;-1:-1:-1;;;;18187:751:0:o;34809:799::-;-1:-1:-1;;;;;35063:13:0;;11144:20;11183:8;35059:542;;35099:79;;-1:-1:-1;;;35099:79:0;;-1:-1:-1;;;;;35099:43:0;;;;;:79;;35143:8;;35153:4;;35159:3;;35164:7;;35173:4;;35099:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35099:79:0;;;;;;;;-1:-1:-1;;35099:79:0;;;;;;;;;;;;:::i;:::-;;;35095:495;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35463:6;35456:14;;-1:-1:-1;;;35456:14:0;;;;;;;;:::i;35095:495::-;;;35512:62;;-1:-1:-1;;;35512:62:0;;22951:2:1;35512:62:0;;;22933:21:1;22990:2;22970:18;;;22963:30;23029:34;23009:18;;;23002:62;-1:-1:-1;;;23080:18:1;;;23073:50;23140:19;;35512:62:0;22749:416:1;35095:495:0;-1:-1:-1;;;;;;35228:64:0;;-1:-1:-1;;;35228:64:0;35224:163;;35317:50;;-1:-1:-1;;;35317:50:0;;;;;;;:::i;35224:163::-;35179:223;34809:799;;;;;;:::o;29062:88::-;29129:13;;;;:4;;:13;;;;;:::i;29551:606::-;-1:-1:-1;;;;;29666:21:0;;29658:67;;;;-1:-1:-1;;;29658:67:0;;;;;;;:::i;:::-;8180:10;29782:107;8180:10;29738:16;29825:7;29834:21;29852:2;29834:17;:21::i;29782:107::-;29927:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29927:22:0;;;;;;;;;;:31;;29952:6;;29927:31;:::i;:::-;29902:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29902:22:0;;;;;;;;;:56;;;;29969:11;:13;;;;;;:::i;:::-;;;;-1:-1:-1;;30000:57:0;;;19389:25:1;;;19445:2;19430:18;;19423:34;;;-1:-1:-1;;;;;30000:57:0;;;;30033:1;;30000:57;;;;;;19362:18:1;30000:57:0;;;;;;;30070:79;30101:8;30119:1;30123:7;30132:2;30136:6;30144:4;30070:30;:79::i;35616:198::-;35736:16;;;35750:1;35736:16;;;;;;;;;35682;;35711:22;;35736:16;;;;;;;;;;;;-1:-1:-1;35736:16:0;35711:41;;35774:7;35763:5;35769:1;35763:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;35801:5;35616:198;-1:-1:-1;;35616:198:0:o;34039:762::-;-1:-1:-1;;;;;34268:13:0;;11144:20;11183:8;34264:530;;34304:72;;-1:-1:-1;;;34304:72:0;;-1:-1:-1;;;;;34304:38:0;;;;;:72;;34343:8;;34353:4;;34359:2;;34363:6;;34371:4;;34304:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34304:72:0;;;;;;;;-1:-1:-1;;34304:72:0;;;;;;;;;;;;:::i;:::-;;;34300:483;;;;:::i;:::-;-1:-1:-1;;;;;;34426:59:0;;-1:-1:-1;;;34426:59:0;34422:158;;34510:50;;-1:-1:-1;;;34510:50:0;;;;;;;:::i;31512:495::-;-1:-1:-1;;;;;31608:21:0;;31600:69;;;;-1:-1:-1;;;31600:69:0;;24358:2:1;31600:69:0;;;24340:21:1;24397:2;24377:18;;;24370:30;24436:34;24416:18;;;24409:62;-1:-1:-1;;;24487:18:1;;;24480:33;24530:19;;31600:69:0;24156:399:1;31600:69:0;8180:10;31726:105;8180:10;31757:7;31682:16;31778:21;31796:2;31778:17;:21::i;:::-;31801:25;31819:6;31801:17;:25::i;:::-;-1:-1:-1;;31726:105:0;;;;;;;;;-1:-1:-1;31726:105:0;;-1:-1:-1;;;27099:1119:0;31726:105;31869:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;31869:22:0;;;;;;;;;;:31;;31894:6;;31869:31;:::i;:::-;31844:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;31844:22:0;;;;;;;;;:56;;;;31911:11;:13;;;;;;:::i;:::-;;;;-1:-1:-1;;31942:57:0;;;19389:25:1;;;19445:2;19430:18;;19423:34;;;31984:1:0;;-1:-1:-1;;;;;31942:57:0;;;;;;;;;;19362:18:1;31942:57:0;;;;;;;31589:418;31512:495;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:254;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;1459:1;1450:6;1445:3;1441:16;1434:27;1415:48;;1211:258;;;:::o;1474:269::-;1527:3;1565:5;1559:12;1592:6;1587:3;1580:19;1608:63;1664:6;1657:4;1652:3;1648:14;1641:4;1634:5;1630:16;1608:63;:::i;:::-;1725:2;1704:15;-1:-1:-1;;1700:29:1;1691:39;;;;1732:4;1687:50;;1474:269;-1:-1:-1;;1474:269:1:o;1748:231::-;1897:2;1886:9;1879:21;1860:4;1917:56;1969:2;1958:9;1954:18;1946:6;1917:56;:::i;1984:367::-;2047:8;2057:6;2111:3;2104:4;2096:6;2092:17;2088:27;2078:55;;2129:1;2126;2119:12;2078:55;-1:-1:-1;2152:20:1;;2195:18;2184:30;;2181:50;;;2227:1;2224;2217:12;2181:50;2264:4;2256:6;2252:17;2240:29;;2324:3;2317:4;2307:6;2304:1;2300:14;2292:6;2288:27;2284:38;2281:47;2278:67;;;2341:1;2338;2331:12;2278:67;1984:367;;;;;:::o;2356:847::-;2487:6;2495;2503;2511;2519;2572:2;2560:9;2551:7;2547:23;2543:32;2540:52;;;2588:1;2585;2578:12;2540:52;2611:29;2630:9;2611:29;:::i;:::-;2601:39;;2691:2;2680:9;2676:18;2663:32;2714:18;2755:2;2747:6;2744:14;2741:34;;;2771:1;2768;2761:12;2741:34;2810:70;2872:7;2863:6;2852:9;2848:22;2810:70;:::i;:::-;2899:8;;-1:-1:-1;2784:96:1;-1:-1:-1;2987:2:1;2972:18;;2959:32;;-1:-1:-1;3003:16:1;;;3000:36;;;3032:1;3029;3022:12;3000:36;;3071:72;3135:7;3124:8;3113:9;3109:24;3071:72;:::i;:::-;2356:847;;;;-1:-1:-1;2356:847:1;;-1:-1:-1;3162:8:1;;3045:98;2356:847;-1:-1:-1;;;2356:847:1:o;3208:180::-;3267:6;3320:2;3308:9;3299:7;3295:23;3291:32;3288:52;;;3336:1;3333;3326:12;3288:52;-1:-1:-1;3359:23:1;;3208:180;-1:-1:-1;3208:180:1:o;3393:127::-;3454:10;3449:3;3445:20;3442:1;3435:31;3485:4;3482:1;3475:15;3509:4;3506:1;3499:15;3525:249;3635:2;3616:13;;-1:-1:-1;;3612:27:1;3600:40;;3670:18;3655:34;;3691:22;;;3652:62;3649:88;;;3717:18;;:::i;:::-;3753:2;3746:22;-1:-1:-1;;3525:249:1:o;3779:183::-;3839:4;3872:18;3864:6;3861:30;3858:56;;;3894:18;;:::i;:::-;-1:-1:-1;3939:1:1;3935:14;3951:4;3931:25;;3779:183::o;3967:724::-;4021:5;4074:3;4067:4;4059:6;4055:17;4051:27;4041:55;;4092:1;4089;4082:12;4041:55;4128:6;4115:20;4154:4;4177:43;4217:2;4177:43;:::i;:::-;4249:2;4243:9;4261:31;4289:2;4281:6;4261:31;:::i;:::-;4327:18;;;4419:1;4415:10;;;;4403:23;;4399:32;;;4361:15;;;;-1:-1:-1;4443:15:1;;;4440:35;;;4471:1;4468;4461:12;4440:35;4507:2;4499:6;4495:15;4519:142;4535:6;4530:3;4527:15;4519:142;;;4601:17;;4589:30;;4639:12;;;;4552;;4519:142;;;-1:-1:-1;4679:6:1;3967:724;-1:-1:-1;;;;;;3967:724:1:o;4696:468::-;4760:5;4794:18;4786:6;4783:30;4780:56;;;4816:18;;:::i;:::-;4865:2;4859:9;4877:69;4934:2;4913:15;;-1:-1:-1;;4909:29:1;4940:4;4905:40;4859:9;4877:69;:::i;:::-;4964:6;4955:15;;4994:6;4986;4979:22;5034:3;5025:6;5020:3;5016:16;5013:25;5010:45;;;5051:1;5048;5041:12;5010:45;5101:6;5096:3;5089:4;5081:6;5077:17;5064:44;5156:1;5149:4;5140:6;5132;5128:19;5124:30;5117:41;;4696:468;;;;;:::o;5169:220::-;5211:5;5264:3;5257:4;5249:6;5245:17;5241:27;5231:55;;5282:1;5279;5272:12;5231:55;5304:79;5379:3;5370:6;5357:20;5350:4;5342:6;5338:17;5304:79;:::i;5394:943::-;5548:6;5556;5564;5572;5580;5633:3;5621:9;5612:7;5608:23;5604:33;5601:53;;;5650:1;5647;5640:12;5601:53;5673:29;5692:9;5673:29;:::i;:::-;5663:39;;5721:38;5755:2;5744:9;5740:18;5721:38;:::i;:::-;5711:48;;5810:2;5799:9;5795:18;5782:32;5833:18;5874:2;5866:6;5863:14;5860:34;;;5890:1;5887;5880:12;5860:34;5913:61;5966:7;5957:6;5946:9;5942:22;5913:61;:::i;:::-;5903:71;;6027:2;6016:9;6012:18;5999:32;5983:48;;6056:2;6046:8;6043:16;6040:36;;;6072:1;6069;6062:12;6040:36;6095:63;6150:7;6139:8;6128:9;6124:24;6095:63;:::i;:::-;6085:73;;6211:3;6200:9;6196:19;6183:33;6167:49;;6241:2;6231:8;6228:16;6225:36;;;6257:1;6254;6247:12;6225:36;;6280:51;6323:7;6312:8;6301:9;6297:24;6280:51;:::i;:::-;6270:61;;;5394:943;;;;;;;;:::o;6342:1208::-;6460:6;6468;6521:2;6509:9;6500:7;6496:23;6492:32;6489:52;;;6537:1;6534;6527:12;6489:52;6577:9;6564:23;6606:18;6647:2;6639:6;6636:14;6633:34;;;6663:1;6660;6653:12;6633:34;6701:6;6690:9;6686:22;6676:32;;6746:7;6739:4;6735:2;6731:13;6727:27;6717:55;;6768:1;6765;6758:12;6717:55;6804:2;6791:16;6826:4;6849:43;6889:2;6849:43;:::i;:::-;6921:2;6915:9;6933:31;6961:2;6953:6;6933:31;:::i;:::-;6999:18;;;7087:1;7083:10;;;;7075:19;;7071:28;;;7033:15;;;;-1:-1:-1;7111:19:1;;;7108:39;;;7143:1;7140;7133:12;7108:39;7167:11;;;;7187:148;7203:6;7198:3;7195:15;7187:148;;;7269:23;7288:3;7269:23;:::i;:::-;7257:36;;7220:12;;;;7313;;;;7187:148;;;7354:6;-1:-1:-1;;7398:18:1;;7385:32;;-1:-1:-1;;7429:16:1;;;7426:36;;;7458:1;7455;7448:12;7426:36;;7481:63;7536:7;7525:8;7514:9;7510:24;7481:63;:::i;:::-;7471:73;;;6342:1208;;;;;:::o;7555:435::-;7608:3;7646:5;7640:12;7673:6;7668:3;7661:19;7699:4;7728:2;7723:3;7719:12;7712:19;;7765:2;7758:5;7754:14;7786:1;7796:169;7810:6;7807:1;7804:13;7796:169;;;7871:13;;7859:26;;7905:12;;;;7940:15;;;;7832:1;7825:9;7796:169;;;-1:-1:-1;7981:3:1;;7555:435;-1:-1:-1;;;;;7555:435:1:o;7995:261::-;8174:2;8163:9;8156:21;8137:4;8194:56;8246:2;8235:9;8231:18;8223:6;8194:56;:::i;8261:450::-;8330:6;8383:2;8371:9;8362:7;8358:23;8354:32;8351:52;;;8399:1;8396;8389:12;8351:52;8439:9;8426:23;8472:18;8464:6;8461:30;8458:50;;;8504:1;8501;8494:12;8458:50;8527:22;;8580:4;8572:13;;8568:27;-1:-1:-1;8558:55:1;;8609:1;8606;8599:12;8558:55;8632:73;8697:7;8692:2;8679:16;8674:2;8670;8666:11;8632:73;:::i;:::-;8622:83;8261:450;-1:-1:-1;;;;8261:450:1:o;8924:347::-;8989:6;8997;9050:2;9038:9;9029:7;9025:23;9021:32;9018:52;;;9066:1;9063;9056:12;9018:52;9089:29;9108:9;9089:29;:::i;:::-;9079:39;;9168:2;9157:9;9153:18;9140:32;9215:5;9208:13;9201:21;9194:5;9191:32;9181:60;;9237:1;9234;9227:12;9181:60;9260:5;9250:15;;;8924:347;;;;;:::o;9276:260::-;9344:6;9352;9405:2;9393:9;9384:7;9380:23;9376:32;9373:52;;;9421:1;9418;9411:12;9373:52;9444:29;9463:9;9444:29;:::i;:::-;9434:39;;9492:38;9526:2;9515:9;9511:18;9492:38;:::i;:::-;9482:48;;9276:260;;;;;:::o;9541:606::-;9645:6;9653;9661;9669;9677;9730:3;9718:9;9709:7;9705:23;9701:33;9698:53;;;9747:1;9744;9737:12;9698:53;9770:29;9789:9;9770:29;:::i;:::-;9760:39;;9818:38;9852:2;9841:9;9837:18;9818:38;:::i;:::-;9808:48;;9903:2;9892:9;9888:18;9875:32;9865:42;;9954:2;9943:9;9939:18;9926:32;9916:42;;10009:3;9998:9;9994:19;9981:33;10037:18;10029:6;10026:30;10023:50;;;10069:1;10066;10059:12;10023:50;10092:49;10133:7;10124:6;10113:9;10109:22;10092:49;:::i;10152:186::-;10211:6;10264:2;10252:9;10243:7;10239:23;10235:32;10232:52;;;10280:1;10277;10270:12;10232:52;10303:29;10322:9;10303:29;:::i;10343:322::-;10420:6;10428;10436;10489:2;10477:9;10468:7;10464:23;10460:32;10457:52;;;10505:1;10502;10495:12;10457:52;10528:29;10547:9;10528:29;:::i;:::-;10518:39;10604:2;10589:18;;10576:32;;-1:-1:-1;10655:2:1;10640:18;;;10627:32;;10343:322;-1:-1:-1;;;10343:322:1:o;11082:356::-;11284:2;11266:21;;;11303:18;;;11296:30;11362:34;11357:2;11342:18;;11335:62;11429:2;11414:18;;11082:356::o;12194:380::-;12273:1;12269:12;;;;12316;;;12337:61;;12391:4;12383:6;12379:17;12369:27;;12337:61;12444:2;12436:6;12433:14;12413:18;12410:38;12407:161;;;12490:10;12485:3;12481:20;12478:1;12471:31;12525:4;12522:1;12515:15;12553:4;12550:1;12543:15;12407:161;;12194:380;;;:::o;12705:185::-;12747:3;12785:5;12779:12;12800:52;12845:6;12840:3;12833:4;12826:5;12822:16;12800:52;:::i;:::-;12868:16;;;;;12705:185;-1:-1:-1;;12705:185:1:o;12895:1174::-;13071:3;13100:1;13133:6;13127:13;13163:3;13185:1;13213:9;13209:2;13205:18;13195:28;;13273:2;13262:9;13258:18;13295;13285:61;;13339:4;13331:6;13327:17;13317:27;;13285:61;13365:2;13413;13405:6;13402:14;13382:18;13379:38;13376:165;;;-1:-1:-1;;;13440:33:1;;13496:4;13493:1;13486:15;13526:4;13447:3;13514:17;13376:165;13557:18;13584:104;;;;13702:1;13697:320;;;;13550:467;;13584:104;-1:-1:-1;;13617:24:1;;13605:37;;13662:16;;;;-1:-1:-1;13584:104:1;;13697:320;12652:1;12645:14;;;12689:4;12676:18;;13792:1;13806:165;13820:6;13817:1;13814:13;13806:165;;;13898:14;;13885:11;;;13878:35;13941:16;;;;13835:10;;13806:165;;;13810:3;;14000:6;13995:3;13991:16;13984:23;;13550:467;;;;;;;14033:30;14059:3;14051:6;14033:30;:::i;:::-;14026:37;12895:1174;-1:-1:-1;;;;;12895:1174:1:o;14074:404::-;14276:2;14258:21;;;14315:2;14295:18;;;14288:30;14354:34;14349:2;14334:18;;14327:62;-1:-1:-1;;;14420:2:1;14405:18;;14398:38;14468:3;14453:19;;14074:404::o;14483:401::-;14685:2;14667:21;;;14724:2;14704:18;;;14697:30;14763:34;14758:2;14743:18;;14736:62;-1:-1:-1;;;14829:2:1;14814:18;;14807:35;14874:3;14859:19;;14483:401::o;15308:127::-;15369:10;15364:3;15360:20;15357:1;15350:31;15400:4;15397:1;15390:15;15424:4;15421:1;15414:15;15440:127;15501:10;15496:3;15492:20;15489:1;15482:31;15532:4;15529:1;15522:15;15556:4;15553:1;15546:15;15572:125;15612:4;15640:1;15637;15634:8;15631:34;;;15645:18;;:::i;:::-;-1:-1:-1;15682:9:1;;15572:125::o;15702:128::-;15742:3;15773:1;15769:6;15766:1;15763:13;15760:39;;;15779:18;;:::i;:::-;-1:-1:-1;15815:9:1;;15702:128::o;15835:135::-;15874:3;-1:-1:-1;;15895:17:1;;15892:43;;;15915:18;;:::i;:::-;-1:-1:-1;15962:1:1;15951:13;;15835:135::o;15975:465::-;16232:2;16221:9;16214:21;16195:4;16258:56;16310:2;16299:9;16295:18;16287:6;16258:56;:::i;:::-;16362:9;16354:6;16350:22;16345:2;16334:9;16330:18;16323:50;16390:44;16427:6;16419;16390:44;:::i;18805:405::-;19007:2;18989:21;;;19046:2;19026:18;;;19019:30;19085:34;19080:2;19065:18;;19058:62;-1:-1:-1;;;19151:2:1;19136:18;;19129:39;19200:3;19185:19;;18805:405::o;19875:397::-;20077:2;20059:21;;;20116:2;20096:18;;;20089:30;20155:34;20150:2;20135:18;;20128:62;-1:-1:-1;;;20221:2:1;20206:18;;20199:31;20262:3;20247:19;;19875:397::o;20277:127::-;20338:10;20333:3;20329:20;20326:1;20319:31;20369:4;20366:1;20359:15;20393:4;20390:1;20383:15;20409:120;20449:1;20475;20465:35;;20480:18;;:::i;:::-;-1:-1:-1;20514:9:1;;20409:120::o;20534:112::-;20566:1;20592;20582:35;;20597:18;;:::i;:::-;-1:-1:-1;20631:9:1;;20534:112::o;20651:136::-;20690:3;20718:5;20708:39;;20727:18;;:::i;:::-;-1:-1:-1;;;20763:18:1;;20651:136::o;20792:838::-;-1:-1:-1;;;;;21189:15:1;;;21171:34;;21241:15;;21236:2;21221:18;;21214:43;21151:3;21288:2;21273:18;;21266:31;;;21114:4;;21320:57;;21357:19;;21349:6;21320:57;:::i;:::-;21425:9;21417:6;21413:22;21408:2;21397:9;21393:18;21386:50;21459:44;21496:6;21488;21459:44;:::i;:::-;21445:58;;21552:9;21544:6;21540:22;21534:3;21523:9;21519:19;21512:51;21580:44;21617:6;21609;21580:44;:::i;:::-;21572:52;20792:838;-1:-1:-1;;;;;;;;20792:838:1:o;21635:249::-;21704:6;21757:2;21745:9;21736:7;21732:23;21728:32;21725:52;;;21773:1;21770;21763:12;21725:52;21805:9;21799:16;21824:30;21848:5;21824:30;:::i;21889:179::-;21924:3;21966:1;21948:16;21945:23;21942:120;;;22012:1;22009;22006;21991:23;-1:-1:-1;22049:1:1;22043:8;22038:3;22034:18;21942:120;21889:179;:::o;22073:671::-;22112:3;22154:4;22136:16;22133:26;22130:39;;;22073:671;:::o;22130:39::-;22196:2;22190:9;-1:-1:-1;;22261:16:1;22257:25;;22254:1;22190:9;22233:50;22312:4;22306:11;22336:16;22371:18;22442:2;22435:4;22427:6;22423:17;22420:25;22415:2;22407:6;22404:14;22401:45;22398:58;;;22449:5;;;;;22073:671;:::o;22398:58::-;22486:6;22480:4;22476:17;22465:28;;22522:3;22516:10;22549:2;22541:6;22538:14;22535:27;;;22555:5;;;;;;22073:671;:::o;22535:27::-;22639:2;22620:16;22614:4;22610:27;22606:36;22599:4;22590:6;22585:3;22581:16;22577:27;22574:69;22571:82;;;22646:5;;;;;;22073:671;:::o;22571:82::-;22662:57;22713:4;22704:6;22696;22692:19;22688:30;22682:4;22662:57;:::i;:::-;-1:-1:-1;22735:3:1;;22073:671;-1:-1:-1;;;;;22073:671:1:o;23170:404::-;23372:2;23354:21;;;23411:2;23391:18;;;23384:30;23450:34;23445:2;23430:18;;23423:62;-1:-1:-1;;;23516:2:1;23501:18;;23494:38;23564:3;23549:19;;23170:404::o;23579:572::-;-1:-1:-1;;;;;23876:15:1;;;23858:34;;23928:15;;23923:2;23908:18;;23901:43;23975:2;23960:18;;23953:34;;;24018:2;24003:18;;23996:34;;;23838:3;24061;24046:19;;24039:32;;;23801:4;;24088:57;;24125:19;;24117:6;24088:57;:::i;:::-;24080:65;23579:572;-1:-1:-1;;;;;;;23579:572:1:o
Swarm Source
ipfs://e8f447f4b333fa17b9544556abea56c54131115af441af88a14b863169889db8
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.