ETH Price: $3,298.20 (-3.29%)
Gas: 10 Gwei

Token

Pixelverse Item (PVIT)
 

Overview

Max Total Supply

8,280 PVIT

Holders

1,772

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Meta Aliens: Deployer
0x3a44081b0e6fd760157a7ac9e93ff0b88735c1c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The "Pixlverse Items" OpenSea storefront is your one-stop shop for in game Pixlverse NFTs, art drops, productive assets and more!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PixelverseItem

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 21 : PixelverseItem.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC1155/presets/ERC1155PresetMinterPauser.sol";

/**
* Pixelverse in-game items with a fixed supply, minted in bulk by an admin 
* via the ERC1155 standard. Primary Sale of these tokens will happen on the
* PixelMarketplace which is approved for the management of all minted items.
* 
* Added custom uri logic such that it actually shows up properly in OpenSea.
* 
* ERC1155PresetMinterPauser is an ERC1155 base token that includes:
* - Ability for holders to burn (destroy) their tokens
* - A minter role that allows for token minting (creation)
* - A pauser role that allows to stop all token transfers
* 
* Roles are managed via, only updatable via the contract owner:
*  grantRole(role, account)
*  revokeRole(role, account)
*  renounceRole(role, account)
*/
contract PixelverseItem is ERC1155PresetMinterPauser, Ownable {

    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    address public pixelMarketplaceAddress;

    // Metadata URI for IPFS hosted assets 
    // NOTE: we are not using the standard {id} interface cuz opensea doesn't recognize it lol
    string public baseMetadataUri;
    
    constructor(
        string memory _baseMetadataUri,
        address marketplaceAddress) 
        ERC1155PresetMinterPauser("") 
    {
        name = "Pixelverse Item";
        symbol = "PVIT";
        baseMetadataUri = _baseMetadataUri;
        pixelMarketplaceAddress = marketplaceAddress;
        
        mintToMarketplace(1, 1000); // Pixel Pass

        mintToMarketplace(2, 300); // Arcade - Flappy Seal
        mintToMarketplace(3, 500); // Arcade - Sappy Jump
        mintToMarketplace(4, 500); // Arcade - Sap Man

        mintToMarketplace(5, 1000); // Starter Pack - Sappy Seals
        mintToMarketplace(6, 1000); // Starter Pack - Winter Bears
        mintToMarketplace(7, 1000); // Starter Pack - 24px
    }

    /*
    * Owner and addresses with MINTER_ROLE will be able to `mint` new collections of NFTs.
    * Allows for Primary sale of newly minted ERC1155 NFTs via the PixelMarketplace contract.
    * Minted NFTs will live here on the Smart Contract until sold from the Marketplace.
    * 
    * When minting post-launch, ensure that ALL assets are re-pushed to the initial IPFS project
    * OR that the baseUri is updated to a project that contains all appropriate art.
    */
    function mintToMarketplace(
        uint256 id,
        uint256 amount
    ) public {
        super.mint(pixelMarketplaceAddress, id, amount, "");
    }

    // Override ERC1155 standard so it can properly be seen on OpenSea
    function uri(uint256 _tokenId) public view virtual override returns (string memory) {
        return string(
          abi.encodePacked(
            baseMetadataUri,
            Strings.toString(_tokenId)
          )
        );
    }

    // NOTE: needs to be similsr ERC721 uri in which an id is simply appended at the end.
    // i.e. "https://ipfs.io/ipfs/QmXUUXRSAJeb4u8p4yKHmXN1iAKtAV7jwLHjw35TNm5jN7/"
    function setURI(string memory _newuri) public onlyOwner {
        baseMetadataUri = _newuri;
    }

    // NOTE: you will also need to manually transfer and re-approve
    // all existing ERC1155's to the new MP contract 
    function setMarketplaceAddress(address mpContractAddress) public onlyOwner {
        pixelMarketplaceAddress = mpContractAddress;
    }

}

File 2 of 21 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 3 of 21 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 4 of 21 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 21 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

File 6 of 21 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 21 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 21 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 21 : ERC1155PresetMinterPauser.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";
import "../extensions/ERC1155Burnable.sol";
import "../extensions/ERC1155Pausable.sol";
import "../../../access/AccessControlEnumerable.sol";
import "../../../utils/Context.sol";

