ETH Price: $3,436.27 (+5.55%)
Gas: 11 Gwei

Token

6Sigma (SSIG)
 

Overview

Max Total Supply

888 SSIG

Holders

300

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tesstickle.eth
0xad666002f89aa7d5d802e0eed643541ca52725e3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SixSigma

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-11
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;


// 
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
/**
 * @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;
}

// 
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.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);
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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);
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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);
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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;
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.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 revoked `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}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    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);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)
/**
 * @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;
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (access/AccessControlEnumerable.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) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
/**
 * @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;
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.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;
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.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);
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.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);
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
/**
 * @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);
            }
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

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

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

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

        address operator = _msgSender();

        _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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

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

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

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

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

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

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

// 
/**
 * Storefront NFT collection that can be expanded to hold multiple supplies of 
 * new utility NFTs for the 6Sigma community.
 * New items may be minted after pushing new IPFS dumps with additional assets.
 * 
 * "Admins" can mint new tokens and update the Metadata URI.
 * "Owner" can update the Treasury wallet.
 */
contract SixSigma is ERC1155, Ownable, AccessControlEnumerable {
    
    // Where the NFT's will be minted to and sold from
    address public treasuryAddress;

    string public name;
    string public symbol;
    string public baseMetadataUri;

    constructor(string memory _baseMetadataUri, address _treasuryAddress) 
        ERC1155("") 
    {
        name = "6Sigma";
        symbol = "SSIG";
        baseMetadataUri = _baseMetadataUri;
        treasuryAddress= _treasuryAddress;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(DEFAULT_ADMIN_ROLE, _treasuryAddress);
        
        _mint(treasuryAddress, 1, 888, ""); // AccessPass
    }


    /************ Read-only FUNCTIONS ************/

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


    /************ ADMIN FUNCTIONS ************/

    function mintToTreasury(uint256 id, uint256 amount) 
        external 
        onlyRole(DEFAULT_ADMIN_ROLE) 
    {
        _mint(treasuryAddress, id, amount, "");
    }

    // Likely will never need `data`, just use `""`
    function mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) 
        external 
        onlyRole(DEFAULT_ADMIN_ROLE) 
    {
        _mintBatch(to, ids, amounts, data);
    }

    function setURI(string memory _newuri) 
        external 
        onlyRole(DEFAULT_ADMIN_ROLE) 
    {
        baseMetadataUri = _newuri;
    }


    /************ OWNER FUNCTIONS ************/

    // NOTE: you will also need to manually transfer all existing ERC1155's to the new treasury address. 
    function setTreasuryAddress(address _treasuryAddress) 
        external 
        onlyOwner 
    {
        treasuryAddress = _treasuryAddress;
    }


    /************ BOILERPLATE ************/

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseMetadataUri","type":"string"},{"internalType":"address","name":"_treasuryAddress","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":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"},{"inputs":[],"name":"DEFAULT_ADMIN_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":"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":"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":"mintToTreasury","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":"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":"_treasuryAddress","type":"address"}],"name":"setTreasuryAddress","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":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162005a4d38038062005a4d833981810160405281019062000037919062000c8f565b604051806020016040528060008152506200005881620001f860201b60201c565b50620000796200006d6200021460201b60201c565b6200021c60201b60201c565b6040518060400160405280600681526020017f365369676d61000000000000000000000000000000000000000000000000000081525060079080519060200190620000c6929190620009dd565b506040518060400160405280600481526020017f53534947000000000000000000000000000000000000000000000000000000008152506008908051906020019062000114929190620009dd565b5081600990805190602001906200012d929190620009dd565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001936000801b620001876200021460201b60201c565b620002e260201b60201c565b620001a86000801b82620002e260201b60201c565b620001f0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161037860405180602001604052806000815250620002f860201b60201c565b5050620012db565b806002908051906020019062000210929190620009dd565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f48282620004bd60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200036b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003629062000d7c565b60405180910390fd5b60006200037d6200021460201b60201c565b9050620003b68160008762000398886200050560201b60201c565b620003a9886200050560201b60201c565b876200058660201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000417919062000dd7565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200049792919062000e45565b60405180910390a4620004b6816000878787876200058e60201b60201c565b5050505050565b620004d482826200079860201b620010061760201c565b6200050081600560008581526020019081526020016000206200088a60201b620010e71790919060201c565b505050565b60606000600167ffffffffffffffff81111562000527576200052662000abc565b5b604051908082528060200260200182016040528015620005565781602001602082028036833780820191505090505b509050828160008151811062000571576200057062000e72565b5b60200260200101818152505080915050919050565b505050505050565b620005ba8473ffffffffffffffffffffffffffffffffffffffff16620008c260201b620011171760201c565b1562000790578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200060395949392919062000f0f565b602060405180830381600087803b1580156200061e57600080fd5b505af19250505080156200065257506040513d601f19601f820116820180604052508101906200064f919062000fd0565b60015b6200070457620006616200100f565b806308c379a01415620006c557506200067962001034565b80620006865750620006c7565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006bc919062001122565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fb90620011bc565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146200078e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007859062001254565b60405180910390fd5b505b505050505050565b620007aa8282620008d560201b60201c565b620008865760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200082b6200021460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620008ba836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200094060201b60201c565b905092915050565b600080823b905060008111915050919050565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620009548383620009ba60201b60201c565b620009af578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620009b4565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620009eb90620012a5565b90600052602060002090601f01602090048101928262000a0f576000855562000a5b565b82601f1062000a2a57805160ff191683800117855562000a5b565b8280016001018555821562000a5b579182015b8281111562000a5a57825182559160200191906001019062000a3d565b5b50905062000a6a919062000a6e565b5090565b5b8082111562000a8957600081600090555060010162000a6f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000af68262000aab565b810181811067ffffffffffffffff8211171562000b185762000b1762000abc565b5b80604052505050565b600062000b2d62000a8d565b905062000b3b828262000aeb565b919050565b600067ffffffffffffffff82111562000b5e5762000b5d62000abc565b5b62000b698262000aab565b9050602081019050919050565b60005b8381101562000b9657808201518184015260208101905062000b79565b8381111562000ba6576000848401525b50505050565b600062000bc362000bbd8462000b40565b62000b21565b90508281526020810184848401111562000be25762000be162000aa6565b5b62000bef84828562000b76565b509392505050565b600082601f83011262000c0f5762000c0e62000aa1565b5b815162000c2184826020860162000bac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c578262000c2a565b9050919050565b62000c698162000c4a565b811462000c7557600080fd5b50565b60008151905062000c898162000c5e565b92915050565b6000806040838503121562000ca95762000ca862000a97565b5b600083015167ffffffffffffffff81111562000cca5762000cc962000a9c565b5b62000cd88582860162000bf7565b925050602062000ceb8582860162000c78565b9150509250929050565b600082825260208201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000d6460218362000cf5565b915062000d718262000d06565b604082019050919050565b6000602082019050818103600083015262000d978162000d55565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000de48262000d9e565b915062000df18362000d9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e295762000e2862000da8565b5b828201905092915050565b62000e3f8162000d9e565b82525050565b600060408201905062000e5c600083018562000e34565b62000e6b602083018462000e34565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b62000eac8162000c4a565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000edb8262000eb2565b62000ee7818562000ebd565b935062000ef981856020860162000b76565b62000f048162000aab565b840191505092915050565b600060a08201905062000f26600083018862000ea1565b62000f35602083018762000ea1565b62000f44604083018662000e34565b62000f53606083018562000e34565b818103608083015262000f67818462000ece565b90509695505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000faa8162000f73565b811462000fb657600080fd5b50565b60008151905062000fca8162000f9f565b92915050565b60006020828403121562000fe95762000fe862000a97565b5b600062000ff98482850162000fb9565b91505092915050565b60008160e01c9050919050565b600060033d1115620010315760046000803e6200102e60005162001002565b90505b90565b600060443d10156200104657620010d3565b6200105062000a8d565b60043d036004823e80513d602482011167ffffffffffffffff821117156200107a575050620010d3565b808201805167ffffffffffffffff8111156200109a5750505050620010d3565b80602083010160043d038501811115620010b9575050505050620010d3565b620010ca8260200185018662000aeb565b82955050505050505b90565b600081519050919050565b6000620010ee82620010d6565b620010fa818562000cf5565b93506200110c81856020860162000b76565b620011178162000aab565b840191505092915050565b600060208201905081810360008301526200113e8184620010e1565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000620011a460348362000cf5565b9150620011b18262001146565b604082019050919050565b60006020820190508181036000830152620011d78162001195565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006200123c60288362000cf5565b91506200124982620011de565b604082019050919050565b600060208201905081810360008301526200126f816200122d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012be57607f821691505b60208210811415620012d557620012d462001276565b5b50919050565b61476280620012eb6000396000f3fe608060405234801561001057600080fd5b50600436106101a85760003560e01c8063763c87bf116100f9578063a22cb46511610097578063d547741f11610071578063d547741f146104cb578063e985e9c5146104e7578063f242432a14610517578063f2fde38b14610533576101a8565b8063a22cb46514610461578063c5f956af1461047d578063ca15c8731461049b576101a8565b80639010d07c116100d35780639010d07c146103c557806391d14854146103f557806395d89b4114610425578063a217fddf14610443576101a8565b8063763c87bf1461036d5780637df5bd3b1461038b5780638da5cb5b146103a7576101a8565b8063248a9ca31161016657806336568abe1161014057806336568abe146102fb5780634e1273f4146103175780636605bfda14610347578063715018a614610363576101a8565b8063248a9ca3146102935780632eb2c2d6146102c35780632f2ff15d146102df576101a8565b8062fdd58e146101ad57806301ffc9a7146101dd57806302fe53051461020d57806306fdde03146102295780630e89341c146102475780631f7fdffa14610277575b600080fd5b6101c760048036038101906101c29190612c50565b61054f565b6040516101d49190612c9f565b60405180910390f35b6101f760048036038101906101f29190612d12565b610618565b6040516102049190612d5a565b60405180910390f35b61022760048036038101906102229190612ebb565b61062a565b005b61023161065a565b60405161023e9190612f8c565b60405180910390f35b610261600480360381019061025c9190612fae565b6106e8565b60405161026e9190612f8c565b60405180910390f35b610291600480360381019061028c9190613144565b61071c565b005b6102ad60048036038101906102a89190613235565b610744565b6040516102ba9190613271565b60405180910390f35b6102dd60048036038101906102d8919061328c565b610764565b005b6102f960048036038101906102f4919061335b565b610805565b005b6103156004803603810190610310919061335b565b61082e565b005b610331600480360381019061032c919061345e565b6108b1565b60405161033e9190613594565b60405180910390f35b610361600480360381019061035c91906135b6565b6109ca565b005b61036b610a8a565b005b610375610b12565b6040516103829190612f8c565b60405180910390f35b6103a560048036038101906103a091906135e3565b610ba0565b005b6103af610bf7565b6040516103bc9190613632565b60405180910390f35b6103df60048036038101906103da919061364d565b610c21565b6040516103ec9190613632565b60405180910390f35b61040f600480360381019061040a919061335b565b610c50565b60405161041c9190612d5a565b60405180910390f35b61042d610cbb565b60405161043a9190612f8c565b60405180910390f35b61044b610d49565b6040516104589190613271565b60405180910390f35b61047b600480360381019061047691906136b9565b610d50565b005b610485610d66565b6040516104929190613632565b60405180910390f35b6104b560048036038101906104b09190613235565b610d8c565b6040516104c29190612c9f565b60405180910390f35b6104e560048036038101906104e0919061335b565b610db0565b005b61050160048036038101906104fc91906136f9565b610dd9565b60405161050e9190612d5a565b60405180910390f35b610531600480360381019061052c9190613739565b610e6d565b005b61054d600480360381019061054891906135b6565b610f0e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b790613842565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106238261112a565b9050919050565b6000801b61063f8161063a6111a4565b6111ac565b8160099080519060200190610655929190612b05565b505050565b6007805461066790613891565b80601f016020809104026020016040519081016040528092919081815260200182805461069390613891565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b505050505081565b606060096106f583611249565b604051602001610706929190613993565b6040516020818303038152906040529050919050565b6000801b6107318161072c6111a4565b6111ac565b61073d858585856113aa565b5050505050565b600060046000838152602001908152602001600020600101549050919050565b61076c6111a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107b257506107b1856107ac6111a4565b610dd9565b5b6107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890613a29565b60405180910390fd5b6107fe85858585856115c8565b5050505050565b61080e82610744565b61081f8161081a6111a4565b6111ac565b61082983836118dc565b505050565b6108366111a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90613abb565b60405180910390fd5b6108ad8282611910565b5050565b606081518351146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90613b4d565b60405180910390fd5b6000835167ffffffffffffffff81111561091457610913612d90565b5b6040519080825280602002602001820160405280156109425781602001602082028036833780820191505090505b50905060005b84518110156109bf5761098f85828151811061096757610966613b6d565b5b602002602001015185838151811061098257610981613b6d565b5b602002602001015161054f565b8282815181106109a2576109a1613b6d565b5b602002602001018181525050806109b890613bcb565b9050610948565b508091505092915050565b6109d26111a4565b73ffffffffffffffffffffffffffffffffffffffff166109f0610bf7565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90613c60565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a926111a4565b73ffffffffffffffffffffffffffffffffffffffff16610ab0610bf7565b73ffffffffffffffffffffffffffffffffffffffff1614610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90613c60565b60405180910390fd5b610b106000611944565b565b60098054610b1f90613891565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b90613891565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b505050505081565b6000801b610bb581610bb06111a4565b6111ac565b610bf2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16848460405180602001604052806000815250611a0a565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610c488260056000868152602001908152602001600020611ba090919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60088054610cc890613891565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490613891565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b505050505081565b6000801b81565b610d62610d5b6111a4565b8383611bba565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610da960056000848152602001908152602001600020611d27565b9050919050565b610db982610744565b610dca81610dc56111a4565b6111ac565b610dd48383611910565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e756111a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ebb5750610eba85610eb56111a4565b610dd9565b5b610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190613cf2565b60405180910390fd5b610f078585858585611d3c565b5050505050565b610f166111a4565b73ffffffffffffffffffffffffffffffffffffffff16610f34610bf7565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190613c60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613d84565b60405180910390fd5b61100381611944565b50565b6110108282610c50565b6110e35760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110886111a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061110f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fbe565b905092915050565b600080823b905060008111915050919050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061119d575061119c8261202e565b5b9050919050565b600033905090565b6111b68282610c50565b611245576111db8173ffffffffffffffffffffffffffffffffffffffff1660146120a8565b6111e98360001c60206120a8565b6040516020016111fa929190613e3c565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c9190612f8c565b60405180910390fd5b5050565b60606000821415611291576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506113a5565b600082905060005b600082146112c35780806112ac90613bcb565b915050600a826112bc9190613ea5565b9150611299565b60008167ffffffffffffffff8111156112df576112de612d90565b5b6040519080825280601f01601f1916602001820160405280156113115781602001600182028036833780820191505090505b5090505b6000851461139e5760018261132a9190613ed6565b9150600a856113399190613f0a565b60306113459190613f3b565b60f81b81838151811061135b5761135a613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856113979190613ea5565b9450611315565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190614003565b60405180910390fd5b815183511461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614095565b60405180910390fd5b60006114686111a4565b9050611479816000878787876122e4565b60005b84518110156115325783818151811061149857611497613b6d565b5b60200260200101516000808784815181106114b6576114b5613b6d565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115189190613f3b565b92505081905550808061152a90613bcb565b91505061147c565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115aa9291906140b5565b60405180910390a46115c1816000878787876122ec565b5050505050565b815183511461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390614095565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061415e565b60405180910390fd5b60006116866111a4565b90506116968187878787876122e4565b60005b84518110156118475760008582815181106116b7576116b6613b6d565b5b6020026020010151905060008583815181106116d6576116d5613b6d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906141f0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182c9190613f3b565b925050819055505050508061184090613bcb565b9050611699565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118be9291906140b5565b60405180910390a46118d48187878787876122ec565b505050505050565b6118e68282611006565b61190b81600560008581526020019081526020016000206110e790919063ffffffff16565b505050565b61191a82826124d3565b61193f81600560008581526020019081526020016000206125b590919063ffffffff16565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614003565b60405180910390fd5b6000611a846111a4565b9050611aa581600087611a96886125e5565b611a9f886125e5565b876122e4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b049190613f3b565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b82929190614210565b60405180910390a4611b998160008787878761265f565b5050505050565b6000611baf8360000183612846565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c20906142ab565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a9190612d5a565b60405180910390a3505050565b6000611d3582600001612871565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da39061415e565b60405180910390fd5b6000611db66111a4565b9050611dd6818787611dc7886125e5565b611dd0886125e5565b876122e4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e64906141f0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f229190613f3b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611f9f929190614210565b60405180910390a4611fb582888888888861265f565b50505050505050565b6000611fca8383612882565b612023578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612028565b600090505b92915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120a157506120a0826128a5565b5b9050919050565b6060600060028360026120bb91906142cb565b6120c59190613f3b565b67ffffffffffffffff8111156120de576120dd612d90565b5b6040519080825280601f01601f1916602001820160405280156121105781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061214857612147613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121ac576121ab613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121ec91906142cb565b6121f69190613f3b565b90505b6001811115612296577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061223857612237613b6d565b5b1a60f81b82828151811061224f5761224e613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061228f90614325565b90506121f9565b50600084146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d19061439b565b60405180910390fd5b8091505092915050565b505050505050565b61230b8473ffffffffffffffffffffffffffffffffffffffff16611117565b156124cb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612351959493929190614410565b602060405180830381600087803b15801561236b57600080fd5b505af192505050801561239c57506040513d601f19601f82011682018060405250810190612399919061448d565b60015b612442576123a86144c7565b806308c379a0141561240557506123bd6144e9565b806123c85750612407565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc9190612f8c565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612439906145f1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614683565b60405180910390fd5b505b505050505050565b6124dd8282610c50565b156125b15760006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125566111a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006125dd836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612987565b905092915050565b60606000600167ffffffffffffffff81111561260457612603612d90565b5b6040519080825280602002602001820160405280156126325781602001602082028036833780820191505090505b509050828160008151811061264a57612649613b6d565b5b60200260200101818152505080915050919050565b61267e8473ffffffffffffffffffffffffffffffffffffffff16611117565b1561283e578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126c49594939291906146a3565b602060405180830381600087803b1580156126de57600080fd5b505af192505050801561270f57506040513d601f19601f8201168201806040525081019061270c919061448d565b60015b6127b55761271b6144c7565b806308c379a0141561277857506127306144e9565b8061273b575061277a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f9190612f8c565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906145f1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461283c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283390614683565b60405180910390fd5b505b505050505050565b600082600001828154811061285e5761285d613b6d565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061297057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612980575061297f82612a9b565b5b9050919050565b60008083600101600084815260200190815260200160002054905060008114612a8f5760006001826129b99190613ed6565b90506000600186600001805490506129d19190613ed6565b9050818114612a405760008660000182815481106129f2576129f1613b6d565b5b9060005260206000200154905080876000018481548110612a1657612a15613b6d565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612a5457612a536146fd565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612a95565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612b1190613891565b90600052602060002090601f016020900481019282612b335760008555612b7a565b82601f10612b4c57805160ff1916838001178555612b7a565b82800160010185558215612b7a579182015b82811115612b79578251825591602001919060010190612b5e565b5b509050612b879190612b8b565b5090565b5b80821115612ba4576000816000905550600101612b8c565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612be782612bbc565b9050919050565b612bf781612bdc565b8114612c0257600080fd5b50565b600081359050612c1481612bee565b92915050565b6000819050919050565b612c2d81612c1a565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b60008060408385031215612c6757612c66612bb2565b5b6000612c7585828601612c05565b9250506020612c8685828601612c3b565b9150509250929050565b612c9981612c1a565b82525050565b6000602082019050612cb46000830184612c90565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cef81612cba565b8114612cfa57600080fd5b50565b600081359050612d0c81612ce6565b92915050565b600060208284031215612d2857612d27612bb2565b5b6000612d3684828501612cfd565b91505092915050565b60008115159050919050565b612d5481612d3f565b82525050565b6000602082019050612d6f6000830184612d4b565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dc882612d7f565b810181811067ffffffffffffffff82111715612de757612de6612d90565b5b80604052505050565b6000612dfa612ba8565b9050612e068282612dbf565b919050565b600067ffffffffffffffff821115612e2657612e25612d90565b5b612e2f82612d7f565b9050602081019050919050565b82818337600083830152505050565b6000612e5e612e5984612e0b565b612df0565b905082815260208101848484011115612e7a57612e79612d7a565b5b612e85848285612e3c565b509392505050565b600082601f830112612ea257612ea1612d75565b5b8135612eb2848260208601612e4b565b91505092915050565b600060208284031215612ed157612ed0612bb2565b5b600082013567ffffffffffffffff811115612eef57612eee612bb7565b5b612efb84828501612e8d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f3e578082015181840152602081019050612f23565b83811115612f4d576000848401525b50505050565b6000612f5e82612f04565b612f688185612f0f565b9350612f78818560208601612f20565b612f8181612d7f565b840191505092915050565b60006020820190508181036000830152612fa68184612f53565b905092915050565b600060208284031215612fc457612fc3612bb2565b5b6000612fd284828501612c3b565b91505092915050565b600067ffffffffffffffff821115612ff657612ff5612d90565b5b602082029050602081019050919050565b600080fd5b600061301f61301a84612fdb565b612df0565b9050808382526020820190506020840283018581111561304257613041613007565b5b835b8181101561306b57806130578882612c3b565b845260208401935050602081019050613044565b5050509392505050565b600082601f83011261308a57613089612d75565b5b813561309a84826020860161300c565b91505092915050565b600067ffffffffffffffff8211156130be576130bd612d90565b5b6130c782612d7f565b9050602081019050919050565b60006130e76130e2846130a3565b612df0565b90508281526020810184848401111561310357613102612d7a565b5b61310e848285612e3c565b509392505050565b600082601f83011261312b5761312a612d75565b5b813561313b8482602086016130d4565b91505092915050565b6000806000806080858703121561315e5761315d612bb2565b5b600061316c87828801612c05565b945050602085013567ffffffffffffffff81111561318d5761318c612bb7565b5b61319987828801613075565b935050604085013567ffffffffffffffff8111156131ba576131b9612bb7565b5b6131c687828801613075565b925050606085013567ffffffffffffffff8111156131e7576131e6612bb7565b5b6131f387828801613116565b91505092959194509250565b6000819050919050565b613212816131ff565b811461321d57600080fd5b50565b60008135905061322f81613209565b92915050565b60006020828403121561324b5761324a612bb2565b5b600061325984828501613220565b91505092915050565b61326b816131ff565b82525050565b60006020820190506132866000830184613262565b92915050565b600080600080600060a086880312156132a8576132a7612bb2565b5b60006132b688828901612c05565b95505060206132c788828901612c05565b945050604086013567ffffffffffffffff8111156132e8576132e7612bb7565b5b6132f488828901613075565b935050606086013567ffffffffffffffff81111561331557613314612bb7565b5b61332188828901613075565b925050608086013567ffffffffffffffff81111561334257613341612bb7565b5b61334e88828901613116565b9150509295509295909350565b6000806040838503121561337257613371612bb2565b5b600061338085828601613220565b925050602061339185828601612c05565b9150509250929050565b600067ffffffffffffffff8211156133b6576133b5612d90565b5b602082029050602081019050919050565b60006133da6133d58461339b565b612df0565b905080838252602082019050602084028301858111156133fd576133fc613007565b5b835b8181101561342657806134128882612c05565b8452602084019350506020810190506133ff565b5050509392505050565b600082601f83011261344557613444612d75565b5b81356134558482602086016133c7565b91505092915050565b6000806040838503121561347557613474612bb2565b5b600083013567ffffffffffffffff81111561349357613492612bb7565b5b61349f85828601613430565b925050602083013567ffffffffffffffff8111156134c0576134bf612bb7565b5b6134cc85828601613075565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61350b81612c1a565b82525050565b600061351d8383613502565b60208301905092915050565b6000602082019050919050565b6000613541826134d6565b61354b81856134e1565b9350613556836134f2565b8060005b8381101561358757815161356e8882613511565b975061357983613529565b92505060018101905061355a565b5085935050505092915050565b600060208201905081810360008301526135ae8184613536565b905092915050565b6000602082840312156135cc576135cb612bb2565b5b60006135da84828501612c05565b91505092915050565b600080604083850312156135fa576135f9612bb2565b5b600061360885828601612c3b565b925050602061361985828601612c3b565b9150509250929050565b61362c81612bdc565b82525050565b60006020820190506136476000830184613623565b92915050565b6000806040838503121561366457613663612bb2565b5b600061367285828601613220565b925050602061368385828601612c3b565b9150509250929050565b61369681612d3f565b81146136a157600080fd5b50565b6000813590506136b38161368d565b92915050565b600080604083850312156136d0576136cf612bb2565b5b60006136de85828601612c05565b92505060206136ef858286016136a4565b9150509250929050565b600080604083850312156137105761370f612bb2565b5b600061371e85828601612c05565b925050602061372f85828601612c05565b9150509250929050565b600080600080600060a0868803121561375557613754612bb2565b5b600061376388828901612c05565b955050602061377488828901612c05565b945050604061378588828901612c3b565b935050606061379688828901612c3b565b925050608086013567ffffffffffffffff8111156137b7576137b6612bb7565b5b6137c388828901613116565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061382c602b83612f0f565b9150613837826137d0565b604082019050919050565b6000602082019050818103600083015261385b8161381f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a957607f821691505b602082108114156138bd576138bc613862565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138f081613891565b6138fa81866138c3565b94506001821660008114613915576001811461392657613959565b60ff19831686528186019350613959565b61392f856138ce565b60005b8381101561395157815481890152600182019150602081019050613932565b838801955050505b50505092915050565b600061396d82612f04565b61397781856138c3565b9350613987818560208601612f20565b80840191505092915050565b600061399f82856138e3565b91506139ab8284613962565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a13603283612f0f565b9150613a1e826139b7565b604082019050919050565b60006020820190508181036000830152613a4281613a06565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613aa5602f83612f0f565b9150613ab082613a49565b604082019050919050565b60006020820190508181036000830152613ad481613a98565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b37602983612f0f565b9150613b4282613adb565b604082019050919050565b60006020820190508181036000830152613b6681613b2a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd682612c1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0957613c08613b9c565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c4a602083612f0f565b9150613c5582613c14565b602082019050919050565b60006020820190508181036000830152613c7981613c3d565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613cdc602983612f0f565b9150613ce782613c80565b604082019050919050565b60006020820190508181036000830152613d0b81613ccf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d6e602683612f0f565b9150613d7982613d12565b604082019050919050565b60006020820190508181036000830152613d9d81613d61565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613dda6017836138c3565b9150613de582613da4565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613e266011836138c3565b9150613e3182613df0565b601182019050919050565b6000613e4782613dcd565b9150613e538285613962565b9150613e5e82613e19565b9150613e6a8284613962565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613eb082612c1a565b9150613ebb83612c1a565b925082613ecb57613eca613e76565b5b828204905092915050565b6000613ee182612c1a565b9150613eec83612c1a565b925082821015613eff57613efe613b9c565b5b828203905092915050565b6000613f1582612c1a565b9150613f2083612c1a565b925082613f3057613f2f613e76565b5b828206905092915050565b6000613f4682612c1a565b9150613f5183612c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8657613f85613b9c565b5b828201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fed602183612f0f565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061407f602883612f0f565b915061408a82614023565b604082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b600060408201905081810360008301526140cf8185613536565b905081810360208301526140e38184613536565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614148602583612f0f565b9150614153826140ec565b604082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006141da602a83612f0f565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b60006040820190506142256000830185612c90565b6142326020830184612c90565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614295602983612f0f565b91506142a082614239565b604082019050919050565b600060208201905081810360008301526142c481614288565b9050919050565b60006142d682612c1a565b91506142e183612c1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431a57614319613b9c565b5b828202905092915050565b600061433082612c1a565b9150600082141561434457614343613b9c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614385602083612f0f565b91506143908261434f565b602082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143e2826143bb565b6143ec81856143c6565b93506143fc818560208601612f20565b61440581612d7f565b840191505092915050565b600060a0820190506144256000830188613623565b6144326020830187613623565b81810360408301526144448186613536565b905081810360608301526144588185613536565b9050818103608083015261446c81846143d7565b90509695505050505050565b60008151905061448781612ce6565b92915050565b6000602082840312156144a3576144a2612bb2565b5b60006144b184828501614478565b91505092915050565b60008160e01c9050919050565b600060033d11156144e65760046000803e6144e36000516144ba565b90505b90565b600060443d10156144f95761457c565b614501612ba8565b60043d036004823e80513d602482011167ffffffffffffffff8211171561452957505061457c565b808201805167ffffffffffffffff811115614547575050505061457c565b80602083010160043d03850181111561456457505050505061457c565b61457382602001850186612dbf565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006145db603483612f0f565b91506145e68261457f565b604082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061466d602883612f0f565b915061467882614611565b604082019050919050565b6000602082019050818103600083015261469c81614660565b9050919050565b600060a0820190506146b86000830188613623565b6146c56020830187613623565b6146d26040830186612c90565b6146df6060830185612c90565b81810360808301526146f181846143d7565b90509695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220af8662614f61f4253c28de33e8d166fe9e820f96faba09b90f41c066af0e899764736f6c634300080900330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000aa480aa490a17565142b86398fd333a82afca5dd0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d614c716245316d696466783536464c744b73536a35426d5137415a44535851366d3271383874476f4d4b78462f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a85760003560e01c8063763c87bf116100f9578063a22cb46511610097578063d547741f11610071578063d547741f146104cb578063e985e9c5146104e7578063f242432a14610517578063f2fde38b14610533576101a8565b8063a22cb46514610461578063c5f956af1461047d578063ca15c8731461049b576101a8565b80639010d07c116100d35780639010d07c146103c557806391d14854146103f557806395d89b4114610425578063a217fddf14610443576101a8565b8063763c87bf1461036d5780637df5bd3b1461038b5780638da5cb5b146103a7576101a8565b8063248a9ca31161016657806336568abe1161014057806336568abe146102fb5780634e1273f4146103175780636605bfda14610347578063715018a614610363576101a8565b8063248a9ca3146102935780632eb2c2d6146102c35780632f2ff15d146102df576101a8565b8062fdd58e146101ad57806301ffc9a7146101dd57806302fe53051461020d57806306fdde03146102295780630e89341c146102475780631f7fdffa14610277575b600080fd5b6101c760048036038101906101c29190612c50565b61054f565b6040516101d49190612c9f565b60405180910390f35b6101f760048036038101906101f29190612d12565b610618565b6040516102049190612d5a565b60405180910390f35b61022760048036038101906102229190612ebb565b61062a565b005b61023161065a565b60405161023e9190612f8c565b60405180910390f35b610261600480360381019061025c9190612fae565b6106e8565b60405161026e9190612f8c565b60405180910390f35b610291600480360381019061028c9190613144565b61071c565b005b6102ad60048036038101906102a89190613235565b610744565b6040516102ba9190613271565b60405180910390f35b6102dd60048036038101906102d8919061328c565b610764565b005b6102f960048036038101906102f4919061335b565b610805565b005b6103156004803603810190610310919061335b565b61082e565b005b610331600480360381019061032c919061345e565b6108b1565b60405161033e9190613594565b60405180910390f35b610361600480360381019061035c91906135b6565b6109ca565b005b61036b610a8a565b005b610375610b12565b6040516103829190612f8c565b60405180910390f35b6103a560048036038101906103a091906135e3565b610ba0565b005b6103af610bf7565b6040516103bc9190613632565b60405180910390f35b6103df60048036038101906103da919061364d565b610c21565b6040516103ec9190613632565b60405180910390f35b61040f600480360381019061040a919061335b565b610c50565b60405161041c9190612d5a565b60405180910390f35b61042d610cbb565b60405161043a9190612f8c565b60405180910390f35b61044b610d49565b6040516104589190613271565b60405180910390f35b61047b600480360381019061047691906136b9565b610d50565b005b610485610d66565b6040516104929190613632565b60405180910390f35b6104b560048036038101906104b09190613235565b610d8c565b6040516104c29190612c9f565b60405180910390f35b6104e560048036038101906104e0919061335b565b610db0565b005b61050160048036038101906104fc91906136f9565b610dd9565b60405161050e9190612d5a565b60405180910390f35b610531600480360381019061052c9190613739565b610e6d565b005b61054d600480360381019061054891906135b6565b610f0e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b790613842565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106238261112a565b9050919050565b6000801b61063f8161063a6111a4565b6111ac565b8160099080519060200190610655929190612b05565b505050565b6007805461066790613891565b80601f016020809104026020016040519081016040528092919081815260200182805461069390613891565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b505050505081565b606060096106f583611249565b604051602001610706929190613993565b6040516020818303038152906040529050919050565b6000801b6107318161072c6111a4565b6111ac565b61073d858585856113aa565b5050505050565b600060046000838152602001908152602001600020600101549050919050565b61076c6111a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107b257506107b1856107ac6111a4565b610dd9565b5b6107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890613a29565b60405180910390fd5b6107fe85858585856115c8565b5050505050565b61080e82610744565b61081f8161081a6111a4565b6111ac565b61082983836118dc565b505050565b6108366111a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90613abb565b60405180910390fd5b6108ad8282611910565b5050565b606081518351146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90613b4d565b60405180910390fd5b6000835167ffffffffffffffff81111561091457610913612d90565b5b6040519080825280602002602001820160405280156109425781602001602082028036833780820191505090505b50905060005b84518110156109bf5761098f85828151811061096757610966613b6d565b5b602002602001015185838151811061098257610981613b6d565b5b602002602001015161054f565b8282815181106109a2576109a1613b6d565b5b602002602001018181525050806109b890613bcb565b9050610948565b508091505092915050565b6109d26111a4565b73ffffffffffffffffffffffffffffffffffffffff166109f0610bf7565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90613c60565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a926111a4565b73ffffffffffffffffffffffffffffffffffffffff16610ab0610bf7565b73ffffffffffffffffffffffffffffffffffffffff1614610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90613c60565b60405180910390fd5b610b106000611944565b565b60098054610b1f90613891565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b90613891565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b505050505081565b6000801b610bb581610bb06111a4565b6111ac565b610bf2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16848460405180602001604052806000815250611a0a565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610c488260056000868152602001908152602001600020611ba090919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60088054610cc890613891565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490613891565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b505050505081565b6000801b81565b610d62610d5b6111a4565b8383611bba565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610da960056000848152602001908152602001600020611d27565b9050919050565b610db982610744565b610dca81610dc56111a4565b6111ac565b610dd48383611910565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e756111a4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ebb5750610eba85610eb56111a4565b610dd9565b5b610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190613cf2565b60405180910390fd5b610f078585858585611d3c565b5050505050565b610f166111a4565b73ffffffffffffffffffffffffffffffffffffffff16610f34610bf7565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190613c60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613d84565b60405180910390fd5b61100381611944565b50565b6110108282610c50565b6110e35760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110886111a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061110f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fbe565b905092915050565b600080823b905060008111915050919050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061119d575061119c8261202e565b5b9050919050565b600033905090565b6111b68282610c50565b611245576111db8173ffffffffffffffffffffffffffffffffffffffff1660146120a8565b6111e98360001c60206120a8565b6040516020016111fa929190613e3c565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c9190612f8c565b60405180910390fd5b5050565b60606000821415611291576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506113a5565b600082905060005b600082146112c35780806112ac90613bcb565b915050600a826112bc9190613ea5565b9150611299565b60008167ffffffffffffffff8111156112df576112de612d90565b5b6040519080825280601f01601f1916602001820160405280156113115781602001600182028036833780820191505090505b5090505b6000851461139e5760018261132a9190613ed6565b9150600a856113399190613f0a565b60306113459190613f3b565b60f81b81838151811061135b5761135a613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856113979190613ea5565b9450611315565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190614003565b60405180910390fd5b815183511461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614095565b60405180910390fd5b60006114686111a4565b9050611479816000878787876122e4565b60005b84518110156115325783818151811061149857611497613b6d565b5b60200260200101516000808784815181106114b6576114b5613b6d565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115189190613f3b565b92505081905550808061152a90613bcb565b91505061147c565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115aa9291906140b5565b60405180910390a46115c1816000878787876122ec565b5050505050565b815183511461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390614095565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061415e565b60405180910390fd5b60006116866111a4565b90506116968187878787876122e4565b60005b84518110156118475760008582815181106116b7576116b6613b6d565b5b6020026020010151905060008583815181106116d6576116d5613b6d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906141f0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182c9190613f3b565b925050819055505050508061184090613bcb565b9050611699565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118be9291906140b5565b60405180910390a46118d48187878787876122ec565b505050505050565b6118e68282611006565b61190b81600560008581526020019081526020016000206110e790919063ffffffff16565b505050565b61191a82826124d3565b61193f81600560008581526020019081526020016000206125b590919063ffffffff16565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614003565b60405180910390fd5b6000611a846111a4565b9050611aa581600087611a96886125e5565b611a9f886125e5565b876122e4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b049190613f3b565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b82929190614210565b60405180910390a4611b998160008787878761265f565b5050505050565b6000611baf8360000183612846565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c20906142ab565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a9190612d5a565b60405180910390a3505050565b6000611d3582600001612871565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da39061415e565b60405180910390fd5b6000611db66111a4565b9050611dd6818787611dc7886125e5565b611dd0886125e5565b876122e4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e64906141f0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f229190613f3b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611f9f929190614210565b60405180910390a4611fb582888888888861265f565b50505050505050565b6000611fca8383612882565b612023578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612028565b600090505b92915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120a157506120a0826128a5565b5b9050919050565b6060600060028360026120bb91906142cb565b6120c59190613f3b565b67ffffffffffffffff8111156120de576120dd612d90565b5b6040519080825280601f01601f1916602001820160405280156121105781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061214857612147613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121ac576121ab613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121ec91906142cb565b6121f69190613f3b565b90505b6001811115612296577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061223857612237613b6d565b5b1a60f81b82828151811061224f5761224e613b6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061228f90614325565b90506121f9565b50600084146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d19061439b565b60405180910390fd5b8091505092915050565b505050505050565b61230b8473ffffffffffffffffffffffffffffffffffffffff16611117565b156124cb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612351959493929190614410565b602060405180830381600087803b15801561236b57600080fd5b505af192505050801561239c57506040513d601f19601f82011682018060405250810190612399919061448d565b60015b612442576123a86144c7565b806308c379a0141561240557506123bd6144e9565b806123c85750612407565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc9190612f8c565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612439906145f1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614683565b60405180910390fd5b505b505050505050565b6124dd8282610c50565b156125b15760006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125566111a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006125dd836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612987565b905092915050565b60606000600167ffffffffffffffff81111561260457612603612d90565b5b6040519080825280602002602001820160405280156126325781602001602082028036833780820191505090505b509050828160008151811061264a57612649613b6d565b5b60200260200101818152505080915050919050565b61267e8473ffffffffffffffffffffffffffffffffffffffff16611117565b1561283e578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126c49594939291906146a3565b602060405180830381600087803b1580156126de57600080fd5b505af192505050801561270f57506040513d601f19601f8201168201806040525081019061270c919061448d565b60015b6127b55761271b6144c7565b806308c379a0141561277857506127306144e9565b8061273b575061277a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f9190612f8c565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906145f1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461283c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283390614683565b60405180910390fd5b505b505050505050565b600082600001828154811061285e5761285d613b6d565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061297057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612980575061297f82612a9b565b5b9050919050565b60008083600101600084815260200190815260200160002054905060008114612a8f5760006001826129b99190613ed6565b90506000600186600001805490506129d19190613ed6565b9050818114612a405760008660000182815481106129f2576129f1613b6d565b5b9060005260206000200154905080876000018481548110612a1657612a15613b6d565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612a5457612a536146fd565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612a95565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612b1190613891565b90600052602060002090601f016020900481019282612b335760008555612b7a565b82601f10612b4c57805160ff1916838001178555612b7a565b82800160010185558215612b7a579182015b82811115612b79578251825591602001919060010190612b5e565b5b509050612b879190612b8b565b5090565b5b80821115612ba4576000816000905550600101612b8c565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612be782612bbc565b9050919050565b612bf781612bdc565b8114612c0257600080fd5b50565b600081359050612c1481612bee565b92915050565b6000819050919050565b612c2d81612c1a565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b60008060408385031215612c6757612c66612bb2565b5b6000612c7585828601612c05565b9250506020612c8685828601612c3b565b9150509250929050565b612c9981612c1a565b82525050565b6000602082019050612cb46000830184612c90565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cef81612cba565b8114612cfa57600080fd5b50565b600081359050612d0c81612ce6565b92915050565b600060208284031215612d2857612d27612bb2565b5b6000612d3684828501612cfd565b91505092915050565b60008115159050919050565b612d5481612d3f565b82525050565b6000602082019050612d6f6000830184612d4b565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dc882612d7f565b810181811067ffffffffffffffff82111715612de757612de6612d90565b5b80604052505050565b6000612dfa612ba8565b9050612e068282612dbf565b919050565b600067ffffffffffffffff821115612e2657612e25612d90565b5b612e2f82612d7f565b9050602081019050919050565b82818337600083830152505050565b6000612e5e612e5984612e0b565b612df0565b905082815260208101848484011115612e7a57612e79612d7a565b5b612e85848285612e3c565b509392505050565b600082601f830112612ea257612ea1612d75565b5b8135612eb2848260208601612e4b565b91505092915050565b600060208284031215612ed157612ed0612bb2565b5b600082013567ffffffffffffffff811115612eef57612eee612bb7565b5b612efb84828501612e8d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f3e578082015181840152602081019050612f23565b83811115612f4d576000848401525b50505050565b6000612f5e82612f04565b612f688185612f0f565b9350612f78818560208601612f20565b612f8181612d7f565b840191505092915050565b60006020820190508181036000830152612fa68184612f53565b905092915050565b600060208284031215612fc457612fc3612bb2565b5b6000612fd284828501612c3b565b91505092915050565b600067ffffffffffffffff821115612ff657612ff5612d90565b5b602082029050602081019050919050565b600080fd5b600061301f61301a84612fdb565b612df0565b9050808382526020820190506020840283018581111561304257613041613007565b5b835b8181101561306b57806130578882612c3b565b845260208401935050602081019050613044565b5050509392505050565b600082601f83011261308a57613089612d75565b5b813561309a84826020860161300c565b91505092915050565b600067ffffffffffffffff8211156130be576130bd612d90565b5b6130c782612d7f565b9050602081019050919050565b60006130e76130e2846130a3565b612df0565b90508281526020810184848401111561310357613102612d7a565b5b61310e848285612e3c565b509392505050565b600082601f83011261312b5761312a612d75565b5b813561313b8482602086016130d4565b91505092915050565b6000806000806080858703121561315e5761315d612bb2565b5b600061316c87828801612c05565b945050602085013567ffffffffffffffff81111561318d5761318c612bb7565b5b61319987828801613075565b935050604085013567ffffffffffffffff8111156131ba576131b9612bb7565b5b6131c687828801613075565b925050606085013567ffffffffffffffff8111156131e7576131e6612bb7565b5b6131f387828801613116565b91505092959194509250565b6000819050919050565b613212816131ff565b811461321d57600080fd5b50565b60008135905061322f81613209565b92915050565b60006020828403121561324b5761324a612bb2565b5b600061325984828501613220565b91505092915050565b61326b816131ff565b82525050565b60006020820190506132866000830184613262565b92915050565b600080600080600060a086880312156132a8576132a7612bb2565b5b60006132b688828901612c05565b95505060206132c788828901612c05565b945050604086013567ffffffffffffffff8111156132e8576132e7612bb7565b5b6132f488828901613075565b935050606086013567ffffffffffffffff81111561331557613314612bb7565b5b61332188828901613075565b925050608086013567ffffffffffffffff81111561334257613341612bb7565b5b61334e88828901613116565b9150509295509295909350565b6000806040838503121561337257613371612bb2565b5b600061338085828601613220565b925050602061339185828601612c05565b9150509250929050565b600067ffffffffffffffff8211156133b6576133b5612d90565b5b602082029050602081019050919050565b60006133da6133d58461339b565b612df0565b905080838252602082019050602084028301858111156133fd576133fc613007565b5b835b8181101561342657806134128882612c05565b8452602084019350506020810190506133ff565b5050509392505050565b600082601f83011261344557613444612d75565b5b81356134558482602086016133c7565b91505092915050565b6000806040838503121561347557613474612bb2565b5b600083013567ffffffffffffffff81111561349357613492612bb7565b5b61349f85828601613430565b925050602083013567ffffffffffffffff8111156134c0576134bf612bb7565b5b6134cc85828601613075565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61350b81612c1a565b82525050565b600061351d8383613502565b60208301905092915050565b6000602082019050919050565b6000613541826134d6565b61354b81856134e1565b9350613556836134f2565b8060005b8381101561358757815161356e8882613511565b975061357983613529565b92505060018101905061355a565b5085935050505092915050565b600060208201905081810360008301526135ae8184613536565b905092915050565b6000602082840312156135cc576135cb612bb2565b5b60006135da84828501612c05565b91505092915050565b600080604083850312156135fa576135f9612bb2565b5b600061360885828601612c3b565b925050602061361985828601612c3b565b9150509250929050565b61362c81612bdc565b82525050565b60006020820190506136476000830184613623565b92915050565b6000806040838503121561366457613663612bb2565b5b600061367285828601613220565b925050602061368385828601612c3b565b9150509250929050565b61369681612d3f565b81146136a157600080fd5b50565b6000813590506136b38161368d565b92915050565b600080604083850312156136d0576136cf612bb2565b5b60006136de85828601612c05565b92505060206136ef858286016136a4565b9150509250929050565b600080604083850312156137105761370f612bb2565b5b600061371e85828601612c05565b925050602061372f85828601612c05565b9150509250929050565b600080600080600060a0868803121561375557613754612bb2565b5b600061376388828901612c05565b955050602061377488828901612c05565b945050604061378588828901612c3b565b935050606061379688828901612c3b565b925050608086013567ffffffffffffffff8111156137b7576137b6612bb7565b5b6137c388828901613116565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061382c602b83612f0f565b9150613837826137d0565b604082019050919050565b6000602082019050818103600083015261385b8161381f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a957607f821691505b602082108114156138bd576138bc613862565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138f081613891565b6138fa81866138c3565b94506001821660008114613915576001811461392657613959565b60ff19831686528186019350613959565b61392f856138ce565b60005b8381101561395157815481890152600182019150602081019050613932565b838801955050505b50505092915050565b600061396d82612f04565b61397781856138c3565b9350613987818560208601612f20565b80840191505092915050565b600061399f82856138e3565b91506139ab8284613962565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a13603283612f0f565b9150613a1e826139b7565b604082019050919050565b60006020820190508181036000830152613a4281613a06565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613aa5602f83612f0f565b9150613ab082613a49565b604082019050919050565b60006020820190508181036000830152613ad481613a98565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b37602983612f0f565b9150613b4282613adb565b604082019050919050565b60006020820190508181036000830152613b6681613b2a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd682612c1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0957613c08613b9c565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c4a602083612f0f565b9150613c5582613c14565b602082019050919050565b60006020820190508181036000830152613c7981613c3d565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613cdc602983612f0f565b9150613ce782613c80565b604082019050919050565b60006020820190508181036000830152613d0b81613ccf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d6e602683612f0f565b9150613d7982613d12565b604082019050919050565b60006020820190508181036000830152613d9d81613d61565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613dda6017836138c3565b9150613de582613da4565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613e266011836138c3565b9150613e3182613df0565b601182019050919050565b6000613e4782613dcd565b9150613e538285613962565b9150613e5e82613e19565b9150613e6a8284613962565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613eb082612c1a565b9150613ebb83612c1a565b925082613ecb57613eca613e76565b5b828204905092915050565b6000613ee182612c1a565b9150613eec83612c1a565b925082821015613eff57613efe613b9c565b5b828203905092915050565b6000613f1582612c1a565b9150613f2083612c1a565b925082613f3057613f2f613e76565b5b828206905092915050565b6000613f4682612c1a565b9150613f5183612c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8657613f85613b9c565b5b828201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fed602183612f0f565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061407f602883612f0f565b915061408a82614023565b604082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b600060408201905081810360008301526140cf8185613536565b905081810360208301526140e38184613536565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614148602583612f0f565b9150614153826140ec565b604082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006141da602a83612f0f565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b60006040820190506142256000830185612c90565b6142326020830184612c90565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614295602983612f0f565b91506142a082614239565b604082019050919050565b600060208201905081810360008301526142c481614288565b9050919050565b60006142d682612c1a565b91506142e183612c1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431a57614319613b9c565b5b828202905092915050565b600061433082612c1a565b9150600082141561434457614343613b9c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614385602083612f0f565b91506143908261434f565b602082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143e2826143bb565b6143ec81856143c6565b93506143fc818560208601612f20565b61440581612d7f565b840191505092915050565b600060a0820190506144256000830188613623565b6144326020830187613623565b81810360408301526144448186613536565b905081810360608301526144588185613536565b9050818103608083015261446c81846143d7565b90509695505050505050565b60008151905061448781612ce6565b92915050565b6000602082840312156144a3576144a2612bb2565b5b60006144b184828501614478565b91505092915050565b60008160e01c9050919050565b600060033d11156144e65760046000803e6144e36000516144ba565b90505b90565b600060443d10156144f95761457c565b614501612ba8565b60043d036004823e80513d602482011167ffffffffffffffff8211171561452957505061457c565b808201805167ffffffffffffffff811115614547575050505061457c565b80602083010160043d03850181111561456457505050505061457c565b61457382602001850186612dbf565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006145db603483612f0f565b91506145e68261457f565b604082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061466d602883612f0f565b915061467882614611565b604082019050919050565b6000602082019050818103600083015261469c81614660565b9050919050565b600060a0820190506146b86000830188613623565b6146c56020830187613623565b6146d26040830186612c90565b6146df6060830185612c90565b81810360808301526146f181846143d7565b90509695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220af8662614f61f4253c28de33e8d166fe9e820f96faba09b90f41c066af0e899764736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000aa480aa490a17565142b86398fd333a82afca5dd0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d614c716245316d696466783536464c744b73536a35426d5137415a44535851366d3271383874476f4d4b78462f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseMetadataUri (string): ipfs://QmaLqbE1midfx56FLtKsSj5BmQ7AZDSXQ6m2q88tGoMKxF/
Arg [1] : _treasuryAddress (address): 0xaA480aA490a17565142b86398FD333a82aFCA5Dd

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000aa480aa490a17565142b86398fd333a82afca5dd
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d614c716245316d696466783536464c744b73536a35426d
Arg [4] : 5137415a44535851366d3271383874476f4d4b78462f00000000000000000000


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.