ETH Price: $2,895.01 (-5.04%)
Gas: 4 Gwei

Token

 

Overview

Max Total Supply

126

Holders

73

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vinchacho.eth
0x7e22DD944050eb6988e1437CAfD06C6a2e549D30
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Stardust

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-28
*/

//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.7.1;

/**
 * @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 Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
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;
    }
}

/**
 * _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 _Available since v3.1._
 */
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
    constructor() {
        _registerInterface(
            ERC1155Receiver(0).onERC1155Received.selector ^
            ERC1155Receiver(0).onERC1155BatchReceived.selector
        );
    }
}


/**
 * @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);
}


/*
 * @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 payable) {
        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 String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}

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 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 SafeMath for uint256;
    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;

    // 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 tokenId) external view override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view 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].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(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].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(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 `to` 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].add(amount);
        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].add(_balances[ids[i]][to]);
        }

        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].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

        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].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

        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;
    }
}

interface IERC721 {

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract Stardust is ERC1155,Ownable(){

    IERC721 MembershipToken;
    uint256 public maxSupply;
    uint256 public currentSupply;
    uint256 public basePrice;
    uint256 public lockedTime;
    address public artist;
    bool public sale; 
    mapping(uint256 => uint256) public usedMembershipToken;

    event NftBought(address indexed, uint256 tokenId, uint256 memberShipTokenId);


    constructor(string memory _baseUri,address _membershipTokenAdd)  ERC1155(_baseUri) {
        MembershipToken = IERC721(_membershipTokenAdd);
        maxSupply = 5555;
        currentSupply = 0;
        basePrice = 0.02 ether;
        artist = 0xF7c66bCD6EA3607174DA0bC8458bd1508027e539;
        lockedTime = 1643497200;
        sale = false;
    }
    
      function PublicSale(uint256[] memory tokenId,uint256 amount)
        public
        payable 
    {
        require(currentSupply <= maxSupply,"ERROR: max limit reached");
        require(amount <= 20 && tokenId.length <= 20,"ERROR: max 20 mint per transaction");
        require(amount <= MembershipToken.balanceOf(msg.sender),"ERROR: not enough MembershipToken");
        require(amount == tokenId.length,"ERROR: wrong token ID or count");
        require(msg.value >= amount*basePrice,"ERROR: wrong price");
        require(sale,"ERROR: not on sale");
        require(block.timestamp > lockedTime,"ERROR: sale ended");

        require(amount <= MembershipToken.balanceOf(msg.sender),"ERROR: not enough MembershipToken");
        for(uint256 i=0; i<tokenId.length; i++){
            require(msg.sender == MembershipToken.ownerOf(tokenId[i]),"ERROR: u don't have this token ID");
            if(usedMembershipToken[tokenId[i]] != 0) require(usedMembershipToken[tokenId[i]] <= block.timestamp ,"ERROR: this Membership Token is already used");
                usedMembershipToken[tokenId[i]] = lockedTime;
                emit NftBought(msg.sender,amount,tokenId[i]);
        }

        _mint(msg.sender, 0, amount, "");
        currentSupply += amount;
            
        
    }

    function withdraw() public onlyOwner {
        payable(artist).transfer(address(this).balance);
    }

    function unLockSale() public onlyOwner {
        sale = true;
    }

    function lockSale() public onlyOwner {
        sale = false;
    }

    function changeLockTime(uint256 newTime) public onlyOwner {
        lockedTime = newTime;
    }
    
    function changeTokenUri(string memory _newUri) public onlyOwner {
        _setURI(_newUri);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"_membershipTokenAdd","type":"address"}],"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":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"memberShipTokenId","type":"uint256"}],"name":"NftBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"artist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTime","type":"uint256"}],"name":"changeLockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"changeTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unLockSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedMembershipToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003fb238038062003fb2833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190505050816200011e6301ffc9a760e01b620002f460201b60201c565b6200012f81620003fd60201b60201c565b6200014763d9b67a2660e01b620002f460201b60201c565b6200015f630e89341c60e01b620002f460201b60201c565b506000620001726200041960201b60201c565b905080600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506115b3600681905550600060078190555066470de4df82000060088190555073f7c66bcd6ea3607174da0bc8458bd1508027e539600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506361f5c6f06009819055506000600a60146101000a81548160ff0219169083151502179055505050620004d7565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b80600390805190602001906200041592919062000421565b5050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004595760008555620004a5565b82601f106200047457805160ff1916838001178555620004a5565b82800160010185558215620004a5579182015b82811115620004a457825182559160200191906001019062000487565b5b509050620004b49190620004b8565b5090565b5b80821115620004d3576000816000905550600101620004b9565b5090565b613acb80620004e76000396000f3fe60806040526004361061014a5760003560e01c8063884e53ad116100b6578063bad7c42c1161006f578063bad7c42c146109d0578063c7876ea414610a92578063d5abeb0114610abd578063e985e9c514610ae8578063f242432a14610b6f578063f2fde38b14610c8b5761014a565b8063884e53ad146107ed5780638da5cb5b1461080457806396cf522714610845578063a20e08ca14610880578063a22cb46514610948578063a8b38205146109a55761014a565b806343bc16121161010857806343bc1612146105405780634e1273f414610581578063635a25c21461072f5780636ad1fe021461077e578063715018a6146107ab578063771282f6146107c25761014a565b8062fdd58e1461014f57806301ffc9a7146101be57806307c60dac1461022e5780630e89341c146102455780632eb2c2d6146102f95780633ccfd60b14610529575b600080fd5b34801561015b57600080fd5b506101a86004803603604081101561017257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cdc565b6040518082815260200191505060405180910390f35b3480156101ca57600080fd5b50610216600480360360208110156101e157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610dbc565b60405180821515815260200191505060405180910390f35b34801561023a57600080fd5b50610243610e23565b005b34801561025157600080fd5b5061027e6004803603602081101561026857600080fd5b8101908080359060200190929190505050610f0a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102be5780820151818401526020810190506102a3565b50505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030557600080fd5b50610527600480360360a081101561031c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561037957600080fd5b82018360208201111561038b57600080fd5b803590602001918460208302840111640100000000831117156103ad57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561040d57600080fd5b82018360208201111561041f57600080fd5b8035906020019184602083028401116401000000008311171561044157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104a157600080fd5b8201836020820111156104b357600080fd5b803590602001918460018302840111640100000000831117156104d557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610fae565b005b34801561053557600080fd5b5061053e611439565b005b34801561054c57600080fd5b5061055561156e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561058d57600080fd5b506106d8600480360360408110156105a457600080fd5b81019080803590602001906401000000008111156105c157600080fd5b8201836020820111156105d357600080fd5b803590602001918460208302840111640100000000831117156105f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611594565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561071b578082015181840152602081019050610700565b505050509050019250505060405180910390f35b34801561073b57600080fd5b506107686004803603602081101561075257600080fd5b8101908080359060200190929190505050611786565b6040518082815260200191505060405180910390f35b34801561078a57600080fd5b5061079361179e565b60405180821515815260200191505060405180910390f35b3480156107b757600080fd5b506107c06117b1565b005b3480156107ce57600080fd5b506107d761193c565b6040518082815260200191505060405180910390f35b3480156107f957600080fd5b50610802611942565b005b34801561081057600080fd5b50610819611a29565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085157600080fd5b5061087e6004803603602081101561086857600080fd5b8101908080359060200190929190505050611a53565b005b34801561088c57600080fd5b50610946600480360360208110156108a357600080fd5b81019080803590602001906401000000008111156108c057600080fd5b8201836020820111156108d257600080fd5b803590602001918460018302840111640100000000831117156108f457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b27565b005b34801561095457600080fd5b506109a36004803603604081101561096b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611bfd565b005b3480156109b157600080fd5b506109ba611d96565b6040518082815260200191505060405180910390f35b610a90600480360360408110156109e657600080fd5b8101908080359060200190640100000000811115610a0357600080fd5b820183602082011115610a1557600080fd5b80359060200191846020830284011164010000000083111715610a3757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611d9c565b005b348015610a9e57600080fd5b50610aa7612571565b6040518082815260200191505060405180910390f35b348015610ac957600080fd5b50610ad2612577565b6040518082815260200191505060405180910390f35b348015610af457600080fd5b50610b5760048036036040811015610b0b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061257d565b60405180821515815260200191505060405180910390f35b348015610b7b57600080fd5b50610c89600480360360a0811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610c0357600080fd5b820183602082011115610c1557600080fd5b80359060200191846001830284011164010000000083111715610c3757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612611565b005b348015610c9757600080fd5b50610cda60048036036020811015610cae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612986565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061383f602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b610e2b612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b50505050509050919050565b8151835114611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613a4d6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806139376025913960400191505060405180910390fd5b611096612b96565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110dc57506110db856110d6612b96565b61257d565b5b611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061395c6032913960400191505060405180910390fd5b600061113b612b96565b905061114b818787878787612b9e565b60005b845181101561131c57600085828151811061116557fe5b60200260200101519050600085838151811061117d57fe5b60200260200101519050611204816040518060600160405280602a815260200161398e602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba69092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112bb816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c6690919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061114e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156113cc5780820151818401526020810190506113b1565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561140e5780820151818401526020810190506113f3565b5050505090500194505050505060405180910390a4611431818787878787612cee565b505050505050565b611441612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561156b573d6000803e3d6000fd5b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606081518351146115f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613a246029913960400191505060405180910390fd5b6000835167ffffffffffffffff8111801561160a57600080fd5b506040519080825280602002602001820160405280156116395781602001602082028036833780820191505090505b50905060005b845181101561177b57600073ffffffffffffffffffffffffffffffffffffffff1685828151811061166c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614156116e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061386a6031913960400191505060405180910390fd5b600160008583815181106116f157fe5b60200260200101518152602001908152602001600020600086838151811061171557fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482828151811061176457fe5b60200260200101818152505080600101905061163f565b508091505092915050565b600b6020528060005260406000206000915090505481565b600a60149054906101000a900460ff1681565b6117b9612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b61194a612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a5b612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060098190555050565b611b2f612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bfa8161307d565b50565b8173ffffffffffffffffffffffffffffffffffffffff16611c1c612b96565b73ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806139fb6029913960400191505060405180910390fd5b8060026000611c96612b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d43612b96565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60095481565b6006546007541115611e16576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552524f523a206d6178206c696d69742072656163686564000000000000000081525060200191505060405180910390fd5b60148111158015611e2957506014825111155b611e7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806139d96022913960400191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f0757600080fd5b505afa158015611f1b573d6000803e3d6000fd5b505050506040513d6020811015611f3157600080fd5b8101908080519060200190929190505050811115611f9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806138c16021913960400191505060405180910390fd5b81518114612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552524f523a2077726f6e6720746f6b656e204944206f7220636f756e74000081525060200191505060405180910390fd5b600854810234101561208a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a2077726f6e67207072696365000000000000000000000000000081525060200191505060405180910390fd5b600a60149054906101000a900460ff1661210c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a206e6f74206f6e2073616c65000000000000000000000000000081525060200191505060405180910390fd5b6009544211612183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4552524f523a2073616c6520656e64656400000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561220c57600080fd5b505afa158015612220573d6000803e3d6000fd5b505050506040513d602081101561223657600080fd5b810190808051906020019092919050505081111561229f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806138c16021913960400191505060405180910390fd5b60005b825181101561254057600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8483815181106122f557fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561233157600080fd5b505afa158015612345573d6000803e3d6000fd5b505050506040513d602081101561235b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139b86021913960400191505060405180910390fd5b6000600b600085848151811061240157fe5b60200260200101518152602001908152602001600020541461249d5742600b600085848151811061242e57fe5b6020026020010151815260200190815260200160002054111561249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061390b602c913960400191505060405180910390fd5b5b600954600b60008584815181106124b057fe5b60200260200101518152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f6cde4ed53ecc43e1126a8b2b9e8ad2f4ec18d9f7834636ed981cfa61960be3708385848151811061250f57fe5b6020026020010151604051808381526020018281526020019250505060405180910390a280806001019150506122a2565b5061255d3360008360405180602001604052806000815250613097565b806007600082825401925050819055505050565b60085481565b60065481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612697576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806139376025913960400191505060405180910390fd5b61269f612b96565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806126e557506126e4856126df612b96565b61257d565b5b61273a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806138e26029913960400191505060405180910390fd5b6000612744612b96565b90506127648187876127558861329a565b61275e8861329a565b87612b9e565b6127e1836040518060600160405280602a815260200161398e602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba69092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612898836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c6690919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a461297e81878787878761330b565b505050505050565b61298e612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ad6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061389b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b505050505050565b6000838311158290612c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c18578082015181840152602081019050612bfd565b50505050905090810190601f168015612c455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612ce4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612d0d8473ffffffffffffffffffffffffffffffffffffffff16613618565b15613075578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612dc5578082015181840152602081019050612daa565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612e07578082015181840152602081019050612dec565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612e46578082015181840152602081019050612e2b565b50505050905090810190601f168015612e735780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612e9857600080fd5b505af1925050508015612ecc57506040513d6020811015612eb857600080fd5b810190808051906020019092919050505060015b612fd657612ed861372c565b80612ee35750612f85565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f4a578082015181840152602081019050612f2f565b50505050905090810190601f168015612f775780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806137e36034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613073576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138176028913960400191505060405180910390fd5b505b505050505050565b8060039080519060200190613093929190613663565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561311d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a756021913960400191505060405180910390fd5b6000613127612b96565b9050613148816000876131398861329a565b6131428861329a565b87612b9e565b6131ab836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c6690919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46132938160008787878761330b565b5050505050565b60606000600167ffffffffffffffff811180156132b657600080fd5b506040519080825280602002602001820160405280156132e55781602001602082028036833780820191505090505b50905082816000815181106132f657fe5b60200260200101818152505080915050919050565b61332a8473ffffffffffffffffffffffffffffffffffffffff16613618565b15613610578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156133e35780820151818401526020810190506133c8565b50505050905090810190601f1680156134105780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561343357600080fd5b505af192505050801561346757506040513d602081101561345357600080fd5b810190808051906020019092919050505060015b6135715761347361372c565b8061347e5750613520565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134e55780820151818401526020810190506134ca565b50505050905090810190601f1680156135125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806137e36034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461360e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138176028913960400191505060405180910390fd5b505b505050505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561365a57506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261369957600085556136e0565b82601f106136b257805160ff19168380011785556136e0565b828001600101855582156136e0579182015b828111156136df5782518255916020019190600101906136c4565b5b5090506136ed91906136f1565b5090565b5b8082111561370a5760008160009055506001016136f2565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d101561373c576137df565b60046000803e61374d60005161371f565b6308c379a0811461375e57506137df565b60405160043d036004823e80513d602482011167ffffffffffffffff8211171561378a575050506137df565b808201805167ffffffffffffffff8111156137a95750505050506137df565b8060208301013d85018111156137c4575050505050506137df565b6137cd8261370e565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552524f523a206e6f7420656e6f756768204d656d62657273686970546f6b656e455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552524f523a2074686973204d656d6265727368697020546f6b656e20697320616c72656164792075736564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724552524f523a207520646f6e27742068617665207468697320746f6b656e2049444552524f523a206d6178203230206d696e7420706572207472616e73616374696f6e455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a264697066735822122016387abce7557a22c850ab756411d3b8b8beb683fff97b350c75167e9028415964736f6c63430007060033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000083b7261db8c795701c6fc86d1fcd073ece940e10000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d516762593647556639706d484c565337314a74313451775543476572424b564432353544753435503658314600000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061014a5760003560e01c8063884e53ad116100b6578063bad7c42c1161006f578063bad7c42c146109d0578063c7876ea414610a92578063d5abeb0114610abd578063e985e9c514610ae8578063f242432a14610b6f578063f2fde38b14610c8b5761014a565b8063884e53ad146107ed5780638da5cb5b1461080457806396cf522714610845578063a20e08ca14610880578063a22cb46514610948578063a8b38205146109a55761014a565b806343bc16121161010857806343bc1612146105405780634e1273f414610581578063635a25c21461072f5780636ad1fe021461077e578063715018a6146107ab578063771282f6146107c25761014a565b8062fdd58e1461014f57806301ffc9a7146101be57806307c60dac1461022e5780630e89341c146102455780632eb2c2d6146102f95780633ccfd60b14610529575b600080fd5b34801561015b57600080fd5b506101a86004803603604081101561017257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cdc565b6040518082815260200191505060405180910390f35b3480156101ca57600080fd5b50610216600480360360208110156101e157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610dbc565b60405180821515815260200191505060405180910390f35b34801561023a57600080fd5b50610243610e23565b005b34801561025157600080fd5b5061027e6004803603602081101561026857600080fd5b8101908080359060200190929190505050610f0a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102be5780820151818401526020810190506102a3565b50505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030557600080fd5b50610527600480360360a081101561031c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561037957600080fd5b82018360208201111561038b57600080fd5b803590602001918460208302840111640100000000831117156103ad57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561040d57600080fd5b82018360208201111561041f57600080fd5b8035906020019184602083028401116401000000008311171561044157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104a157600080fd5b8201836020820111156104b357600080fd5b803590602001918460018302840111640100000000831117156104d557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610fae565b005b34801561053557600080fd5b5061053e611439565b005b34801561054c57600080fd5b5061055561156e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561058d57600080fd5b506106d8600480360360408110156105a457600080fd5b81019080803590602001906401000000008111156105c157600080fd5b8201836020820111156105d357600080fd5b803590602001918460208302840111640100000000831117156105f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611594565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561071b578082015181840152602081019050610700565b505050509050019250505060405180910390f35b34801561073b57600080fd5b506107686004803603602081101561075257600080fd5b8101908080359060200190929190505050611786565b6040518082815260200191505060405180910390f35b34801561078a57600080fd5b5061079361179e565b60405180821515815260200191505060405180910390f35b3480156107b757600080fd5b506107c06117b1565b005b3480156107ce57600080fd5b506107d761193c565b6040518082815260200191505060405180910390f35b3480156107f957600080fd5b50610802611942565b005b34801561081057600080fd5b50610819611a29565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085157600080fd5b5061087e6004803603602081101561086857600080fd5b8101908080359060200190929190505050611a53565b005b34801561088c57600080fd5b50610946600480360360208110156108a357600080fd5b81019080803590602001906401000000008111156108c057600080fd5b8201836020820111156108d257600080fd5b803590602001918460018302840111640100000000831117156108f457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b27565b005b34801561095457600080fd5b506109a36004803603604081101561096b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611bfd565b005b3480156109b157600080fd5b506109ba611d96565b6040518082815260200191505060405180910390f35b610a90600480360360408110156109e657600080fd5b8101908080359060200190640100000000811115610a0357600080fd5b820183602082011115610a1557600080fd5b80359060200191846020830284011164010000000083111715610a3757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611d9c565b005b348015610a9e57600080fd5b50610aa7612571565b6040518082815260200191505060405180910390f35b348015610ac957600080fd5b50610ad2612577565b6040518082815260200191505060405180910390f35b348015610af457600080fd5b50610b5760048036036040811015610b0b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061257d565b60405180821515815260200191505060405180910390f35b348015610b7b57600080fd5b50610c89600480360360a0811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610c0357600080fd5b820183602082011115610c1557600080fd5b80359060200191846001830284011164010000000083111715610c3757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612611565b005b348015610c9757600080fd5b50610cda60048036036020811015610cae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612986565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061383f602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b610e2b612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b50505050509050919050565b8151835114611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613a4d6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806139376025913960400191505060405180910390fd5b611096612b96565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110dc57506110db856110d6612b96565b61257d565b5b611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061395c6032913960400191505060405180910390fd5b600061113b612b96565b905061114b818787878787612b9e565b60005b845181101561131c57600085828151811061116557fe5b60200260200101519050600085838151811061117d57fe5b60200260200101519050611204816040518060600160405280602a815260200161398e602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba69092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112bb816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c6690919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061114e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156113cc5780820151818401526020810190506113b1565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561140e5780820151818401526020810190506113f3565b5050505090500194505050505060405180910390a4611431818787878787612cee565b505050505050565b611441612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561156b573d6000803e3d6000fd5b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606081518351146115f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613a246029913960400191505060405180910390fd5b6000835167ffffffffffffffff8111801561160a57600080fd5b506040519080825280602002602001820160405280156116395781602001602082028036833780820191505090505b50905060005b845181101561177b57600073ffffffffffffffffffffffffffffffffffffffff1685828151811061166c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614156116e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061386a6031913960400191505060405180910390fd5b600160008583815181106116f157fe5b60200260200101518152602001908152602001600020600086838151811061171557fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482828151811061176457fe5b60200260200101818152505080600101905061163f565b508091505092915050565b600b6020528060005260406000206000915090505481565b600a60149054906101000a900460ff1681565b6117b9612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b61194a612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a5b612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060098190555050565b611b2f612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bfa8161307d565b50565b8173ffffffffffffffffffffffffffffffffffffffff16611c1c612b96565b73ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806139fb6029913960400191505060405180910390fd5b8060026000611c96612b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d43612b96565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60095481565b6006546007541115611e16576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552524f523a206d6178206c696d69742072656163686564000000000000000081525060200191505060405180910390fd5b60148111158015611e2957506014825111155b611e7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806139d96022913960400191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f0757600080fd5b505afa158015611f1b573d6000803e3d6000fd5b505050506040513d6020811015611f3157600080fd5b8101908080519060200190929190505050811115611f9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806138c16021913960400191505060405180910390fd5b81518114612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552524f523a2077726f6e6720746f6b656e204944206f7220636f756e74000081525060200191505060405180910390fd5b600854810234101561208a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a2077726f6e67207072696365000000000000000000000000000081525060200191505060405180910390fd5b600a60149054906101000a900460ff1661210c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a206e6f74206f6e2073616c65000000000000000000000000000081525060200191505060405180910390fd5b6009544211612183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4552524f523a2073616c6520656e64656400000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561220c57600080fd5b505afa158015612220573d6000803e3d6000fd5b505050506040513d602081101561223657600080fd5b810190808051906020019092919050505081111561229f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806138c16021913960400191505060405180910390fd5b60005b825181101561254057600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8483815181106122f557fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561233157600080fd5b505afa158015612345573d6000803e3d6000fd5b505050506040513d602081101561235b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139b86021913960400191505060405180910390fd5b6000600b600085848151811061240157fe5b60200260200101518152602001908152602001600020541461249d5742600b600085848151811061242e57fe5b6020026020010151815260200190815260200160002054111561249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061390b602c913960400191505060405180910390fd5b5b600954600b60008584815181106124b057fe5b60200260200101518152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f6cde4ed53ecc43e1126a8b2b9e8ad2f4ec18d9f7834636ed981cfa61960be3708385848151811061250f57fe5b6020026020010151604051808381526020018281526020019250505060405180910390a280806001019150506122a2565b5061255d3360008360405180602001604052806000815250613097565b806007600082825401925050819055505050565b60085481565b60065481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612697576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806139376025913960400191505060405180910390fd5b61269f612b96565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806126e557506126e4856126df612b96565b61257d565b5b61273a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806138e26029913960400191505060405180910390fd5b6000612744612b96565b90506127648187876127558861329a565b61275e8861329a565b87612b9e565b6127e1836040518060600160405280602a815260200161398e602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba69092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612898836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c6690919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a461297e81878787878761330b565b505050505050565b61298e612b96565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ad6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061389b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b505050505050565b6000838311158290612c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c18578082015181840152602081019050612bfd565b50505050905090810190601f168015612c455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612ce4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612d0d8473ffffffffffffffffffffffffffffffffffffffff16613618565b15613075578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612dc5578082015181840152602081019050612daa565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612e07578082015181840152602081019050612dec565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612e46578082015181840152602081019050612e2b565b50505050905090810190601f168015612e735780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612e9857600080fd5b505af1925050508015612ecc57506040513d6020811015612eb857600080fd5b810190808051906020019092919050505060015b612fd657612ed861372c565b80612ee35750612f85565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f4a578082015181840152602081019050612f2f565b50505050905090810190601f168015612f775780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806137e36034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613073576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138176028913960400191505060405180910390fd5b505b505050505050565b8060039080519060200190613093929190613663565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561311d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a756021913960400191505060405180910390fd5b6000613127612b96565b9050613148816000876131398861329a565b6131428861329a565b87612b9e565b6131ab836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c6690919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46132938160008787878761330b565b5050505050565b60606000600167ffffffffffffffff811180156132b657600080fd5b506040519080825280602002602001820160405280156132e55781602001602082028036833780820191505090505b50905082816000815181106132f657fe5b60200260200101818152505080915050919050565b61332a8473ffffffffffffffffffffffffffffffffffffffff16613618565b15613610578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156133e35780820151818401526020810190506133c8565b50505050905090810190601f1680156134105780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561343357600080fd5b505af192505050801561346757506040513d602081101561345357600080fd5b810190808051906020019092919050505060015b6135715761347361372c565b8061347e5750613520565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134e55780820151818401526020810190506134ca565b50505050905090810190601f1680156135125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806137e36034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461360e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138176028913960400191505060405180910390fd5b505b505050505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561365a57506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261369957600085556136e0565b82601f106136b257805160ff19168380011785556136e0565b828001600101855582156136e0579182015b828111156136df5782518255916020019190600101906136c4565b5b5090506136ed91906136f1565b5090565b5b8082111561370a5760008160009055506001016136f2565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d101561373c576137df565b60046000803e61374d60005161371f565b6308c379a0811461375e57506137df565b60405160043d036004823e80513d602482011167ffffffffffffffff8211171561378a575050506137df565b808201805167ffffffffffffffff8111156137a95750505050506137df565b8060208301013d85018111156137c4575050505050506137df565b6137cd8261370e565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552524f523a206e6f7420656e6f756768204d656d62657273686970546f6b656e455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552524f523a2074686973204d656d6265727368697020546f6b656e20697320616c72656164792075736564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724552524f523a207520646f6e27742068617665207468697320746f6b656e2049444552524f523a206d6178203230206d696e7420706572207472616e73616374696f6e455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a264697066735822122016387abce7557a22c850ab756411d3b8b8beb683fff97b350c75167e9028415964736f6c63430007060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000083b7261db8c795701c6fc86d1fcd073ece940e10000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d516762593647556639706d484c565337314a74313451775543476572424b564432353544753435503658314600000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): https://gateway.pinata.cloud/ipfs/QmQgbY6GUf9pmHLVS71Jt14QwUCGerBKVD255Du45P6X1F
Arg [1] : _membershipTokenAdd (address): 0x83b7261DB8c795701C6fc86D1fcd073ece940E10

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000083b7261db8c795701c6fc86d1fcd073ece940e10
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d516762593647556639706d484c565337314a74313451775543476572
Arg [5] : 424b564432353544753435503658314600000000000000000000000000000000


Deployed Bytecode Sourcemap

40340:2564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28295:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5534:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42617:68;;;;;;;;;;;;;:::i;:::-;;28037:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31007:1220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42429:103;;;;;;;;;;;;;:::i;:::-;;40546:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28684:634;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40574:16;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24967:148;;;;;;;;;;;;;:::i;:::-;;40448:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42540:69;;;;;;;;;;;;;:::i;:::-;;24325:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42693:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42802:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29391:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40514:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41117:1304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40483:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40417;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29774:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30006:924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25270:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28295:223;28373:7;28420:1;28401:21;;:7;:21;;;;28393:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28488:9;:13;28498:2;28488:13;;;;;;;;;;;:22;28502:7;28488:22;;;;;;;;;;;;;;;;28481:29;;28295:223;;;;:::o;5534:142::-;5611:4;5635:20;:33;5656:11;5635:33;;;;;;;;;;;;;;;;;;;;;;;;;;;5628:40;;5534:142;;;:::o;42617:68::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42672:5:::1;42665:4;;:12;;;;;;;;;;;;;;;;;;42617:68::o:0;28037:107::-;28099:13;28132:4;28125:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28037:107;;;:::o;31007:1220::-;31272:7;:14;31258:3;:10;:28;31250:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31364:1;31350:16;;:2;:16;;;;31342:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31449:12;:10;:12::i;:::-;31441:20;;:4;:20;;;:60;;;;31465:36;31482:4;31488:12;:10;:12::i;:::-;31465:16;:36::i;:::-;31441:60;31419:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31592:16;31611:12;:10;:12::i;:::-;31592:31;;31636:60;31657:8;31667:4;31673:2;31677:3;31682:7;31691:4;31636:20;:60::i;:::-;31714:9;31709:358;31733:3;:10;31729:1;:14;31709:358;;;31765:10;31778:3;31782:1;31778:6;;;;;;;;;;;;;;31765:19;;31799:14;31816:7;31824:1;31816:10;;;;;;;;;;;;;;31799:27;;31865:126;31907:6;31865:126;;;;;;;;;;;;;;;;;:9;:13;31875:2;31865:13;;;;;;;;;;;:19;31879:4;31865:19;;;;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;31843:9;:13;31853:2;31843:13;;;;;;;;;;;:19;31857:4;31843:19;;;;;;;;;;;;;;;:148;;;;32026:29;32048:6;32026:9;:13;32036:2;32026:13;;;;;;;;;;;:17;32040:2;32026:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;32006:9;:13;32016:2;32006:13;;;;;;;;;;;:17;32020:2;32006:17;;;;;;;;;;;;;;;:49;;;;31709:358;;31745:3;;;;;31709:358;;;;32114:2;32084:47;;32108:4;32084:47;;32098:8;32084:47;;;32118:3;32123:7;32084:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32144:75;32180:8;32190:4;32196:2;32200:3;32205:7;32214:4;32144:35;:75::i;:::-;31007:1220;;;;;;:::o;42429:103::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42485:6:::1;;;;;;;;;;;42477:24;;:47;42502:21;42477:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42429:103::o:0;40546:21::-;;;;;;;;;;;;;:::o;28684:634::-;28848:16;28909:3;:10;28890:8;:15;:29;28882:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28978:30;29025:8;:15;29011:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28978:63;;29059:9;29054:224;29078:8;:15;29074:1;:19;29054:224;;;29146:1;29123:25;;:8;29132:1;29123:11;;;;;;;;;;;;;;:25;;;;29115:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29236:9;:17;29246:3;29250:1;29246:6;;;;;;;;;;;;;;29236:17;;;;;;;;;;;:30;29254:8;29263:1;29254:11;;;;;;;;;;;;;;29236:30;;;;;;;;;;;;;;;;29217:13;29231:1;29217:16;;;;;;;;;;;;;:49;;;;;29095:3;;;;;29054:224;;;;29297:13;29290:20;;;28684:634;;;;:::o;40598:54::-;;;;;;;;;;;;;;;;;:::o;40574:16::-;;;;;;;;;;;;;:::o;24967:148::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25074:1:::1;25037:40;;25058:6;;;;;;;;;;;25037:40;;;;;;;;;;;;25105:1;25088:6;;:19;;;;;;;;;;;;;;;;;;24967:148::o:0;40448:28::-;;;;:::o;42540:69::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42597:4:::1;42590;;:11;;;;;;;;;;;;;;;;;;42540:69::o:0;24325:79::-;24363:7;24390:6;;;;;;;;;;;24383:13;;24325:79;:::o;42693:97::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42775:7:::1;42762:10;:20;;;;42693:97:::0;:::o;42802:99::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42877:16:::1;42885:7;42877;:16::i;:::-;42802:99:::0;:::o;29391:311::-;29510:8;29494:24;;:12;:10;:12::i;:::-;:24;;;;29486:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29622:8;29577:18;:32;29596:12;:10;:12::i;:::-;29577:32;;;;;;;;;;;;;;;:42;29610:8;29577:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29675:8;29646:48;;29661:12;:10;:12::i;:::-;29646:48;;;29685:8;29646:48;;;;;;;;;;;;;;;;;;;;29391:311;;:::o;40514:25::-;;;;:::o;41117:1304::-;41253:9;;41236:13;;:26;;41228:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41319:2;41309:6;:12;;:36;;;;;41343:2;41325:7;:14;:20;;41309:36;41301:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41412:15;;;;;;;;;;;:25;;;41438:10;41412:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41402:6;:47;;41394:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41515:7;:14;41505:6;:24;41497:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41602:9;;41595:6;:16;41582:9;:29;;41574:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41652:4;;;;;;;;;;;41644:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41715:10;;41697:15;:28;41689:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41777:15;;;;;;;;;;;:25;;;41803:10;41777:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41767:6;:47;;41759:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41866:9;41862:449;41881:7;:14;41879:1;:16;41862:449;;;41938:15;;;;;;;;;;;:23;;;41962:7;41970:1;41962:10;;;;;;;;;;;;;;41938:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41924:49;;:10;:49;;;41916:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42063:1;42028:19;:31;42048:7;42056:1;42048:10;;;;;;;;;;;;;;42028:31;;;;;;;;;;;;:36;42025:148;;42109:15;42074:19;:31;42094:7;42102:1;42094:10;;;;;;;;;;;;;;42074:31;;;;;;;;;;;;:50;;42066:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42025:148;42226:10;;42192:19;:31;42212:7;42220:1;42212:10;;;;;;;;;;;;;;42192:31;;;;;;;;;;;:44;;;;42270:10;42260:39;;;42281:6;42288:7;42296:1;42288:10;;;;;;;;;;;;;;42260:39;;;;;;;;;;;;;;;;;;;;;;;;41897:3;;;;;;;41862:449;;;;42323:32;42329:10;42341:1;42344:6;42323:32;;;;;;;;;;;;:5;:32::i;:::-;42383:6;42366:13;;:23;;;;;;;;;;;41117:1304;;:::o;40483:24::-;;;;:::o;40417:::-;;;;:::o;29774:160::-;29865:4;29889:18;:27;29908:7;29889:27;;;;;;;;;;;;;;;:37;29917:8;29889:37;;;;;;;;;;;;;;;;;;;;;;;;;29882:44;;29774:160;;;;:::o;30006:924::-;30246:1;30232:16;;:2;:16;;;;30224:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30331:12;:10;:12::i;:::-;30323:20;;:4;:20;;;:60;;;;30347:36;30364:4;30370:12;:10;:12::i;:::-;30347:16;:36::i;:::-;30323:60;30301:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30465:16;30484:12;:10;:12::i;:::-;30465:31;;30509:96;30530:8;30540:4;30546:2;30550:21;30568:2;30550:17;:21::i;:::-;30573:25;30591:6;30573:17;:25::i;:::-;30600:4;30509:20;:96::i;:::-;30640:77;30664:6;30640:77;;;;;;;;;;;;;;;;;:9;:13;30650:2;30640:13;;;;;;;;;;;:19;30654:4;30640:19;;;;;;;;;;;;;;;;:23;;:77;;;;;:::i;:::-;30618:9;:13;30628:2;30618:13;;;;;;;;;;;:19;30632:4;30618:19;;;;;;;;;;;;;;;:99;;;;30748:29;30770:6;30748:9;:13;30758:2;30748:13;;;;;;;;;;;:17;30762:2;30748:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;30728:9;:13;30738:2;30728:13;;;;;;;;;;;:17;30742:2;30728:17;;;;;;;;;;;;;;;:49;;;;30826:2;30795:46;;30820:4;30795:46;;30810:8;30795:46;;;30830:2;30834:6;30795:46;;;;;;;;;;;;;;;;;;;;;;;;30854:68;30885:8;30895:4;30901:2;30905;30909:6;30917:4;30854:30;:68::i;:::-;30006:924;;;;;;:::o;25270:244::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25379:1:::1;25359:22;;:8;:22;;;;25351:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25469:8;25440:38;;25461:6;;;;;;;;;;;25440:38;;;;;;;;;;;;25498:8;25489:6;;:17;;;;;;;;;;;;;;;;;;25270:244:::0;:::o;10030:106::-;10083:15;10118:10;10111:17;;10030:106;:::o;37899:236::-;;;;;;;:::o;14114:192::-;14200:7;14233:1;14228;:6;;14236:12;14220:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14260:9;14276:1;14272;:5;14260:17;;14297:1;14290:8;;;14114:192;;;;;:::o;13211:181::-;13269:7;13289:9;13305:1;13301;:5;13289:17;;13330:1;13325;:6;;13317:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13383:1;13376:8;;;13211:181;;;;:::o;38913:799::-;39167:15;:2;:13;;;:15::i;:::-;39163:542;;;39220:2;39203:43;;;39247:8;39257:4;39263:3;39268:7;39277:4;39203:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39199:495;;;;:::i;:::-;;;;;;;;39567:6;39560:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39199:495;39616:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39199:495;39344:52;;;39332:64;;;:8;:64;;;;39328:163;;39421:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39328:163;39283:223;39163:542;38913:799;;;;;;:::o;33071:88::-;33145:6;33138:4;:13;;;;;;;;;;;;:::i;:::-;;33071:88;:::o;33555:583::-;33689:1;33670:21;;:7;:21;;;;33662:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33742:16;33761:12;:10;:12::i;:::-;33742:31;;33786:107;33807:8;33825:1;33829:7;33838:21;33856:2;33838:17;:21::i;:::-;33861:25;33879:6;33861:17;:25::i;:::-;33888:4;33786:20;:107::i;:::-;33931:34;33958:6;33931:9;:13;33941:2;33931:13;;;;;;;;;;;:22;33945:7;33931:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;33906:9;:13;33916:2;33906:13;;;;;;;;;;;:22;33920:7;33906:22;;;;;;;;;;;;;;;:59;;;;34018:7;33981:57;;34014:1;33981:57;;33996:8;33981:57;;;34027:2;34031:6;33981:57;;;;;;;;;;;;;;;;;;;;;;;;34051:79;34082:8;34100:1;34104:7;34113:2;34117:6;34125:4;34051:30;:79::i;:::-;33555:583;;;;;:::o;39720:198::-;39786:16;39815:22;39854:1;39840:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39815:41;;39878:7;39867:5;39873:1;39867:8;;;;;;;;;;;;;:18;;;;;39905:5;39898:12;;;39720:198;;;:::o;38143:762::-;38372:15;:2;:13;;;:15::i;:::-;38368:530;;;38425:2;38408:38;;;38447:8;38457:4;38463:2;38467:6;38475:4;38408:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38404:483;;;;:::i;:::-;;;;;;;;38760:6;38753:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38404:483;38809:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38404:483;38542:47;;;38530:59;;;:8;:59;;;;38526:158;;38614:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38526:158;38481:218;38368:530;38143:762;;;;;;:::o;18354:619::-;18414:4;18676:16;18703:19;18725:66;18703:88;;;;18894:7;18882:20;18870:32;;18934:11;18922:8;:23;;:42;;;;;18961:3;18949:15;;:8;:15;;18922:42;18914:51;;;;18354:619;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:102:1:-;;99:2;95:7;90:2;83:5;79:14;75:28;65:38;;55:54;;;:::o;115:106::-;;208:5;203:3;199:15;178:36;;168:53;;;:::o;227:833::-;;304:4;286:16;283:26;280:2;;;312:5;;280:2;350:1;347;344;329:23;372:34;403:1;397:8;372:34;:::i;:::-;433:10;428:3;425:19;415:2;;448:5;;;415:2;483;477:9;541:1;523:16;519:24;516:1;510:4;495:49;574:4;568:11;673:16;666:4;658:6;654:17;651:39;618:18;610:6;607:30;591:113;588:2;;;719:5;;;;;588:2;765:6;759:4;755:17;801:3;795:10;828:18;820:6;817:30;814:2;;;850:5;;;;;;;814:2;898:6;891:4;886:3;882:14;878:27;935:16;929:4;925:27;920:3;917:36;914:2;;;956:5;;;;;;;;914:2;1004:29;1026:6;1004:29;:::i;:::-;997:4;992:3;988:14;984:50;980:2;973:62;1051:3;1044:10;;270:790;;;;;;;;:::o

Swarm Source

ipfs://16387abce7557a22c850ab756411d3b8b8beb683fff97b350c75167e90284159
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.