/**
 * @dev {ERC1155} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC1155PresetMinterPauser is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that
     * deploys the contract.
     */
    constructor(string memory uri) ERC1155(uri) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`, of token type `id`.
     *
     * See {ERC1155-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");

        _mint(to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}.
     */
    function mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");

        _mintBatch(to, ids, amounts, data);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(AccessControlEnumerable, ERC1155)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Pausable) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

File 10 of 21 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 11 of 21 : ERC1155Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

File 12 of 21 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 13 of 21 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        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);
}

File 14 of 21 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 15 of 21 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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 virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += 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 (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `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), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        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 (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        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.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 16 of 21 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 17 of 21 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 18 of 21 : IAccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControl.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

File 19 of 21 : IAccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 20 of 21 : AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

File 21 of 21 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseMetadataUri","type":"string"},{"internalType":"address","name":"marketplaceAddress","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"baseMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToMarketplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pixelMarketplaceAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mpContractAddress","type":"address"}],"name":"setMarketplaceAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162006f4438038062006f44833981810160405281019062000037919062000efe565b60405180602001604052806000815250806200005981620002cd60201b60201c565b506000600560006101000a81548160ff021916908315150217905550620000996000801b6200008d620002e960201b60201c565b620002f160201b60201c565b620000da7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000ce620002e960201b60201c565b620002f160201b60201c565b6200011b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6200010f620002e960201b60201c565b620002f160201b60201c565b506200013c62000130620002e960201b60201c565b6200033960201b60201c565b6040518060400160405280600f81526020017f506978656c7665727365204974656d0000000000000000000000000000000000815250600690805190602001906200018992919062000c4c565b506040518060400160405280600481526020017f505649540000000000000000000000000000000000000000000000000000000081525060079080519060200190620001d792919062000c4c565b508160099080519060200190620001f092919062000c4c565b5080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200024760016103e8620003ff60201b60201c565b6200025c600261012c620003ff60201b60201c565b6200027160036101f4620003ff60201b60201c565b6200028660046101f4620003ff60201b60201c565b6200029b60056103e8620003ff60201b60201c565b620002b060066103e8620003ff60201b60201c565b620002c560076103e8620003ff60201b60201c565b50506200167a565b8060049080519060200190620002e592919062000c4c565b5050565b600033905090565b6200030882826200044d60201b6200161a1760201c565b6200033481600160008581526020019081526020016000206200046360201b620016281790919060201c565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000449600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168383604051806020016040528060008152506200049b60201b62000d8d1760201c565b5050565b6200045f82826200053860201b60201c565b5050565b600062000493836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200062960201b60201c565b905092915050565b620004dc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620004d0620002e960201b60201c565b620006a360201b60201c565b6200051e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005159062000feb565b60405180910390fd5b62000532848484846200070d60201b60201c565b50505050565b6200054a8282620006a360201b60201c565b6200062557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005ca620002e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200063d8383620008d360201b60201c565b620006985782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200069d565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007779062001083565b60405180910390fd5b600062000792620002e960201b60201c565b9050620007cb81600087620007ad88620008f660201b60201c565b620007be88620008f660201b60201c565b876200097760201b60201c565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200082d9190620010de565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051620008ad9291906200114c565b60405180910390a4620008cc816000878787876200099a60201b60201c565b5050505050565b600080836001016000848152602001908152602001600020541415905092915050565b60606000600167ffffffffffffffff81111562000918576200091762000d2b565b5b604051908082528060200260200182016040528015620009475781602001602082028036833780820191505090505b509050828160008151811062000962576200096162001179565b5b60200260200101818152505080915050919050565b6200099286868686868662000ba460201b620016581760201c565b505050505050565b620009c68473ffffffffffffffffffffffffffffffffffffffff1662000c1a60201b620016b61760201c565b1562000b9c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040162000a0f95949392919062001216565b602060405180830381600087803b15801562000a2a57600080fd5b505af192505050801562000a5e57506040513d601f19601f8201168201806040525081019062000a5b9190620012d7565b60015b62000b105762000a6d62001316565b806308c379a0141562000ad1575062000a856200133b565b8062000a92575062000ad3565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac8919062001429565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0790620014c3565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000b9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b91906200155b565b60405180910390fd5b505b505050505050565b62000bbf86868686868662000c2d60201b620016c91760201c565b62000bcf62000c3560201b60201c565b1562000c12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c0990620015f3565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b6000600560009054906101000a900460ff16905090565b82805462000c5a9062001644565b90600052602060002090601f01602090048101928262000c7e576000855562000cca565b82601f1062000c9957805160ff191683800117855562000cca565b8280016001018555821562000cca579182015b8281111562000cc957825182559160200191906001019062000cac565b5b50905062000cd9919062000cdd565b5090565b5b8082111562000cf857600081600090555060010162000cde565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d658262000d1a565b810181811067ffffffffffffffff8211171562000d875762000d8662000d2b565b5b80604052505050565b600062000d9c62000cfc565b905062000daa828262000d5a565b919050565b600067ffffffffffffffff82111562000dcd5762000dcc62000d2b565b5b62000dd88262000d1a565b9050602081019050919050565b60005b8381101562000e0557808201518184015260208101905062000de8565b8381111562000e15576000848401525b50505050565b600062000e3262000e2c8462000daf565b62000d90565b90508281526020810184848401111562000e515762000e5062000d15565b5b62000e5e84828562000de5565b509392505050565b600082601f83011262000e7e5762000e7d62000d10565b5b815162000e9084826020860162000e1b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ec68262000e99565b9050919050565b62000ed88162000eb9565b811462000ee457600080fd5b50565b60008151905062000ef88162000ecd565b92915050565b6000806040838503121562000f185762000f1762000d06565b5b600083015167ffffffffffffffff81111562000f395762000f3862000d0b565b5b62000f478582860162000e66565b925050602062000f5a8582860162000ee7565b9150509250929050565b600082825260208201905092915050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b600062000fd360388362000f64565b915062000fe08262000f75565b604082019050919050565b60006020820190508181036000830152620010068162000fc4565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006200106b60218362000f64565b915062001078826200100d565b604082019050919050565b600060208201905081810360008301526200109e816200105c565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010eb82620010a5565b9150620010f883620010a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001130576200112f620010af565b5b828201905092915050565b6200114681620010a5565b82525050565b60006040820190506200116360008301856200113b565b6200117260208301846200113b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b620011b38162000eb9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000620011e282620011b9565b620011ee8185620011c4565b93506200120081856020860162000de5565b6200120b8162000d1a565b840191505092915050565b600060a0820190506200122d6000830188620011a8565b6200123c6020830187620011a8565b6200124b60408301866200113b565b6200125a60608301856200113b565b81810360808301526200126e8184620011d5565b90509695505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620012b1816200127a565b8114620012bd57600080fd5b50565b600081519050620012d181620012a6565b92915050565b600060208284031215620012f057620012ef62000d06565b5b60006200130084828501620012c0565b91505092915050565b60008160e01c9050919050565b600060033d1115620013385760046000803e6200133560005162001309565b90505b90565b600060443d10156200134d57620013da565b6200135762000cfc565b60043d036004823e80513d602482011167ffffffffffffffff8211171562001381575050620013da565b808201805167ffffffffffffffff811115620013a15750505050620013da565b80602083010160043d038501811115620013c0575050505050620013da565b620013d18260200185018662000d5a565b82955050505050505b90565b600081519050919050565b6000620013f582620013dd565b62001401818562000f64565b93506200141381856020860162000de5565b6200141e8162000d1a565b840191505092915050565b60006020820190508181036000830152620014458184620013e8565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000620014ab60348362000f64565b9150620014b8826200144d565b604082019050919050565b60006020820190508181036000830152620014de816200149c565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006200154360288362000f64565b91506200155082620014e5565b604082019050919050565b60006020820190508181036000830152620015768162001534565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000620015db602c8362000f64565b9150620015e8826200157d565b604082019050919050565b600060208201905081810360008301526200160e81620015cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200165d57607f821691505b6020821081141562001674576200167362001615565b5b50919050565b6158ba806200168a6000396000f3fe608060405234801561001057600080fd5b50600436106102105760003560e01c8063731133e911610125578063b47cc556116100ad578063e63ab1e91161007c578063e63ab1e9146105d7578063e985e9c5146105f5578063f242432a14610625578063f2fde38b14610641578063f5298aca1461065d57610210565b8063b47cc55614610551578063ca15c8731461056d578063d53913931461059d578063d547741f146105bb57610210565b80639010d07c116100f45780639010d07c1461049957806391d14854146104c957806395d89b41146104f9578063a217fddf14610517578063a22cb4651461053557610210565b8063731133e914610437578063763c87bf146104535780638456cb59146104715780638da5cb5b1461047b57610210565b80632eb2c2d6116101a85780634e1273f4116101775780634e1273f4146103a55780634f5ade3a146103d55780635c975abb146103f35780636b20c45414610411578063715018a61461042d57610210565b80632eb2c2d6146103475780632f2ff15d1461036357806336568abe1461037f5780633f4ba83a1461039b57610210565b80630e89341c116101e45780630e89341c146102af5780631d71616e146102df5780631f7fdffa146102fb578063248a9ca31461031757610210565b8062fdd58e1461021557806301ffc9a71461024557806302fe53051461027557806306fdde0314610291575b600080fd5b61022f600480360381019061022a9190613803565b610679565b60405161023c9190613852565b60405180910390f35b61025f600480360381019061025a91906138c5565b610743565b60405161026c919061390d565b60405180910390f35b61028f600480360381019061028a9190613a6e565b610755565b005b6102996107eb565b6040516102a69190613b3f565b60405180910390f35b6102c960048036038101906102c49190613b61565b610879565b6040516102d69190613b3f565b60405180910390f35b6102f960048036038101906102f49190613b8e565b6108ad565b005b61031560048036038101906103109190613d37565b6108ee565b005b610331600480360381019061032c9190613e28565b610970565b60405161033e9190613e64565b60405180910390f35b610361600480360381019061035c9190613e7f565b61098f565b005b61037d60048036038101906103789190613f4e565b610a30565b005b61039960048036038101906103949190613f4e565b610a64565b005b6103a3610a98565b005b6103bf60048036038101906103ba9190614051565b610b12565b6040516103cc9190614187565b60405180910390f35b6103dd610c2b565b6040516103ea91906141b8565b60405180910390f35b6103fb610c51565b604051610408919061390d565b60405180910390f35b61042b600480360381019061042691906141d3565b610c68565b005b610435610d05565b005b610451600480360381019061044c919061425e565b610d8d565b005b61045b610e0f565b6040516104689190613b3f565b60405180910390f35b610479610e9d565b005b610483610f17565b60405161049091906141b8565b60405180910390f35b6104b360048036038101906104ae91906142e1565b610f41565b6040516104c091906141b8565b60405180910390f35b6104e360048036038101906104de9190613f4e565b610f70565b6040516104f0919061390d565b60405180910390f35b610501610fda565b60405161050e9190613b3f565b60405180910390f35b61051f611068565b60405161052c9190613e64565b60405180910390f35b61054f600480360381019061054a919061434d565b61106f565b005b61056b6004803603810190610566919061438d565b6111f0565b005b61058760048036038101906105829190613e28565b6112b0565b6040516105949190613852565b60405180910390f35b6105a56112d4565b6040516105b29190613e64565b60405180910390f35b6105d560048036038101906105d09190613f4e565b6112f8565b005b6105df61132c565b6040516105ec9190613e64565b60405180910390f35b61060f600480360381019061060a91906143ba565b611350565b60405161061c919061390d565b60405180910390f35b61063f600480360381019061063a91906143fa565b6113e4565b005b61065b6004803603810190610656919061438d565b611485565b005b61067760048036038101906106729190614491565b61157d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e190614556565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061074e826116d1565b9050919050565b61075d6117b3565b73ffffffffffffffffffffffffffffffffffffffff1661077b610f17565b73ffffffffffffffffffffffffffffffffffffffff16146107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906145c2565b60405180910390fd5b80600990805190602001906107e79291906136b8565b5050565b600680546107f890614611565b80601f016020809104026020016040519081016040528092919081815260200182805461082490614611565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b505050505081565b60606009610886836117bb565b604051602001610897929190614713565b6040516020818303038152906040529050919050565b6108ea600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838360405180602001604052806000815250610d8d565b5050565b61091f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661091a6117b3565b610f70565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906147a9565b60405180910390fd5b61096a8484848461191c565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6109976117b3565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109dd57506109dc856109d76117b3565b611350565b5b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a139061483b565b60405180910390fd5b610a298585858585611b3b565b5050505050565b610a3a8282611e52565b610a5f816001600085815260200190815260200160002061162890919063ffffffff16565b505050565b610a6e8282611e7b565b610a938160016000858152602001908152602001600020611efe90919063ffffffff16565b505050565b610ac97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ac46117b3565b610f70565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906148cd565b60405180910390fd5b610b10611f2e565b565b60608151835114610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f9061495f565b60405180910390fd5b6000835167ffffffffffffffff811115610b7557610b74613943565b5b604051908082528060200260200182016040528015610ba35781602001602082028036833780820191505090505b50905060005b8451811015610c2057610bf0858281518110610bc857610bc761497f565b5b6020026020010151858381518110610be357610be261497f565b5b6020026020010151610679565b828281518110610c0357610c0261497f565b5b60200260200101818152505080610c19906149dd565b9050610ba9565b508091505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b610c706117b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cb65750610cb583610cb06117b3565b611350565b5b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90614a98565b60405180910390fd5b610d00838383611fd0565b505050565b610d0d6117b3565b73ffffffffffffffffffffffffffffffffffffffff16610d2b610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906145c2565b60405180910390fd5b610d8b6000612283565b565b610dbe7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610db96117b3565b610f70565b610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df4906147a9565b60405180910390fd5b610e0984848484612349565b50505050565b60098054610e1c90614611565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4890614611565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b505050505081565b610ece7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ec96117b3565b610f70565b610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490614b2a565b60405180910390fd5b610f156124e0565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610f68826001600086815260200190815260200160002061258390919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60078054610fe790614611565b80601f016020809104026020016040519081016040528092919081815260200182805461101390614611565b80156110605780601f1061103557610100808354040283529160200191611060565b820191906000526020600020905b81548152906001019060200180831161104357829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff1661108e6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90614bbc565b60405180910390fd5b80600360006110f26117b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119f6117b3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111e4919061390d565b60405180910390a35050565b6111f86117b3565b73ffffffffffffffffffffffffffffffffffffffff16611216610f17565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906145c2565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006112cd6001600084815260200190815260200160002061259d565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61130282826125b2565b6113278160016000858152602001908152602001600020611efe90919063ffffffff16565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113ec6117b3565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061143257506114318561142c6117b3565b611350565b5b611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890614a98565b60405180910390fd5b61147e85858585856125db565b5050505050565b61148d6117b3565b73ffffffffffffffffffffffffffffffffffffffff166114ab610f17565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f8906145c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614c4e565b60405180910390fd5b61157a81612283565b50565b6115856117b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115cb57506115ca836115c56117b3565b611350565b5b61160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614a98565b60405180910390fd5b611615838383612860565b505050565b6116248282612a7f565b5050565b6000611650836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b5f565b905092915050565b6116668686868686866116c9565b61166e610c51565b156116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590614ce0565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061179c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117ac57506117ab82612bcf565b5b9050919050565b600033905090565b60606000821415611803576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611917565b600082905060005b6000821461183557808061181e906149dd565b915050600a8261182e9190614d2f565b915061180b565b60008167ffffffffffffffff81111561185157611850613943565b5b6040519080825280601f01601f1916602001820160405280156118835781602001600182028036833780820191505090505b5090505b600085146119105760018261189c9190614d60565b9150600a856118ab9190614d94565b60306118b79190614dc5565b60f81b8183815181106118cd576118cc61497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119099190614d2f565b9450611887565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390614e8d565b60405180910390fd5b81518351146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614f1f565b60405180910390fd5b60006119da6117b3565b90506119eb81600087878787612c49565b60005b8451811015611aa557838181518110611a0a57611a0961497f565b5b602002602001015160026000878481518110611a2957611a2861497f565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8b9190614dc5565b925050819055508080611a9d906149dd565b9150506119ee565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b1d929190614f3f565b60405180910390a4611b3481600087878787612c5f565b5050505050565b8151835114611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614f1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690614fe8565b60405180910390fd5b6000611bf96117b3565b9050611c09818787878787612c49565b60005b8451811015611dbd576000858281518110611c2a57611c2961497f565b5b602002602001015190506000858381518110611c4957611c4861497f565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce29061507a565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da29190614dc5565b9250508190555050505080611db6906149dd565b9050611c0c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e34929190614f3f565b60405180910390a4611e4a818787878787612c5f565b505050505050565b611e5b82610970565b611e6c81611e676117b3565b612e46565b611e768383612a7f565b505050565b611e836117b3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee79061510c565b60405180910390fd5b611efa8282612ee3565b5050565b6000611f26836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612fc4565b905092915050565b611f36610c51565b611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90615178565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fb96117b3565b604051611fc691906141b8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120379061520a565b60405180910390fd5b8051825114612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90614f1f565b60405180910390fd5b600061208e6117b3565b90506120ae81856000868660405180602001604052806000815250612c49565b60005b83518110156121fd5760008482815181106120cf576120ce61497f565b5b6020026020010151905060008483815181106120ee576120ed61497f565b5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121879061529c565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806121f5906149dd565b9150506120b1565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612275929190614f3f565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090614e8d565b60405180910390fd5b60006123c36117b3565b90506123e4816000876123d5886130d8565b6123de886130d8565b87612c49565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124449190614dc5565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516124c29291906152bc565b60405180910390a46124d981600087878787613152565b5050505050565b6124e8610c51565b15612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f90615331565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861256c6117b3565b60405161257991906141b8565b60405180910390a1565b60006125928360000183613339565b60001c905092915050565b60006125ab82600001613364565b9050919050565b6125bb82610970565b6125cc816125c76117b3565b612e46565b6125d68383612ee3565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290614fe8565b60405180910390fd5b60006126556117b3565b9050612675818787612666886130d8565b61266f886130d8565b87612c49565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127049061507a565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c49190614dc5565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128419291906152bc565b60405180910390a4612857828888888888613152565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c79061520a565b60405180910390fd5b60006128da6117b3565b905061290a818560006128ec876130d8565b6128f5876130d8565b60405180602001604052806000815250612c49565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156129a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129999061529c565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612a709291906152bc565b60405180910390a45050505050565b612a898282610f70565b612b5b57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612b006117b3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612b6b8383613375565b612bc4578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612bc9565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c425750612c4182613398565b5b9050919050565b612c57868686868686611658565b505050505050565b612c7e8473ffffffffffffffffffffffffffffffffffffffff166116b6565b15612e3e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612cc49594939291906153a6565b602060405180830381600087803b158015612cde57600080fd5b505af1925050508015612d0f57506040513d601f19601f82011682018060405250810190612d0c9190615423565b60015b612db557612d1b61545d565b806308c379a01415612d785750612d3061547f565b80612d3b5750612d7a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f9190613b3f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dac90615587565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3390615619565b60405180910390fd5b505b505050505050565b612e508282610f70565b612edf57612e758173ffffffffffffffffffffffffffffffffffffffff166014613412565b612e838360001c6020613412565b604051602001612e949291906156d1565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed69190613b3f565b60405180910390fd5b5050565b612eed8282610f70565b15612fc057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612f656117b3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146130cc576000600182612ff69190614d60565b905060006001866000018054905061300e9190614d60565b905081811461307d57600086600001828154811061302f5761302e61497f565b5b90600052602060002001549050808760000184815481106130535761305261497f565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806130915761309061570b565b5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506130d2565b60009150505b92915050565b60606000600167ffffffffffffffff8111156130f7576130f6613943565b5b6040519080825280602002602001820160405280156131255781602001602082028036833780820191505090505b509050828160008151811061313d5761313c61497f565b5b60200260200101818152505080915050919050565b6131718473ffffffffffffffffffffffffffffffffffffffff166116b6565b15613331578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131b795949392919061573a565b602060405180830381600087803b1580156131d157600080fd5b505af192505050801561320257506040513d601f19601f820116820180604052508101906131ff9190615423565b60015b6132a85761320e61545d565b806308c379a0141561326b575061322361547f565b8061322e575061326d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132629190613b3f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329f90615587565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461332f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332690615619565b60405180910390fd5b505b505050505050565b60008260000182815481106133515761335061497f565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061340b575061340a8261364e565b5b9050919050565b6060600060028360026134259190615794565b61342f9190614dc5565b67ffffffffffffffff81111561344857613447613943565b5b6040519080825280601f01601f19166020018201604052801561347a5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134b2576134b161497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135165761351561497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135569190615794565b6135609190614dc5565b90505b6001811115613600577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106135a2576135a161497f565b5b1a60f81b8282815181106135b9576135b861497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806135f9906157ee565b9050613563565b5060008414613644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363b90615864565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546136c490614611565b90600052602060002090601f0160209004810192826136e6576000855561372d565b82601f106136ff57805160ff191683800117855561372d565b8280016001018555821561372d579182015b8281111561372c578251825591602001919060010190613711565b5b50905061373a919061373e565b5090565b5b8082111561375757600081600090555060010161373f565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061379a8261376f565b9050919050565b6137aa8161378f565b81146137b557600080fd5b50565b6000813590506137c7816137a1565b92915050565b6000819050919050565b6137e0816137cd565b81146137eb57600080fd5b50565b6000813590506137fd816137d7565b92915050565b6000806040838503121561381a57613819613765565b5b6000613828858286016137b8565b9250506020613839858286016137ee565b9150509250929050565b61384c816137cd565b82525050565b60006020820190506138676000830184613843565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138a28161386d565b81146138ad57600080fd5b50565b6000813590506138bf81613899565b92915050565b6000602082840312156138db576138da613765565b5b60006138e9848285016138b0565b91505092915050565b60008115159050919050565b613907816138f2565b82525050565b600060208201905061392260008301846138fe565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61397b82613932565b810181811067ffffffffffffffff8211171561399a57613999613943565b5b80604052505050565b60006139ad61375b565b90506139b98282613972565b919050565b600067ffffffffffffffff8211156139d9576139d8613943565b5b6139e282613932565b9050602081019050919050565b82818337600083830152505050565b6000613a11613a0c846139be565b6139a3565b905082815260208101848484011115613a2d57613a2c61392d565b5b613a388482856139ef565b509392505050565b600082601f830112613a5557613a54613928565b5b8135613a658482602086016139fe565b91505092915050565b600060208284031215613a8457613a83613765565b5b600082013567ffffffffffffffff811115613aa257613aa161376a565b5b613aae84828501613a40565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613af1578082015181840152602081019050613ad6565b83811115613b00576000848401525b50505050565b6000613b1182613ab7565b613b1b8185613ac2565b9350613b2b818560208601613ad3565b613b3481613932565b840191505092915050565b60006020820190508181036000830152613b598184613b06565b905092915050565b600060208284031215613b7757613b76613765565b5b6000613b85848285016137ee565b91505092915050565b60008060408385031215613ba557613ba4613765565b5b6000613bb3858286016137ee565b9250506020613bc4858286016137ee565b9150509250929050565b600067ffffffffffffffff821115613be957613be8613943565b5b602082029050602081019050919050565b600080fd5b6000613c12613c0d84613bce565b6139a3565b90508083825260208201905060208402830185811115613c3557613c34613bfa565b5b835b81811015613c5e5780613c4a88826137ee565b845260208401935050602081019050613c37565b5050509392505050565b600082601f830112613c7d57613c7c613928565b5b8135613c8d848260208601613bff565b91505092915050565b600067ffffffffffffffff821115613cb157613cb0613943565b5b613cba82613932565b9050602081019050919050565b6000613cda613cd584613c96565b6139a3565b905082815260208101848484011115613cf657613cf561392d565b5b613d018482856139ef565b509392505050565b600082601f830112613d1e57613d1d613928565b5b8135613d2e848260208601613cc7565b91505092915050565b60008060008060808587031215613d5157613d50613765565b5b6000613d5f878288016137b8565b945050602085013567ffffffffffffffff811115613d8057613d7f61376a565b5b613d8c87828801613c68565b935050604085013567ffffffffffffffff811115613dad57613dac61376a565b5b613db987828801613c68565b925050606085013567ffffffffffffffff811115613dda57613dd961376a565b5b613de687828801613d09565b91505092959194509250565b6000819050919050565b613e0581613df2565b8114613e1057600080fd5b50565b600081359050613e2281613dfc565b92915050565b600060208284031215613e3e57613e3d613765565b5b6000613e4c84828501613e13565b91505092915050565b613e5e81613df2565b82525050565b6000602082019050613e796000830184613e55565b92915050565b600080600080600060a08688031215613e9b57613e9a613765565b5b6000613ea9888289016137b8565b9550506020613eba888289016137b8565b945050604086013567ffffffffffffffff811115613edb57613eda61376a565b5b613ee788828901613c68565b935050606086013567ffffffffffffffff811115613f0857613f0761376a565b5b613f1488828901613c68565b925050608086013567ffffffffffffffff811115613f3557613f3461376a565b5b613f4188828901613d09565b9150509295509295909350565b60008060408385031215613f6557613f64613765565b5b6000613f7385828601613e13565b9250506020613f84858286016137b8565b9150509250929050565b600067ffffffffffffffff821115613fa957613fa8613943565b5b602082029050602081019050919050565b6000613fcd613fc884613f8e565b6139a3565b90508083825260208201905060208402830185811115613ff057613fef613bfa565b5b835b81811015614019578061400588826137b8565b845260208401935050602081019050613ff2565b5050509392505050565b600082601f83011261403857614037613928565b5b8135614048848260208601613fba565b91505092915050565b6000806040838503121561406857614067613765565b5b600083013567ffffffffffffffff8111156140865761408561376a565b5b61409285828601614023565b925050602083013567ffffffffffffffff8111156140b3576140b261376a565b5b6140bf85828601613c68565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140fe816137cd565b82525050565b600061411083836140f5565b60208301905092915050565b6000602082019050919050565b6000614134826140c9565b61413e81856140d4565b9350614149836140e5565b8060005b8381101561417a5781516141618882614104565b975061416c8361411c565b92505060018101905061414d565b5085935050505092915050565b600060208201905081810360008301526141a18184614129565b905092915050565b6141b28161378f565b82525050565b60006020820190506141cd60008301846141a9565b92915050565b6000806000606084860312156141ec576141eb613765565b5b60006141fa868287016137b8565b935050602084013567ffffffffffffffff81111561421b5761421a61376a565b5b61422786828701613c68565b925050604084013567ffffffffffffffff8111156142485761424761376a565b5b61425486828701613c68565b9150509250925092565b6000806000806080858703121561427857614277613765565b5b6000614286878288016137b8565b9450506020614297878288016137ee565b93505060406142a8878288016137ee565b925050606085013567ffffffffffffffff8111156142c9576142c861376a565b5b6142d587828801613d09565b91505092959194509250565b600080604083850312156142f8576142f7613765565b5b600061430685828601613e13565b9250506020614317858286016137ee565b9150509250929050565b61432a816138f2565b811461433557600080fd5b50565b60008135905061434781614321565b92915050565b6000806040838503121561436457614363613765565b5b6000614372858286016137b8565b925050602061438385828601614338565b9150509250929050565b6000602082840312156143a3576143a2613765565b5b60006143b1848285016137b8565b91505092915050565b600080604083850312156143d1576143d0613765565b5b60006143df858286016137b8565b92505060206143f0858286016137b8565b9150509250929050565b600080600080600060a0868803121561441657614415613765565b5b6000614424888289016137b8565b9550506020614435888289016137b8565b9450506040614446888289016137ee565b9350506060614457888289016137ee565b925050608086013567ffffffffffffffff8111156144785761447761376a565b5b61448488828901613d09565b9150509295509295909350565b6000806000606084860312156144aa576144a9613765565b5b60006144b8868287016137b8565b93505060206144c9868287016137ee565b92505060406144da868287016137ee565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614540602b83613ac2565b915061454b826144e4565b604082019050919050565b6000602082019050818103600083015261456f81614533565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145ac602083613ac2565b91506145b782614576565b602082019050919050565b600060208201905081810360008301526145db8161459f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061462957607f821691505b6020821081141561463d5761463c6145e2565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461467081614611565b61467a8186614643565b9450600182166000811461469557600181146146a6576146d9565b60ff198316865281860193506146d9565b6146af8561464e565b60005b838110156146d1578154818901526001820191506020810190506146b2565b838801955050505b50505092915050565b60006146ed82613ab7565b6146f78185614643565b9350614707818560208601613ad3565b80840191505092915050565b600061471f8285614663565b915061472b82846146e2565b91508190509392505050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b6000614793603883613ac2565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614825603283613ac2565b9150614830826147c9565b604082019050919050565b6000602082019050818103600083015261485481614818565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b60006148b7603b83613ac2565b91506148c28261485b565b604082019050919050565b600060208201905081810360008301526148e6816148aa565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614949602983613ac2565b9150614954826148ed565b604082019050919050565b600060208201905081810360008301526149788161493c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e8826137cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a1b57614a1a6149ae565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614a82602983613ac2565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b6000614b14603983613ac2565b9150614b1f82614ab8565b604082019050919050565b60006020820190508181036000830152614b4381614b07565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614ba6602983613ac2565b9150614bb182614b4a565b604082019050919050565b60006020820190508181036000830152614bd581614b99565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c38602683613ac2565b9150614c4382614bdc565b604082019050919050565b60006020820190508181036000830152614c6781614c2b565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000614cca602c83613ac2565b9150614cd582614c6e565b604082019050919050565b60006020820190508181036000830152614cf981614cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d3a826137cd565b9150614d45836137cd565b925082614d5557614d54614d00565b5b828204905092915050565b6000614d6b826137cd565b9150614d76836137cd565b925082821015614d8957614d886149ae565b5b828203905092915050565b6000614d9f826137cd565b9150614daa836137cd565b925082614dba57614db9614d00565b5b828206905092915050565b6000614dd0826137cd565b9150614ddb836137cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e1057614e0f6149ae565b5b828201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e77602183613ac2565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614f09602883613ac2565b9150614f1482614ead565b604082019050919050565b60006020820190508181036000830152614f3881614efc565b9050919050565b60006040820190508181036000830152614f598185614129565b90508181036020830152614f6d8184614129565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fd2602583613ac2565b9150614fdd82614f76565b604082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000615064602a83613ac2565b915061506f82615008565b604082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006150f6602f83613ac2565b91506151018261509a565b604082019050919050565b60006020820190508181036000830152615125816150e9565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000615162601483613ac2565b915061516d8261512c565b602082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006151f4602383613ac2565b91506151ff82615198565b604082019050919050565b60006020820190508181036000830152615223816151e7565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000615286602483613ac2565b91506152918261522a565b604082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b60006040820190506152d16000830185613843565b6152de6020830184613843565b9392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061531b601083613ac2565b9150615326826152e5565b602082019050919050565b6000602082019050818103600083015261534a8161530e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061537882615351565b615382818561535c565b9350615392818560208601613ad3565b61539b81613932565b840191505092915050565b600060a0820190506153bb60008301886141a9565b6153c860208301876141a9565b81810360408301526153da8186614129565b905081810360608301526153ee8185614129565b90508181036080830152615402818461536d565b90509695505050505050565b60008151905061541d81613899565b92915050565b60006020828403121561543957615438613765565b5b60006154478482850161540e565b91505092915050565b60008160e01c9050919050565b600060033d111561547c5760046000803e615479600051615450565b90505b90565b600060443d101561548f57615512565b61549761375b565b60043d036004823e80513d602482011167ffffffffffffffff821117156154bf575050615512565b808201805167ffffffffffffffff8111156154dd5750505050615512565b80602083010160043d0385018111156154fa575050505050615512565b61550982602001850186613972565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615571603483613ac2565b915061557c82615515565b604082019050919050565b600060208201905081810360008301526155a081615564565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615603602883613ac2565b915061560e826155a7565b604082019050919050565b60006020820190508181036000830152615632816155f6565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061566f601783614643565b915061567a82615639565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006156bb601183614643565b91506156c682615685565b601182019050919050565b60006156dc82615662565b91506156e882856146e2565b91506156f3826156ae565b91506156ff82846146e2565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060a08201905061574f60008301886141a9565b61575c60208301876141a9565b6157696040830186613843565b6157766060830185613843565b8181036080830152615788818461536d565b90509695505050505050565b600061579f826137cd565b91506157aa836137cd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156157e3576157e26149ae565b5b828202905092915050565b60006157f9826137cd565b9150600082141561580d5761580c6149ae565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061584e602083613ac2565b915061585982615818565b602082019050919050565b6000602082019050818103600083015261587d81615841565b905091905056fea2646970667358221220d771a2e30606ef503d94dadfb1b1565a1eb87c7b5f8e352d140ab0cbe0688c8364736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000038e6b922545cd931030ad7fb4c00409a04b213c4000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d585555585253414a65623475387034794b486d584e3169414b744156376a774c486a773335544e6d356a4e372f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102105760003560e01c8063731133e911610125578063b47cc556116100ad578063e63ab1e91161007c578063e63ab1e9146105d7578063e985e9c5146105f5578063f242432a14610625578063f2fde38b14610641578063f5298aca1461065d57610210565b8063b47cc55614610551578063ca15c8731461056d578063d53913931461059d578063d547741f146105bb57610210565b80639010d07c116100f45780639010d07c1461049957806391d14854146104c957806395d89b41146104f9578063a217fddf14610517578063a22cb4651461053557610210565b8063731133e914610437578063763c87bf146104535780638456cb59146104715780638da5cb5b1461047b57610210565b80632eb2c2d6116101a85780634e1273f4116101775780634e1273f4146103a55780634f5ade3a146103d55780635c975abb146103f35780636b20c45414610411578063715018a61461042d57610210565b80632eb2c2d6146103475780632f2ff15d1461036357806336568abe1461037f5780633f4ba83a1461039b57610210565b80630e89341c116101e45780630e89341c146102af5780631d71616e146102df5780631f7fdffa146102fb578063248a9ca31461031757610210565b8062fdd58e1461021557806301ffc9a71461024557806302fe53051461027557806306fdde0314610291575b600080fd5b61022f600480360381019061022a9190613803565b610679565b60405161023c9190613852565b60405180910390f35b61025f600480360381019061025a91906138c5565b610743565b60405161026c919061390d565b60405180910390f35b61028f600480360381019061028a9190613a6e565b610755565b005b6102996107eb565b6040516102a69190613b3f565b60405180910390f35b6102c960048036038101906102c49190613b61565b610879565b6040516102d69190613b3f565b60405180910390f35b6102f960048036038101906102f49190613b8e565b6108ad565b005b61031560048036038101906103109190613d37565b6108ee565b005b610331600480360381019061032c9190613e28565b610970565b60405161033e9190613e64565b60405180910390f35b610361600480360381019061035c9190613e7f565b61098f565b005b61037d60048036038101906103789190613f4e565b610a30565b005b61039960048036038101906103949190613f4e565b610a64565b005b6103a3610a98565b005b6103bf60048036038101906103ba9190614051565b610b12565b6040516103cc9190614187565b60405180910390f35b6103dd610c2b565b6040516103ea91906141b8565b60405180910390f35b6103fb610c51565b604051610408919061390d565b60405180910390f35b61042b600480360381019061042691906141d3565b610c68565b005b610435610d05565b005b610451600480360381019061044c919061425e565b610d8d565b005b61045b610e0f565b6040516104689190613b3f565b60405180910390f35b610479610e9d565b005b610483610f17565b60405161049091906141b8565b60405180910390f35b6104b360048036038101906104ae91906142e1565b610f41565b6040516104c091906141b8565b60405180910390f35b6104e360048036038101906104de9190613f4e565b610f70565b6040516104f0919061390d565b60405180910390f35b610501610fda565b60405161050e9190613b3f565b60405180910390f35b61051f611068565b60405161052c9190613e64565b60405180910390f35b61054f600480360381019061054a919061434d565b61106f565b005b61056b6004803603810190610566919061438d565b6111f0565b005b61058760048036038101906105829190613e28565b6112b0565b6040516105949190613852565b60405180910390f35b6105a56112d4565b6040516105b29190613e64565b60405180910390f35b6105d560048036038101906105d09190613f4e565b6112f8565b005b6105df61132c565b6040516105ec9190613e64565b60405180910390f35b61060f600480360381019061060a91906143ba565b611350565b60405161061c919061390d565b60405180910390f35b61063f600480360381019061063a91906143fa565b6113e4565b005b61065b6004803603810190610656919061438d565b611485565b005b61067760048036038101906106729190614491565b61157d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e190614556565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061074e826116d1565b9050919050565b61075d6117b3565b73ffffffffffffffffffffffffffffffffffffffff1661077b610f17565b73ffffffffffffffffffffffffffffffffffffffff16146107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906145c2565b60405180910390fd5b80600990805190602001906107e79291906136b8565b5050565b600680546107f890614611565b80601f016020809104026020016040519081016040528092919081815260200182805461082490614611565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b505050505081565b60606009610886836117bb565b604051602001610897929190614713565b6040516020818303038152906040529050919050565b6108ea600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838360405180602001604052806000815250610d8d565b5050565b61091f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661091a6117b3565b610f70565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906147a9565b60405180910390fd5b61096a8484848461191c565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6109976117b3565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109dd57506109dc856109d76117b3565b611350565b5b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a139061483b565b60405180910390fd5b610a298585858585611b3b565b5050505050565b610a3a8282611e52565b610a5f816001600085815260200190815260200160002061162890919063ffffffff16565b505050565b610a6e8282611e7b565b610a938160016000858152602001908152602001600020611efe90919063ffffffff16565b505050565b610ac97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ac46117b3565b610f70565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906148cd565b60405180910390fd5b610b10611f2e565b565b60608151835114610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f9061495f565b60405180910390fd5b6000835167ffffffffffffffff811115610b7557610b74613943565b5b604051908082528060200260200182016040528015610ba35781602001602082028036833780820191505090505b50905060005b8451811015610c2057610bf0858281518110610bc857610bc761497f565b5b6020026020010151858381518110610be357610be261497f565b5b6020026020010151610679565b828281518110610c0357610c0261497f565b5b60200260200101818152505080610c19906149dd565b9050610ba9565b508091505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b610c706117b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cb65750610cb583610cb06117b3565b611350565b5b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90614a98565b60405180910390fd5b610d00838383611fd0565b505050565b610d0d6117b3565b73ffffffffffffffffffffffffffffffffffffffff16610d2b610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906145c2565b60405180910390fd5b610d8b6000612283565b565b610dbe7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610db96117b3565b610f70565b610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df4906147a9565b60405180910390fd5b610e0984848484612349565b50505050565b60098054610e1c90614611565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4890614611565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b505050505081565b610ece7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ec96117b3565b610f70565b610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490614b2a565b60405180910390fd5b610f156124e0565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610f68826001600086815260200190815260200160002061258390919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60078054610fe790614611565b80601f016020809104026020016040519081016040528092919081815260200182805461101390614611565b80156110605780601f1061103557610100808354040283529160200191611060565b820191906000526020600020905b81548152906001019060200180831161104357829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff1661108e6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90614bbc565b60405180910390fd5b80600360006110f26117b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119f6117b3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111e4919061390d565b60405180910390a35050565b6111f86117b3565b73ffffffffffffffffffffffffffffffffffffffff16611216610f17565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906145c2565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006112cd6001600084815260200190815260200160002061259d565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61130282826125b2565b6113278160016000858152602001908152602001600020611efe90919063ffffffff16565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113ec6117b3565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061143257506114318561142c6117b3565b611350565b5b611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890614a98565b60405180910390fd5b61147e85858585856125db565b5050505050565b61148d6117b3565b73ffffffffffffffffffffffffffffffffffffffff166114ab610f17565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f8906145c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614c4e565b60405180910390fd5b61157a81612283565b50565b6115856117b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115cb57506115ca836115c56117b3565b611350565b5b61160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614a98565b60405180910390fd5b611615838383612860565b505050565b6116248282612a7f565b5050565b6000611650836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b5f565b905092915050565b6116668686868686866116c9565b61166e610c51565b156116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590614ce0565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061179c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117ac57506117ab82612bcf565b5b9050919050565b600033905090565b60606000821415611803576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611917565b600082905060005b6000821461183557808061181e906149dd565b915050600a8261182e9190614d2f565b915061180b565b60008167ffffffffffffffff81111561185157611850613943565b5b6040519080825280601f01601f1916602001820160405280156118835781602001600182028036833780820191505090505b5090505b600085146119105760018261189c9190614d60565b9150600a856118ab9190614d94565b60306118b79190614dc5565b60f81b8183815181106118cd576118cc61497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119099190614d2f565b9450611887565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390614e8d565b60405180910390fd5b81518351146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614f1f565b60405180910390fd5b60006119da6117b3565b90506119eb81600087878787612c49565b60005b8451811015611aa557838181518110611a0a57611a0961497f565b5b602002602001015160026000878481518110611a2957611a2861497f565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8b9190614dc5565b925050819055508080611a9d906149dd565b9150506119ee565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b1d929190614f3f565b60405180910390a4611b3481600087878787612c5f565b5050505050565b8151835114611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614f1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690614fe8565b60405180910390fd5b6000611bf96117b3565b9050611c09818787878787612c49565b60005b8451811015611dbd576000858281518110611c2a57611c2961497f565b5b602002602001015190506000858381518110611c4957611c4861497f565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce29061507a565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da29190614dc5565b9250508190555050505080611db6906149dd565b9050611c0c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e34929190614f3f565b60405180910390a4611e4a818787878787612c5f565b505050505050565b611e5b82610970565b611e6c81611e676117b3565b612e46565b611e768383612a7f565b505050565b611e836117b3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee79061510c565b60405180910390fd5b611efa8282612ee3565b5050565b6000611f26836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612fc4565b905092915050565b611f36610c51565b611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90615178565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fb96117b3565b604051611fc691906141b8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120379061520a565b60405180910390fd5b8051825114612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90614f1f565b60405180910390fd5b600061208e6117b3565b90506120ae81856000868660405180602001604052806000815250612c49565b60005b83518110156121fd5760008482815181106120cf576120ce61497f565b5b6020026020010151905060008483815181106120ee576120ed61497f565b5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121879061529c565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806121f5906149dd565b9150506120b1565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612275929190614f3f565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090614e8d565b60405180910390fd5b60006123c36117b3565b90506123e4816000876123d5886130d8565b6123de886130d8565b87612c49565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124449190614dc5565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516124c29291906152bc565b60405180910390a46124d981600087878787613152565b5050505050565b6124e8610c51565b15612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f90615331565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861256c6117b3565b60405161257991906141b8565b60405180910390a1565b60006125928360000183613339565b60001c905092915050565b60006125ab82600001613364565b9050919050565b6125bb82610970565b6125cc816125c76117b3565b612e46565b6125d68383612ee3565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290614fe8565b60405180910390fd5b60006126556117b3565b9050612675818787612666886130d8565b61266f886130d8565b87612c49565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127049061507a565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c49190614dc5565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128419291906152bc565b60405180910390a4612857828888888888613152565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c79061520a565b60405180910390fd5b60006128da6117b3565b905061290a818560006128ec876130d8565b6128f5876130d8565b60405180602001604052806000815250612c49565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156129a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129999061529c565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612a709291906152bc565b60405180910390a45050505050565b612a898282610f70565b612b5b57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612b006117b3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612b6b8383613375565b612bc4578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612bc9565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c425750612c4182613398565b5b9050919050565b612c57868686868686611658565b505050505050565b612c7e8473ffffffffffffffffffffffffffffffffffffffff166116b6565b15612e3e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612cc49594939291906153a6565b602060405180830381600087803b158015612cde57600080fd5b505af1925050508015612d0f57506040513d601f19601f82011682018060405250810190612d0c9190615423565b60015b612db557612d1b61545d565b806308c379a01415612d785750612d3061547f565b80612d3b5750612d7a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f9190613b3f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dac90615587565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3390615619565b60405180910390fd5b505b505050505050565b612e508282610f70565b612edf57612e758173ffffffffffffffffffffffffffffffffffffffff166014613412565b612e838360001c6020613412565b604051602001612e949291906156d1565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed69190613b3f565b60405180910390fd5b5050565b612eed8282610f70565b15612fc057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612f656117b3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146130cc576000600182612ff69190614d60565b905060006001866000018054905061300e9190614d60565b905081811461307d57600086600001828154811061302f5761302e61497f565b5b90600052602060002001549050808760000184815481106130535761305261497f565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806130915761309061570b565b5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506130d2565b60009150505b92915050565b60606000600167ffffffffffffffff8111156130f7576130f6613943565b5b6040519080825280602002602001820160405280156131255781602001602082028036833780820191505090505b509050828160008151811061313d5761313c61497f565b5b60200260200101818152505080915050919050565b6131718473ffffffffffffffffffffffffffffffffffffffff166116b6565b15613331578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131b795949392919061573a565b602060405180830381600087803b1580156131d157600080fd5b505af192505050801561320257506040513d601f19601f820116820180604052508101906131ff9190615423565b60015b6132a85761320e61545d565b806308c379a0141561326b575061322361547f565b8061322e575061326d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132629190613b3f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329f90615587565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461332f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332690615619565b60405180910390fd5b505b505050505050565b60008260000182815481106133515761335061497f565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061340b575061340a8261364e565b5b9050919050565b6060600060028360026134259190615794565b61342f9190614dc5565b67ffffffffffffffff81111561344857613447613943565b5b6040519080825280601f01601f19166020018201604052801561347a5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134b2576134b161497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135165761351561497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135569190615794565b6135609190614dc5565b90505b6001811115613600577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106135a2576135a161497f565b5b1a60f81b8282815181106135b9576135b861497f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806135f9906157ee565b9050613563565b5060008414613644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363b90615864565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546136c490614611565b90600052602060002090601f0160209004810192826136e6576000855561372d565b82601f106136ff57805160ff191683800117855561372d565b8280016001018555821561372d579182015b8281111561372c578251825591602001919060010190613711565b5b50905061373a919061373e565b5090565b5b8082111561375757600081600090555060010161373f565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061379a8261376f565b9050919050565b6137aa8161378f565b81146137b557600080fd5b50565b6000813590506137c7816137a1565b92915050565b6000819050919050565b6137e0816137cd565b81146137eb57600080fd5b50565b6000813590506137fd816137d7565b92915050565b6000806040838503121561381a57613819613765565b5b6000613828858286016137b8565b9250506020613839858286016137ee565b9150509250929050565b61384c816137cd565b82525050565b60006020820190506138676000830184613843565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138a28161386d565b81146138ad57600080fd5b50565b6000813590506138bf81613899565b92915050565b6000602082840312156138db576138da613765565b5b60006138e9848285016138b0565b91505092915050565b60008115159050919050565b613907816138f2565b82525050565b600060208201905061392260008301846138fe565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61397b82613932565b810181811067ffffffffffffffff8211171561399a57613999613943565b5b80604052505050565b60006139ad61375b565b90506139b98282613972565b919050565b600067ffffffffffffffff8211156139d9576139d8613943565b5b6139e282613932565b9050602081019050919050565b82818337600083830152505050565b6000613a11613a0c846139be565b6139a3565b905082815260208101848484011115613a2d57613a2c61392d565b5b613a388482856139ef565b509392505050565b600082601f830112613a5557613a54613928565b5b8135613a658482602086016139fe565b91505092915050565b600060208284031215613a8457613a83613765565b5b600082013567ffffffffffffffff811115613aa257613aa161376a565b5b613aae84828501613a40565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613af1578082015181840152602081019050613ad6565b83811115613b00576000848401525b50505050565b6000613b1182613ab7565b613b1b8185613ac2565b9350613b2b818560208601613ad3565b613b3481613932565b840191505092915050565b60006020820190508181036000830152613b598184613b06565b905092915050565b600060208284031215613b7757613b76613765565b5b6000613b85848285016137ee565b91505092915050565b60008060408385031215613ba557613ba4613765565b5b6000613bb3858286016137ee565b9250506020613bc4858286016137ee565b9150509250929050565b600067ffffffffffffffff821115613be957613be8613943565b5b602082029050602081019050919050565b600080fd5b6000613c12613c0d84613bce565b6139a3565b90508083825260208201905060208402830185811115613c3557613c34613bfa565b5b835b81811015613c5e5780613c4a88826137ee565b845260208401935050602081019050613c37565b5050509392505050565b600082601f830112613c7d57613c7c613928565b5b8135613c8d848260208601613bff565b91505092915050565b600067ffffffffffffffff821115613cb157613cb0613943565b5b613cba82613932565b9050602081019050919050565b6000613cda613cd584613c96565b6139a3565b905082815260208101848484011115613cf657613cf561392d565b5b613d018482856139ef565b509392505050565b600082601f830112613d1e57613d1d613928565b5b8135613d2e848260208601613cc7565b91505092915050565b60008060008060808587031215613d5157613d50613765565b5b6000613d5f878288016137b8565b945050602085013567ffffffffffffffff811115613d8057613d7f61376a565b5b613d8c87828801613c68565b935050604085013567ffffffffffffffff811115613dad57613dac61376a565b5b613db987828801613c68565b925050606085013567ffffffffffffffff811115613dda57613dd961376a565b5b613de687828801613d09565b91505092959194509250565b6000819050919050565b613e0581613df2565b8114613e1057600080fd5b50565b600081359050613e2281613dfc565b92915050565b600060208284031215613e3e57613e3d613765565b5b6000613e4c84828501613e13565b91505092915050565b613e5e81613df2565b82525050565b6000602082019050613e796000830184613e55565b92915050565b600080600080600060a08688031215613e9b57613e9a613765565b5b6000613ea9888289016137b8565b9550506020613eba888289016137b8565b945050604086013567ffffffffffffffff811115613edb57613eda61376a565b5b613ee788828901613c68565b935050606086013567ffffffffffffffff811115613f0857613f0761376a565b5b613f1488828901613c68565b925050608086013567ffffffffffffffff811115613f3557613f3461376a565b5b613f4188828901613d09565b9150509295509295909350565b60008060408385031215613f6557613f64613765565b5b6000613f7385828601613e13565b9250506020613f84858286016137b8565b9150509250929050565b600067ffffffffffffffff821115613fa957613fa8613943565b5b602082029050602081019050919050565b6000613fcd613fc884613f8e565b6139a3565b90508083825260208201905060208402830185811115613ff057613fef613bfa565b5b835b81811015614019578061400588826137b8565b845260208401935050602081019050613ff2565b5050509392505050565b600082601f83011261403857614037613928565b5b8135614048848260208601613fba565b91505092915050565b6000806040838503121561406857614067613765565b5b600083013567ffffffffffffffff8111156140865761408561376a565b5b61409285828601614023565b925050602083013567ffffffffffffffff8111156140b3576140b261376a565b5b6140bf85828601613c68565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140fe816137cd565b82525050565b600061411083836140f5565b60208301905092915050565b6000602082019050919050565b6000614134826140c9565b61413e81856140d4565b9350614149836140e5565b8060005b8381101561417a5781516141618882614104565b975061416c8361411c565b92505060018101905061414d565b5085935050505092915050565b600060208201905081810360008301526141a18184614129565b905092915050565b6141b28161378f565b82525050565b60006020820190506141cd60008301846141a9565b92915050565b6000806000606084860312156141ec576141eb613765565b5b60006141fa868287016137b8565b935050602084013567ffffffffffffffff81111561421b5761421a61376a565b5b61422786828701613c68565b925050604084013567ffffffffffffffff8111156142485761424761376a565b5b61425486828701613c68565b9150509250925092565b6000806000806080858703121561427857614277613765565b5b6000614286878288016137b8565b9450506020614297878288016137ee565b93505060406142a8878288016137ee565b925050606085013567ffffffffffffffff8111156142c9576142c861376a565b5b6142d587828801613d09565b91505092959194509250565b600080604083850312156142f8576142f7613765565b5b600061430685828601613e13565b9250506020614317858286016137ee565b9150509250929050565b61432a816138f2565b811461433557600080fd5b50565b60008135905061434781614321565b92915050565b6000806040838503121561436457614363613765565b5b6000614372858286016137b8565b925050602061438385828601614338565b9150509250929050565b6000602082840312156143a3576143a2613765565b5b60006143b1848285016137b8565b91505092915050565b600080604083850312156143d1576143d0613765565b5b60006143df858286016137b8565b92505060206143f0858286016137b8565b9150509250929050565b600080600080600060a0868803121561441657614415613765565b5b6000614424888289016137b8565b9550506020614435888289016137b8565b9450506040614446888289016137ee565b9350506060614457888289016137ee565b925050608086013567ffffffffffffffff8111156144785761447761376a565b5b61448488828901613d09565b9150509295509295909350565b6000806000606084860312156144aa576144a9613765565b5b60006144b8868287016137b8565b93505060206144c9868287016137ee565b92505060406144da868287016137ee565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614540602b83613ac2565b915061454b826144e4565b604082019050919050565b6000602082019050818103600083015261456f81614533565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145ac602083613ac2565b91506145b782614576565b602082019050919050565b600060208201905081810360008301526145db8161459f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061462957607f821691505b6020821081141561463d5761463c6145e2565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461467081614611565b61467a8186614643565b9450600182166000811461469557600181146146a6576146d9565b60ff198316865281860193506146d9565b6146af8561464e565b60005b838110156146d1578154818901526001820191506020810190506146b2565b838801955050505b50505092915050565b60006146ed82613ab7565b6146f78185614643565b9350614707818560208601613ad3565b80840191505092915050565b600061471f8285614663565b915061472b82846146e2565b91508190509392505050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b6000614793603883613ac2565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614825603283613ac2565b9150614830826147c9565b604082019050919050565b6000602082019050818103600083015261485481614818565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b60006148b7603b83613ac2565b91506148c28261485b565b604082019050919050565b600060208201905081810360008301526148e6816148aa565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614949602983613ac2565b9150614954826148ed565b604082019050919050565b600060208201905081810360008301526149788161493c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e8826137cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a1b57614a1a6149ae565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614a82602983613ac2565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b6000614b14603983613ac2565b9150614b1f82614ab8565b604082019050919050565b60006020820190508181036000830152614b4381614b07565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614ba6602983613ac2565b9150614bb182614b4a565b604082019050919050565b60006020820190508181036000830152614bd581614b99565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c38602683613ac2565b9150614c4382614bdc565b604082019050919050565b60006020820190508181036000830152614c6781614c2b565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000614cca602c83613ac2565b9150614cd582614c6e565b604082019050919050565b60006020820190508181036000830152614cf981614cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d3a826137cd565b9150614d45836137cd565b925082614d5557614d54614d00565b5b828204905092915050565b6000614d6b826137cd565b9150614d76836137cd565b925082821015614d8957614d886149ae565b5b828203905092915050565b6000614d9f826137cd565b9150614daa836137cd565b925082614dba57614db9614d00565b5b828206905092915050565b6000614dd0826137cd565b9150614ddb836137cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e1057614e0f6149ae565b5b828201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e77602183613ac2565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614f09602883613ac2565b9150614f1482614ead565b604082019050919050565b60006020820190508181036000830152614f3881614efc565b9050919050565b60006040820190508181036000830152614f598185614129565b90508181036020830152614f6d8184614129565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fd2602583613ac2565b9150614fdd82614f76565b604082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000615064602a83613ac2565b915061506f82615008565b604082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006150f6602f83613ac2565b91506151018261509a565b604082019050919050565b60006020820190508181036000830152615125816150e9565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000615162601483613ac2565b915061516d8261512c565b602082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006151f4602383613ac2565b91506151ff82615198565b604082019050919050565b60006020820190508181036000830152615223816151e7565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000615286602483613ac2565b91506152918261522a565b604082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b60006040820190506152d16000830185613843565b6152de6020830184613843565b9392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061531b601083613ac2565b9150615326826152e5565b602082019050919050565b6000602082019050818103600083015261534a8161530e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061537882615351565b615382818561535c565b9350615392818560208601613ad3565b61539b81613932565b840191505092915050565b600060a0820190506153bb60008301886141a9565b6153c860208301876141a9565b81810360408301526153da8186614129565b905081810360608301526153ee8185614129565b90508181036080830152615402818461536d565b90509695505050505050565b60008151905061541d81613899565b92915050565b60006020828403121561543957615438613765565b5b60006154478482850161540e565b91505092915050565b60008160e01c9050919050565b600060033d111561547c5760046000803e615479600051615450565b90505b90565b600060443d101561548f57615512565b61549761375b565b60043d036004823e80513d602482011167ffffffffffffffff821117156154bf575050615512565b808201805167ffffffffffffffff8111156154dd5750505050615512565b80602083010160043d0385018111156154fa575050505050615512565b61550982602001850186613972565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615571603483613ac2565b915061557c82615515565b604082019050919050565b600060208201905081810360008301526155a081615564565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615603602883613ac2565b915061560e826155a7565b604082019050919050565b60006020820190508181036000830152615632816155f6565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061566f601783614643565b915061567a82615639565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006156bb601183614643565b91506156c682615685565b601182019050919050565b60006156dc82615662565b91506156e882856146e2565b91506156f3826156ae565b91506156ff82846146e2565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060a08201905061574f60008301886141a9565b61575c60208301876141a9565b6157696040830186613843565b6157766060830185613843565b8181036080830152615788818461536d565b90509695505050505050565b600061579f826137cd565b91506157aa836137cd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156157e3576157e26149ae565b5b828202905092915050565b60006157f9826137cd565b9150600082141561580d5761580c6149ae565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061584e602083613ac2565b915061585982615818565b602082019050919050565b6000602082019050818103600083015261587d81615841565b905091905056fea2646970667358221220d771a2e30606ef503d94dadfb1b1565a1eb87c7b5f8e352d140ab0cbe0688c8364736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000038e6b922545cd931030ad7fb4c00409a04b213c4000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d585555585253414a65623475387034794b486d584e3169414b744156376a774c486a773335544e6d356a4e372f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseMetadataUri (string): https://ipfs.io/ipfs/QmXUUXRSAJeb4u8p4yKHmXN1iAKtAV7jwLHjw35TNm5jN7/
Arg [1] : marketplaceAddress (address): 0x38e6B922545Cd931030AD7FB4C00409a04b213C4

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000038e6b922545cd931030ad7fb4c00409a04b213c4
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d585555585253414a65
Arg [4] : 623475387034794b486d584e3169414b744156376a774c486a773335544e6d35
Arg [5] : 6a4e372f00000000000000000000000000000000000000000000000000000000


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.