ETH Price: $3,230.88 (+1.50%)
Gas: 3 Gwei

Token

iSeaMonsters (ISM)
 

Overview

Max Total Supply

2,222 ISM

Holders

499

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xba55a4ad8b09c532fd5f330768a5c415e5cd689b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

iSea Monsters is a Health NFT Collection of 2,222 randomly generated monsters ready to play and train with humans.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ISeaMonsters

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-12
*/

// File: contracts/Proxy.sol


pragma solidity ^0.8.0;

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/access/IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/IAccessControlEnumerable.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





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

// File: @openzeppelin/contracts/access/AccessControlEnumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;




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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







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

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;



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

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

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;


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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

// File: @openzeppelin/contracts/token/ERC1155/presets/ERC1155PresetMinterPauser.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/presets/ERC1155PresetMinterPauser.sol)

pragma solidity ^0.8.0;






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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

// File: contracts/iSeaMonstersNFT.sol



pragma solidity ^0.8.9;





/**
 * @title iSeaMonsters
 * iSeaMonsters - contract for ethereum.
 */

contract ISeaMonsters is ERC1155PresetMinterPauser, Ownable {
    address public proxyRegistryAddress;
    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    string private _contractUri;

    constructor(
        address _proxyRegistryAddress,
        string memory _name,
        string memory _symbol
    ) ERC1155PresetMinterPauser("https://metadata.iseamonsters.com/v1/token/{id}") {
        proxyRegistryAddress = _proxyRegistryAddress;
        name = _name;
        symbol = _symbol;
        _contractUri = "https://iseamonsters.s3.us-west-2.amazonaws.com/nft/iseamonsters/contract.json";
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings.
     */
    function isApprovedForAll(address _owner, address _operator)
        public
        view
        override
        returns (bool isOperator)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator) {
            return true;
        }

        return ERC1155.isApprovedForAll(_owner, _operator);
    }

    function setURI(string memory _newUri) public onlyOwner {
        _setURI(_newUri);
    }

    function setContractURI(string memory _newUri) public onlyOwner {
        _contractUri = _newUri;
    }

    function contractURI() public view returns (string memory) {
        return _contractUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","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":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","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":"string","name":"_newUri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620060523803806200605283398181016040528101906200003791906200081e565b6040518060600160405280602f815260200162006023602f9139806200006381620001f460201b60201c565b506000600560006101000a81548160ff021916908315150217905550620000a36000801b620000976200021060201b60201c565b6200021860201b60201c565b620000e47f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000d86200021060201b60201c565b6200021860201b60201c565b620001257f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001196200021060201b60201c565b6200021860201b60201c565b50620001466200013a6200021060201b60201c565b6200022e60201b60201c565b82600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600790805190602001906200019f9291906200056c565b508060089080519060200190620001b89291906200056c565b506040518060800160405280604e815260200162005fd5604e913960099080519060200190620001ea9291906200056c565b505050506200091c565b80600490805190602001906200020c9291906200056c565b5050565b600033905090565b6200022a8282620002f460201b60201c565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200030b82826200033c60201b620015081760201c565b6200033781600160008581526020019081526020016000206200042d60201b620015e81790919060201c565b505050565b6200034e82826200046560201b60201c565b6200042957600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003ce6200021060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200045d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620004cf60201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620004e383836200054960201b60201c565b6200053e57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000543565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200057a90620008e7565b90600052602060002090601f0160209004810192826200059e5760008555620005ea565b82601f10620005b957805160ff1916838001178555620005ea565b82800160010185558215620005ea579182015b82811115620005e9578251825591602001919060010190620005cc565b5b509050620005f99190620005fd565b5090565b5b8082111562000618576000816000905550600101620005fe565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200065d8262000630565b9050919050565b6200066f8162000650565b81146200067b57600080fd5b50565b6000815190506200068f8162000664565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006ea826200069f565b810181811067ffffffffffffffff821117156200070c576200070b620006b0565b5b80604052505050565b6000620007216200061c565b90506200072f8282620006df565b919050565b600067ffffffffffffffff821115620007525762000751620006b0565b5b6200075d826200069f565b9050602081019050919050565b60005b838110156200078a5780820151818401526020810190506200076d565b838111156200079a576000848401525b50505050565b6000620007b7620007b18462000734565b62000715565b905082815260208101848484011115620007d657620007d56200069a565b5b620007e38482856200076a565b509392505050565b600082601f83011262000803576200080262000695565b5b815162000815848260208601620007a0565b91505092915050565b6000806000606084860312156200083a576200083962000626565b5b60006200084a868287016200067e565b935050602084015167ffffffffffffffff8111156200086e576200086d6200062b565b5b6200087c86828701620007eb565b925050604084015167ffffffffffffffff811115620008a0576200089f6200062b565b5b620008ae86828701620007eb565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200090057607f821691505b602082108103620009165762000915620008b8565b5b50919050565b6156a9806200092c6000396000f3fe608060405234801561001057600080fd5b50600436106102055760003560e01c80638da5cb5b1161011a578063cd7c0326116100ad578063e8a3d4851161007c578063e8a3d485146105b0578063e985e9c5146105ce578063f242432a146105fe578063f2fde38b1461061a578063f5298aca1461063657610205565b8063cd7c03261461053a578063d539139314610558578063d547741f14610576578063e63ab1e91461059257610205565b806395d89b41116100e957806395d89b41146104b2578063a217fddf146104d0578063a22cb465146104ee578063ca15c8731461050a57610205565b80638da5cb5b146104185780639010d07c1461043657806391d1485414610466578063938e3d7b1461049657610205565b80632f2ff15d1161019d5780635c975abb1161016c5780635c975abb146103ae5780636b20c454146103cc578063715018a6146103e8578063731133e9146103f25780638456cb591461040e57610205565b80632f2ff15d1461033c57806336568abe146103585780633f4ba83a146103745780634e1273f41461037e57610205565b80630e89341c116101d95780630e89341c146102a45780631f7fdffa146102d4578063248a9ca3146102f05780632eb2c2d61461032057610205565b8062fdd58e1461020a57806301ffc9a71461023a57806302fe53051461026a57806306fdde0314610286575b600080fd5b610224600480360381019061021f9190613719565b610652565b6040516102319190613768565b60405180910390f35b610254600480360381019061024f91906137db565b61071b565b6040516102619190613823565b60405180910390f35b610284600480360381019061027f9190613984565b61072d565b005b61028e6107b5565b60405161029b9190613a55565b60405180910390f35b6102be60048036038101906102b99190613a77565b610843565b6040516102cb9190613a55565b60405180910390f35b6102ee60048036038101906102e99190613c0d565b6108d7565b005b61030a60048036038101906103059190613cfe565b610959565b6040516103179190613d3a565b60405180910390f35b61033a60048036038101906103359190613d55565b610978565b005b61035660048036038101906103519190613e24565b610a19565b005b610372600480360381019061036d9190613e24565b610a42565b005b61037c610ac5565b005b61039860048036038101906103939190613f27565b610b3f565b6040516103a5919061405d565b60405180910390f35b6103b6610c58565b6040516103c39190613823565b60405180910390f35b6103e660048036038101906103e1919061407f565b610c6f565b005b6103f0610d0c565b005b61040c6004803603810190610407919061410a565b610d94565b005b610416610e16565b005b610420610e90565b60405161042d919061419c565b60405180910390f35b610450600480360381019061044b91906141b7565b610eba565b60405161045d919061419c565b60405180910390f35b610480600480360381019061047b9190613e24565b610ee9565b60405161048d9190613823565b60405180910390f35b6104b060048036038101906104ab9190613984565b610f53565b005b6104ba610fe9565b6040516104c79190613a55565b60405180910390f35b6104d8611077565b6040516104e59190613d3a565b60405180910390f35b61050860048036038101906105039190614223565b61107e565b005b610524600480360381019061051f9190613cfe565b611094565b6040516105319190613768565b60405180910390f35b6105426110b8565b60405161054f919061419c565b60405180910390f35b6105606110de565b60405161056d9190613d3a565b60405180910390f35b610590600480360381019061058b9190613e24565b611102565b005b61059a61112b565b6040516105a79190613d3a565b60405180910390f35b6105b861114f565b6040516105c59190613a55565b60405180910390f35b6105e860048036038101906105e39190614263565b6111e1565b6040516105f59190613823565b60405180910390f35b610618600480360381019061061391906142a3565b6112d3565b005b610634600480360381019061062f919061433a565b611374565b005b610650600480360381019061064b9190614367565b61146b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b99061442c565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061072682611618565b9050919050565b6107356116fa565b73ffffffffffffffffffffffffffffffffffffffff16610753610e90565b73ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090614498565b60405180910390fd5b6107b281611702565b50565b600780546107c2906144e7565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee906144e7565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b505050505081565b606060048054610852906144e7565b80601f016020809104026020016040519081016040528092919081815260200182805461087e906144e7565b80156108cb5780601f106108a0576101008083540402835291602001916108cb565b820191906000526020600020905b8154815290600101906020018083116108ae57829003601f168201915b50505050509050919050565b6109087f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109036116fa565b610ee9565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061458a565b60405180910390fd5b6109538484848461171c565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6109806116fa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c657506109c5856109c06116fa565b6111e1565b5b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc9061461c565b60405180910390fd5b610a12858585858561193a565b5050505050565b610a2282610959565b610a3381610a2e6116fa565b611c50565b610a3d8383611ced565b505050565b610a4a6116fa565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906146ae565b60405180910390fd5b610ac18282611d21565b5050565b610af67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610af16116fa565b610ee9565b610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90614740565b60405180910390fd5b610b3d611d55565b565b60608151835114610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906147d2565b60405180910390fd5b6000835167ffffffffffffffff811115610ba257610ba1613859565b5b604051908082528060200260200182016040528015610bd05781602001602082028036833780820191505090505b50905060005b8451811015610c4d57610c1d858281518110610bf557610bf46147f2565b5b6020026020010151858381518110610c1057610c0f6147f2565b5b6020026020010151610652565b828281518110610c3057610c2f6147f2565b5b60200260200101818152505080610c4690614850565b9050610bd6565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610c776116fa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cbd5750610cbc83610cb76116fa565b6111e1565b5b610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061490a565b60405180910390fd5b610d07838383611df7565b505050565b610d146116fa565b73ffffffffffffffffffffffffffffffffffffffff16610d32610e90565b73ffffffffffffffffffffffffffffffffffffffff1614610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614498565b60405180910390fd5b610d9260006120a9565b565b610dc57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610dc06116fa565b610ee9565b610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061458a565b60405180910390fd5b610e108484848461216f565b50505050565b610e477f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610e426116fa565b610ee9565b610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d9061499c565b60405180910390fd5b610e8e612305565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610ee182600160008681526020019081526020016000206123a890919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f5b6116fa565b73ffffffffffffffffffffffffffffffffffffffff16610f79610e90565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690614498565b60405180910390fd5b8060099080519060200190610fe59291906135ce565b5050565b60088054610ff6906144e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611022906144e7565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b505050505081565b6000801b81565b6110906110896116fa565b83836123c2565b5050565b60006110b16001600084815260200190815260200160002061252e565b9050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61110b82610959565b61111c816111176116fa565b611c50565b6111268383611d21565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60606009805461115e906144e7565b80601f016020809104026020016040519081016040528092919081815260200182805461118a906144e7565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b5050505050905090565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611259919061419c565b602060405180830381865afa158015611276573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129a91906149fa565b73ffffffffffffffffffffffffffffffffffffffff16036112bf5760019150506112cd565b6112c98484612543565b9150505b92915050565b6112db6116fa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061132157506113208561131b6116fa565b6111e1565b5b611360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113579061490a565b60405180910390fd5b61136d85858585856125d7565b5050505050565b61137c6116fa565b73ffffffffffffffffffffffffffffffffffffffff1661139a610e90565b73ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614498565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690614a99565b60405180910390fd5b611468816120a9565b50565b6114736116fa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114b957506114b8836114b36116fa565b6111e1565b5b6114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061490a565b60405180910390fd5b61150383838361285b565b505050565b6115128282610ee9565b6115e457600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115896116fa565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611610836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612a79565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116e357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116f357506116f282612ae9565b5b9050919050565b600033905090565b80600490805190602001906117189291906135ce565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290614b2b565b60405180910390fd5b81518351146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614bbd565b60405180910390fd5b60006117d96116fa565b90506117ea81600087878787612b63565b60005b84518110156118a457838181518110611809576118086147f2565b5b602002602001015160026000878481518110611828576118276147f2565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188a9190614bdd565b92505081905550808061189c90614850565b9150506117ed565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161191c929190614c33565b60405180910390a461193381600087878787612b79565b5050505050565b815183511461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614cdc565b60405180910390fd5b60006119f76116fa565b9050611a07818787878787612b63565b60005b8451811015611bbb576000858281518110611a2857611a276147f2565b5b602002602001015190506000858381518110611a4757611a466147f2565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090614d6e565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba09190614bdd565b9250508190555050505080611bb490614850565b9050611a0a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c32929190614c33565b60405180910390a4611c48818787878787612b79565b505050505050565b611c5a8282610ee9565b611ce957611c7f8173ffffffffffffffffffffffffffffffffffffffff166014612d50565b611c8d8360001c6020612d50565b604051602001611c9e929190614e62565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09190613a55565b60405180910390fd5b5050565b611cf78282611508565b611d1c81600160008581526020019081526020016000206115e890919063ffffffff16565b505050565b611d2b8282612f8c565b611d50816001600085815260200190815260200160002061306d90919063ffffffff16565b505050565b611d5d610c58565b611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390614ee8565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611de06116fa565b604051611ded919061419c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90614f7a565b60405180910390fd5b8051825114611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614bbd565b60405180910390fd5b6000611eb46116fa565b9050611ed481856000868660405180602001604052806000815250612b63565b60005b8351811015612023576000848281518110611ef557611ef46147f2565b5b602002602001015190506000848381518110611f1457611f136147f2565b5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad9061500c565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061201b90614850565b915050611ed7565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161209b929190614c33565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590614b2b565b60405180910390fd5b60006121e86116fa565b9050612209816000876121fa8861309d565b6122038861309d565b87612b63565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122699190614bdd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516122e792919061502c565b60405180910390a46122fe81600087878787613117565b5050505050565b61230d610c58565b1561234d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612344906150a1565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123916116fa565b60405161239e919061419c565b60405180910390a1565b60006123b783600001836132ee565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790615133565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125219190613823565b60405180910390a3505050565b600061253c82600001613319565b9050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90614cdc565b60405180910390fd5b60006126506116fa565b90506126708187876126618861309d565b61266a8861309d565b87612b63565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90614d6e565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127bf9190614bdd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161283c92919061502c565b60405180910390a4612852828888888888613117565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c190614f7a565b60405180910390fd5b60006128d46116fa565b9050612904818560006128e68761309d565b6128ef8761309d565b60405180602001604052806000815250612b63565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561299c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129939061500c565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612a6a92919061502c565b60405180910390a45050505050565b6000612a85838361332a565b612ade578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612ae3565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5c5750612b5b8261334d565b5b9050919050565b612b718686868686866133c7565b505050505050565b612b988473ffffffffffffffffffffffffffffffffffffffff16613425565b15612d48578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612bde9594939291906151a8565b6020604051808303816000875af1925050508015612c1a57506040513d601f19601f82011682018060405250810190612c179190615225565b60015b612cbf57612c2661525f565b806308c379a003612c825750612c3a615281565b80612c455750612c84565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c799190613a55565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb690615383565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90615415565b60405180910390fd5b505b505050505050565b606060006002836002612d639190615435565b612d6d9190614bdd565b67ffffffffffffffff811115612d8657612d85613859565b5b6040519080825280601f01601f191660200182016040528015612db85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612df057612def6147f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612e5457612e536147f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612e949190615435565b612e9e9190614bdd565b90505b6001811115612f3e577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612ee057612edf6147f2565b5b1a60f81b828281518110612ef757612ef66147f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612f379061548f565b9050612ea1565b5060008414612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7990615504565b60405180910390fd5b8091505092915050565b612f968282610ee9565b1561306957600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061300e6116fa565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613095836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613448565b905092915050565b60606000600167ffffffffffffffff8111156130bc576130bb613859565b5b6040519080825280602002602001820160405280156130ea5781602001602082028036833780820191505090505b5090508281600081518110613102576131016147f2565b5b60200260200101818152505080915050919050565b6131368473ffffffffffffffffffffffffffffffffffffffff16613425565b156132e6578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161317c959493929190615524565b6020604051808303816000875af19250505080156131b857506040513d601f19601f820116820180604052508101906131b59190615225565b60015b61325d576131c461525f565b806308c379a00361322057506131d8615281565b806131e35750613222565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132179190613a55565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325490615383565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132db90615415565b60405180910390fd5b505b505050505050565b6000826000018281548110613306576133056147f2565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806133c057506133bf8261355c565b5b9050919050565b6133d58686868686866135c6565b6133dd610c58565b1561341d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613414906155f0565b60405180910390fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000808360010160008481526020019081526020016000205490506000811461355057600060018261347a9190615610565b90506000600186600001805490506134929190615610565b90508181146135015760008660000182815481106134b3576134b26147f2565b5b90600052602060002001549050808760000184815481106134d7576134d66147f2565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061351557613514615644565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613556565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b8280546135da906144e7565b90600052602060002090601f0160209004810192826135fc5760008555613643565b82601f1061361557805160ff1916838001178555613643565b82800160010185558215613643579182015b82811115613642578251825591602001919060010190613627565b5b5090506136509190613654565b5090565b5b8082111561366d576000816000905550600101613655565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136b082613685565b9050919050565b6136c0816136a5565b81146136cb57600080fd5b50565b6000813590506136dd816136b7565b92915050565b6000819050919050565b6136f6816136e3565b811461370157600080fd5b50565b600081359050613713816136ed565b92915050565b600080604083850312156137305761372f61367b565b5b600061373e858286016136ce565b925050602061374f85828601613704565b9150509250929050565b613762816136e3565b82525050565b600060208201905061377d6000830184613759565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137b881613783565b81146137c357600080fd5b50565b6000813590506137d5816137af565b92915050565b6000602082840312156137f1576137f061367b565b5b60006137ff848285016137c6565b91505092915050565b60008115159050919050565b61381d81613808565b82525050565b60006020820190506138386000830184613814565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61389182613848565b810181811067ffffffffffffffff821117156138b0576138af613859565b5b80604052505050565b60006138c3613671565b90506138cf8282613888565b919050565b600067ffffffffffffffff8211156138ef576138ee613859565b5b6138f882613848565b9050602081019050919050565b82818337600083830152505050565b6000613927613922846138d4565b6138b9565b90508281526020810184848401111561394357613942613843565b5b61394e848285613905565b509392505050565b600082601f83011261396b5761396a61383e565b5b813561397b848260208601613914565b91505092915050565b60006020828403121561399a5761399961367b565b5b600082013567ffffffffffffffff8111156139b8576139b7613680565b5b6139c484828501613956565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a075780820151818401526020810190506139ec565b83811115613a16576000848401525b50505050565b6000613a27826139cd565b613a3181856139d8565b9350613a418185602086016139e9565b613a4a81613848565b840191505092915050565b60006020820190508181036000830152613a6f8184613a1c565b905092915050565b600060208284031215613a8d57613a8c61367b565b5b6000613a9b84828501613704565b91505092915050565b600067ffffffffffffffff821115613abf57613abe613859565b5b602082029050602081019050919050565b600080fd5b6000613ae8613ae384613aa4565b6138b9565b90508083825260208201905060208402830185811115613b0b57613b0a613ad0565b5b835b81811015613b345780613b208882613704565b845260208401935050602081019050613b0d565b5050509392505050565b600082601f830112613b5357613b5261383e565b5b8135613b63848260208601613ad5565b91505092915050565b600067ffffffffffffffff821115613b8757613b86613859565b5b613b9082613848565b9050602081019050919050565b6000613bb0613bab84613b6c565b6138b9565b905082815260208101848484011115613bcc57613bcb613843565b5b613bd7848285613905565b509392505050565b600082601f830112613bf457613bf361383e565b5b8135613c04848260208601613b9d565b91505092915050565b60008060008060808587031215613c2757613c2661367b565b5b6000613c35878288016136ce565b945050602085013567ffffffffffffffff811115613c5657613c55613680565b5b613c6287828801613b3e565b935050604085013567ffffffffffffffff811115613c8357613c82613680565b5b613c8f87828801613b3e565b925050606085013567ffffffffffffffff811115613cb057613caf613680565b5b613cbc87828801613bdf565b91505092959194509250565b6000819050919050565b613cdb81613cc8565b8114613ce657600080fd5b50565b600081359050613cf881613cd2565b92915050565b600060208284031215613d1457613d1361367b565b5b6000613d2284828501613ce9565b91505092915050565b613d3481613cc8565b82525050565b6000602082019050613d4f6000830184613d2b565b92915050565b600080600080600060a08688031215613d7157613d7061367b565b5b6000613d7f888289016136ce565b9550506020613d90888289016136ce565b945050604086013567ffffffffffffffff811115613db157613db0613680565b5b613dbd88828901613b3e565b935050606086013567ffffffffffffffff811115613dde57613ddd613680565b5b613dea88828901613b3e565b925050608086013567ffffffffffffffff811115613e0b57613e0a613680565b5b613e1788828901613bdf565b9150509295509295909350565b60008060408385031215613e3b57613e3a61367b565b5b6000613e4985828601613ce9565b9250506020613e5a858286016136ce565b9150509250929050565b600067ffffffffffffffff821115613e7f57613e7e613859565b5b602082029050602081019050919050565b6000613ea3613e9e84613e64565b6138b9565b90508083825260208201905060208402830185811115613ec657613ec5613ad0565b5b835b81811015613eef5780613edb88826136ce565b845260208401935050602081019050613ec8565b5050509392505050565b600082601f830112613f0e57613f0d61383e565b5b8135613f1e848260208601613e90565b91505092915050565b60008060408385031215613f3e57613f3d61367b565b5b600083013567ffffffffffffffff811115613f5c57613f5b613680565b5b613f6885828601613ef9565b925050602083013567ffffffffffffffff811115613f8957613f88613680565b5b613f9585828601613b3e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fd4816136e3565b82525050565b6000613fe68383613fcb565b60208301905092915050565b6000602082019050919050565b600061400a82613f9f565b6140148185613faa565b935061401f83613fbb565b8060005b838110156140505781516140378882613fda565b975061404283613ff2565b925050600181019050614023565b5085935050505092915050565b600060208201905081810360008301526140778184613fff565b905092915050565b6000806000606084860312156140985761409761367b565b5b60006140a6868287016136ce565b935050602084013567ffffffffffffffff8111156140c7576140c6613680565b5b6140d386828701613b3e565b925050604084013567ffffffffffffffff8111156140f4576140f3613680565b5b61410086828701613b3e565b9150509250925092565b600080600080608085870312156141245761412361367b565b5b6000614132878288016136ce565b945050602061414387828801613704565b935050604061415487828801613704565b925050606085013567ffffffffffffffff81111561417557614174613680565b5b61418187828801613bdf565b91505092959194509250565b614196816136a5565b82525050565b60006020820190506141b1600083018461418d565b92915050565b600080604083850312156141ce576141cd61367b565b5b60006141dc85828601613ce9565b92505060206141ed85828601613704565b9150509250929050565b61420081613808565b811461420b57600080fd5b50565b60008135905061421d816141f7565b92915050565b6000806040838503121561423a5761423961367b565b5b6000614248858286016136ce565b92505060206142598582860161420e565b9150509250929050565b6000806040838503121561427a5761427961367b565b5b6000614288858286016136ce565b9250506020614299858286016136ce565b9150509250929050565b600080600080600060a086880312156142bf576142be61367b565b5b60006142cd888289016136ce565b95505060206142de888289016136ce565b94505060406142ef88828901613704565b935050606061430088828901613704565b925050608086013567ffffffffffffffff81111561432157614320613680565b5b61432d88828901613bdf565b9150509295509295909350565b6000602082840312156143505761434f61367b565b5b600061435e848285016136ce565b91505092915050565b6000806000606084860312156143805761437f61367b565b5b600061438e868287016136ce565b935050602061439f86828701613704565b92505060406143b086828701613704565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614416602b836139d8565b9150614421826143ba565b604082019050919050565b6000602082019050818103600083015261444581614409565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144826020836139d8565b915061448d8261444c565b602082019050919050565b600060208201905081810360008301526144b181614475565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144ff57607f821691505b602082108103614512576145116144b8565b5b50919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b60006145746038836139d8565b915061457f82614518565b604082019050919050565b600060208201905081810360008301526145a381614567565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146066032836139d8565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614698602f836139d8565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b600061472a603b836139d8565b9150614735826146ce565b604082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006147bc6029836139d8565b91506147c782614760565b604082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061485b826136e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361488d5761488c614821565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006148f46029836139d8565b91506148ff82614898565b604082019050919050565b60006020820190508181036000830152614923816148e7565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b60006149866039836139d8565b91506149918261492a565b604082019050919050565b600060208201905081810360008301526149b581614979565b9050919050565b60006149c7826136a5565b9050919050565b6149d7816149bc565b81146149e257600080fd5b50565b6000815190506149f4816149ce565b92915050565b600060208284031215614a1057614a0f61367b565b5b6000614a1e848285016149e5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a836026836139d8565b9150614a8e82614a27565b604082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b156021836139d8565b9150614b2082614ab9565b604082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614ba76028836139d8565b9150614bb282614b4b565b604082019050919050565b60006020820190508181036000830152614bd681614b9a565b9050919050565b6000614be8826136e3565b9150614bf3836136e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2857614c27614821565b5b828201905092915050565b60006040820190508181036000830152614c4d8185613fff565b90508181036020830152614c618184613fff565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cc66025836139d8565b9150614cd182614c6a565b604082019050919050565b60006020820190508181036000830152614cf581614cb9565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614d58602a836139d8565b9150614d6382614cfc565b604082019050919050565b60006020820190508181036000830152614d8781614d4b565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000614dcf601783614d8e565b9150614dda82614d99565b601782019050919050565b6000614df0826139cd565b614dfa8185614d8e565b9350614e0a8185602086016139e9565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614e4c601183614d8e565b9150614e5782614e16565b601182019050919050565b6000614e6d82614dc2565b9150614e798285614de5565b9150614e8482614e3f565b9150614e908284614de5565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614ed26014836139d8565b9150614edd82614e9c565b602082019050919050565b60006020820190508181036000830152614f0181614ec5565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f646023836139d8565b9150614f6f82614f08565b604082019050919050565b60006020820190508181036000830152614f9381614f57565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614ff66024836139d8565b915061500182614f9a565b604082019050919050565b6000602082019050818103600083015261502581614fe9565b9050919050565b60006040820190506150416000830185613759565b61504e6020830184613759565b9392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061508b6010836139d8565b915061509682615055565b602082019050919050565b600060208201905081810360008301526150ba8161507e565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061511d6029836139d8565b9150615128826150c1565b604082019050919050565b6000602082019050818103600083015261514c81615110565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061517a82615153565b615184818561515e565b93506151948185602086016139e9565b61519d81613848565b840191505092915050565b600060a0820190506151bd600083018861418d565b6151ca602083018761418d565b81810360408301526151dc8186613fff565b905081810360608301526151f08185613fff565b90508181036080830152615204818461516f565b90509695505050505050565b60008151905061521f816137af565b92915050565b60006020828403121561523b5761523a61367b565b5b600061524984828501615210565b91505092915050565b60008160e01c9050919050565b600060033d111561527e5760046000803e61527b600051615252565b90505b90565b600060443d1061530e57615293613671565b60043d036004823e80513d602482011167ffffffffffffffff821117156152bb57505061530e565b808201805167ffffffffffffffff8111156152d9575050505061530e565b80602083010160043d0385018111156152f657505050505061530e565b61530582602001850186613888565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061536d6034836139d8565b915061537882615311565b604082019050919050565b6000602082019050818103600083015261539c81615360565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153ff6028836139d8565b915061540a826153a3565b604082019050919050565b6000602082019050818103600083015261542e816153f2565b9050919050565b6000615440826136e3565b915061544b836136e3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561548457615483614821565b5b828202905092915050565b600061549a826136e3565b9150600082036154ad576154ac614821565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006154ee6020836139d8565b91506154f9826154b8565b602082019050919050565b6000602082019050818103600083015261551d816154e1565b9050919050565b600060a082019050615539600083018861418d565b615546602083018761418d565b6155536040830186613759565b6155606060830185613759565b8181036080830152615572818461516f565b90509695505050505050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b60006155da602c836139d8565b91506155e58261557e565b604082019050919050565b60006020820190508181036000830152615609816155cd565b9050919050565b600061561b826136e3565b9150615626836136e3565b92508282101561563957615638614821565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212206ea1e03439c6aff45a1f087ea0a42edf04d207ce82762ae690a7fdb2c2e2e61064736f6c634300080d003368747470733a2f2f697365616d6f6e73746572732e73332e75732d776573742d322e616d617a6f6e6177732e636f6d2f6e66742f697365616d6f6e73746572732f636f6e74726163742e6a736f6e68747470733a2f2f6d657461646174612e697365616d6f6e73746572732e636f6d2f76312f746f6b656e2f7b69647d000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000c695365614d6f6e73746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000349534d0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102055760003560e01c80638da5cb5b1161011a578063cd7c0326116100ad578063e8a3d4851161007c578063e8a3d485146105b0578063e985e9c5146105ce578063f242432a146105fe578063f2fde38b1461061a578063f5298aca1461063657610205565b8063cd7c03261461053a578063d539139314610558578063d547741f14610576578063e63ab1e91461059257610205565b806395d89b41116100e957806395d89b41146104b2578063a217fddf146104d0578063a22cb465146104ee578063ca15c8731461050a57610205565b80638da5cb5b146104185780639010d07c1461043657806391d1485414610466578063938e3d7b1461049657610205565b80632f2ff15d1161019d5780635c975abb1161016c5780635c975abb146103ae5780636b20c454146103cc578063715018a6146103e8578063731133e9146103f25780638456cb591461040e57610205565b80632f2ff15d1461033c57806336568abe146103585780633f4ba83a146103745780634e1273f41461037e57610205565b80630e89341c116101d95780630e89341c146102a45780631f7fdffa146102d4578063248a9ca3146102f05780632eb2c2d61461032057610205565b8062fdd58e1461020a57806301ffc9a71461023a57806302fe53051461026a57806306fdde0314610286575b600080fd5b610224600480360381019061021f9190613719565b610652565b6040516102319190613768565b60405180910390f35b610254600480360381019061024f91906137db565b61071b565b6040516102619190613823565b60405180910390f35b610284600480360381019061027f9190613984565b61072d565b005b61028e6107b5565b60405161029b9190613a55565b60405180910390f35b6102be60048036038101906102b99190613a77565b610843565b6040516102cb9190613a55565b60405180910390f35b6102ee60048036038101906102e99190613c0d565b6108d7565b005b61030a60048036038101906103059190613cfe565b610959565b6040516103179190613d3a565b60405180910390f35b61033a60048036038101906103359190613d55565b610978565b005b61035660048036038101906103519190613e24565b610a19565b005b610372600480360381019061036d9190613e24565b610a42565b005b61037c610ac5565b005b61039860048036038101906103939190613f27565b610b3f565b6040516103a5919061405d565b60405180910390f35b6103b6610c58565b6040516103c39190613823565b60405180910390f35b6103e660048036038101906103e1919061407f565b610c6f565b005b6103f0610d0c565b005b61040c6004803603810190610407919061410a565b610d94565b005b610416610e16565b005b610420610e90565b60405161042d919061419c565b60405180910390f35b610450600480360381019061044b91906141b7565b610eba565b60405161045d919061419c565b60405180910390f35b610480600480360381019061047b9190613e24565b610ee9565b60405161048d9190613823565b60405180910390f35b6104b060048036038101906104ab9190613984565b610f53565b005b6104ba610fe9565b6040516104c79190613a55565b60405180910390f35b6104d8611077565b6040516104e59190613d3a565b60405180910390f35b61050860048036038101906105039190614223565b61107e565b005b610524600480360381019061051f9190613cfe565b611094565b6040516105319190613768565b60405180910390f35b6105426110b8565b60405161054f919061419c565b60405180910390f35b6105606110de565b60405161056d9190613d3a565b60405180910390f35b610590600480360381019061058b9190613e24565b611102565b005b61059a61112b565b6040516105a79190613d3a565b60405180910390f35b6105b861114f565b6040516105c59190613a55565b60405180910390f35b6105e860048036038101906105e39190614263565b6111e1565b6040516105f59190613823565b60405180910390f35b610618600480360381019061061391906142a3565b6112d3565b005b610634600480360381019061062f919061433a565b611374565b005b610650600480360381019061064b9190614367565b61146b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b99061442c565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061072682611618565b9050919050565b6107356116fa565b73ffffffffffffffffffffffffffffffffffffffff16610753610e90565b73ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090614498565b60405180910390fd5b6107b281611702565b50565b600780546107c2906144e7565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee906144e7565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b505050505081565b606060048054610852906144e7565b80601f016020809104026020016040519081016040528092919081815260200182805461087e906144e7565b80156108cb5780601f106108a0576101008083540402835291602001916108cb565b820191906000526020600020905b8154815290600101906020018083116108ae57829003601f168201915b50505050509050919050565b6109087f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109036116fa565b610ee9565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061458a565b60405180910390fd5b6109538484848461171c565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6109806116fa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c657506109c5856109c06116fa565b6111e1565b5b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc9061461c565b60405180910390fd5b610a12858585858561193a565b5050505050565b610a2282610959565b610a3381610a2e6116fa565b611c50565b610a3d8383611ced565b505050565b610a4a6116fa565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906146ae565b60405180910390fd5b610ac18282611d21565b5050565b610af67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610af16116fa565b610ee9565b610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90614740565b60405180910390fd5b610b3d611d55565b565b60608151835114610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906147d2565b60405180910390fd5b6000835167ffffffffffffffff811115610ba257610ba1613859565b5b604051908082528060200260200182016040528015610bd05781602001602082028036833780820191505090505b50905060005b8451811015610c4d57610c1d858281518110610bf557610bf46147f2565b5b6020026020010151858381518110610c1057610c0f6147f2565b5b6020026020010151610652565b828281518110610c3057610c2f6147f2565b5b60200260200101818152505080610c4690614850565b9050610bd6565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610c776116fa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cbd5750610cbc83610cb76116fa565b6111e1565b5b610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061490a565b60405180910390fd5b610d07838383611df7565b505050565b610d146116fa565b73ffffffffffffffffffffffffffffffffffffffff16610d32610e90565b73ffffffffffffffffffffffffffffffffffffffff1614610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614498565b60405180910390fd5b610d9260006120a9565b565b610dc57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610dc06116fa565b610ee9565b610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061458a565b60405180910390fd5b610e108484848461216f565b50505050565b610e477f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610e426116fa565b610ee9565b610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d9061499c565b60405180910390fd5b610e8e612305565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610ee182600160008681526020019081526020016000206123a890919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f5b6116fa565b73ffffffffffffffffffffffffffffffffffffffff16610f79610e90565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690614498565b60405180910390fd5b8060099080519060200190610fe59291906135ce565b5050565b60088054610ff6906144e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611022906144e7565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b505050505081565b6000801b81565b6110906110896116fa565b83836123c2565b5050565b60006110b16001600084815260200190815260200160002061252e565b9050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61110b82610959565b61111c816111176116fa565b611c50565b6111268383611d21565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60606009805461115e906144e7565b80601f016020809104026020016040519081016040528092919081815260200182805461118a906144e7565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b5050505050905090565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611259919061419c565b602060405180830381865afa158015611276573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129a91906149fa565b73ffffffffffffffffffffffffffffffffffffffff16036112bf5760019150506112cd565b6112c98484612543565b9150505b92915050565b6112db6116fa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061132157506113208561131b6116fa565b6111e1565b5b611360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113579061490a565b60405180910390fd5b61136d85858585856125d7565b5050505050565b61137c6116fa565b73ffffffffffffffffffffffffffffffffffffffff1661139a610e90565b73ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614498565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690614a99565b60405180910390fd5b611468816120a9565b50565b6114736116fa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114b957506114b8836114b36116fa565b6111e1565b5b6114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061490a565b60405180910390fd5b61150383838361285b565b505050565b6115128282610ee9565b6115e457600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115896116fa565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611610836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612a79565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116e357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116f357506116f282612ae9565b5b9050919050565b600033905090565b80600490805190602001906117189291906135ce565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290614b2b565b60405180910390fd5b81518351146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614bbd565b60405180910390fd5b60006117d96116fa565b90506117ea81600087878787612b63565b60005b84518110156118a457838181518110611809576118086147f2565b5b602002602001015160026000878481518110611828576118276147f2565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188a9190614bdd565b92505081905550808061189c90614850565b9150506117ed565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161191c929190614c33565b60405180910390a461193381600087878787612b79565b5050505050565b815183511461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614cdc565b60405180910390fd5b60006119f76116fa565b9050611a07818787878787612b63565b60005b8451811015611bbb576000858281518110611a2857611a276147f2565b5b602002602001015190506000858381518110611a4757611a466147f2565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090614d6e565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba09190614bdd565b9250508190555050505080611bb490614850565b9050611a0a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c32929190614c33565b60405180910390a4611c48818787878787612b79565b505050505050565b611c5a8282610ee9565b611ce957611c7f8173ffffffffffffffffffffffffffffffffffffffff166014612d50565b611c8d8360001c6020612d50565b604051602001611c9e929190614e62565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09190613a55565b60405180910390fd5b5050565b611cf78282611508565b611d1c81600160008581526020019081526020016000206115e890919063ffffffff16565b505050565b611d2b8282612f8c565b611d50816001600085815260200190815260200160002061306d90919063ffffffff16565b505050565b611d5d610c58565b611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390614ee8565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611de06116fa565b604051611ded919061419c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90614f7a565b60405180910390fd5b8051825114611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614bbd565b60405180910390fd5b6000611eb46116fa565b9050611ed481856000868660405180602001604052806000815250612b63565b60005b8351811015612023576000848281518110611ef557611ef46147f2565b5b602002602001015190506000848381518110611f1457611f136147f2565b5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad9061500c565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061201b90614850565b915050611ed7565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161209b929190614c33565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590614b2b565b60405180910390fd5b60006121e86116fa565b9050612209816000876121fa8861309d565b6122038861309d565b87612b63565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122699190614bdd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516122e792919061502c565b60405180910390a46122fe81600087878787613117565b5050505050565b61230d610c58565b1561234d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612344906150a1565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123916116fa565b60405161239e919061419c565b60405180910390a1565b60006123b783600001836132ee565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790615133565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125219190613823565b60405180910390a3505050565b600061253c82600001613319565b9050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90614cdc565b60405180910390fd5b60006126506116fa565b90506126708187876126618861309d565b61266a8861309d565b87612b63565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90614d6e565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127bf9190614bdd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161283c92919061502c565b60405180910390a4612852828888888888613117565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c190614f7a565b60405180910390fd5b60006128d46116fa565b9050612904818560006128e68761309d565b6128ef8761309d565b60405180602001604052806000815250612b63565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561299c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129939061500c565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612a6a92919061502c565b60405180910390a45050505050565b6000612a85838361332a565b612ade578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612ae3565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5c5750612b5b8261334d565b5b9050919050565b612b718686868686866133c7565b505050505050565b612b988473ffffffffffffffffffffffffffffffffffffffff16613425565b15612d48578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612bde9594939291906151a8565b6020604051808303816000875af1925050508015612c1a57506040513d601f19601f82011682018060405250810190612c179190615225565b60015b612cbf57612c2661525f565b806308c379a003612c825750612c3a615281565b80612c455750612c84565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c799190613a55565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb690615383565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90615415565b60405180910390fd5b505b505050505050565b606060006002836002612d639190615435565b612d6d9190614bdd565b67ffffffffffffffff811115612d8657612d85613859565b5b6040519080825280601f01601f191660200182016040528015612db85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612df057612def6147f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612e5457612e536147f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612e949190615435565b612e9e9190614bdd565b90505b6001811115612f3e577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612ee057612edf6147f2565b5b1a60f81b828281518110612ef757612ef66147f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612f379061548f565b9050612ea1565b5060008414612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7990615504565b60405180910390fd5b8091505092915050565b612f968282610ee9565b1561306957600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061300e6116fa565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613095836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613448565b905092915050565b60606000600167ffffffffffffffff8111156130bc576130bb613859565b5b6040519080825280602002602001820160405280156130ea5781602001602082028036833780820191505090505b5090508281600081518110613102576131016147f2565b5b60200260200101818152505080915050919050565b6131368473ffffffffffffffffffffffffffffffffffffffff16613425565b156132e6578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161317c959493929190615524565b6020604051808303816000875af19250505080156131b857506040513d601f19601f820116820180604052508101906131b59190615225565b60015b61325d576131c461525f565b806308c379a00361322057506131d8615281565b806131e35750613222565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132179190613a55565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325490615383565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132db90615415565b60405180910390fd5b505b505050505050565b6000826000018281548110613306576133056147f2565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806133c057506133bf8261355c565b5b9050919050565b6133d58686868686866135c6565b6133dd610c58565b1561341d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613414906155f0565b60405180910390fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000808360010160008481526020019081526020016000205490506000811461355057600060018261347a9190615610565b90506000600186600001805490506134929190615610565b90508181146135015760008660000182815481106134b3576134b26147f2565b5b90600052602060002001549050808760000184815481106134d7576134d66147f2565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061351557613514615644565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613556565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b8280546135da906144e7565b90600052602060002090601f0160209004810192826135fc5760008555613643565b82601f1061361557805160ff1916838001178555613643565b82800160010185558215613643579182015b82811115613642578251825591602001919060010190613627565b5b5090506136509190613654565b5090565b5b8082111561366d576000816000905550600101613655565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136b082613685565b9050919050565b6136c0816136a5565b81146136cb57600080fd5b50565b6000813590506136dd816136b7565b92915050565b6000819050919050565b6136f6816136e3565b811461370157600080fd5b50565b600081359050613713816136ed565b92915050565b600080604083850312156137305761372f61367b565b5b600061373e858286016136ce565b925050602061374f85828601613704565b9150509250929050565b613762816136e3565b82525050565b600060208201905061377d6000830184613759565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137b881613783565b81146137c357600080fd5b50565b6000813590506137d5816137af565b92915050565b6000602082840312156137f1576137f061367b565b5b60006137ff848285016137c6565b91505092915050565b60008115159050919050565b61381d81613808565b82525050565b60006020820190506138386000830184613814565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61389182613848565b810181811067ffffffffffffffff821117156138b0576138af613859565b5b80604052505050565b60006138c3613671565b90506138cf8282613888565b919050565b600067ffffffffffffffff8211156138ef576138ee613859565b5b6138f882613848565b9050602081019050919050565b82818337600083830152505050565b6000613927613922846138d4565b6138b9565b90508281526020810184848401111561394357613942613843565b5b61394e848285613905565b509392505050565b600082601f83011261396b5761396a61383e565b5b813561397b848260208601613914565b91505092915050565b60006020828403121561399a5761399961367b565b5b600082013567ffffffffffffffff8111156139b8576139b7613680565b5b6139c484828501613956565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a075780820151818401526020810190506139ec565b83811115613a16576000848401525b50505050565b6000613a27826139cd565b613a3181856139d8565b9350613a418185602086016139e9565b613a4a81613848565b840191505092915050565b60006020820190508181036000830152613a6f8184613a1c565b905092915050565b600060208284031215613a8d57613a8c61367b565b5b6000613a9b84828501613704565b91505092915050565b600067ffffffffffffffff821115613abf57613abe613859565b5b602082029050602081019050919050565b600080fd5b6000613ae8613ae384613aa4565b6138b9565b90508083825260208201905060208402830185811115613b0b57613b0a613ad0565b5b835b81811015613b345780613b208882613704565b845260208401935050602081019050613b0d565b5050509392505050565b600082601f830112613b5357613b5261383e565b5b8135613b63848260208601613ad5565b91505092915050565b600067ffffffffffffffff821115613b8757613b86613859565b5b613b9082613848565b9050602081019050919050565b6000613bb0613bab84613b6c565b6138b9565b905082815260208101848484011115613bcc57613bcb613843565b5b613bd7848285613905565b509392505050565b600082601f830112613bf457613bf361383e565b5b8135613c04848260208601613b9d565b91505092915050565b60008060008060808587031215613c2757613c2661367b565b5b6000613c35878288016136ce565b945050602085013567ffffffffffffffff811115613c5657613c55613680565b5b613c6287828801613b3e565b935050604085013567ffffffffffffffff811115613c8357613c82613680565b5b613c8f87828801613b3e565b925050606085013567ffffffffffffffff811115613cb057613caf613680565b5b613cbc87828801613bdf565b91505092959194509250565b6000819050919050565b613cdb81613cc8565b8114613ce657600080fd5b50565b600081359050613cf881613cd2565b92915050565b600060208284031215613d1457613d1361367b565b5b6000613d2284828501613ce9565b91505092915050565b613d3481613cc8565b82525050565b6000602082019050613d4f6000830184613d2b565b92915050565b600080600080600060a08688031215613d7157613d7061367b565b5b6000613d7f888289016136ce565b9550506020613d90888289016136ce565b945050604086013567ffffffffffffffff811115613db157613db0613680565b5b613dbd88828901613b3e565b935050606086013567ffffffffffffffff811115613dde57613ddd613680565b5b613dea88828901613b3e565b925050608086013567ffffffffffffffff811115613e0b57613e0a613680565b5b613e1788828901613bdf565b9150509295509295909350565b60008060408385031215613e3b57613e3a61367b565b5b6000613e4985828601613ce9565b9250506020613e5a858286016136ce565b9150509250929050565b600067ffffffffffffffff821115613e7f57613e7e613859565b5b602082029050602081019050919050565b6000613ea3613e9e84613e64565b6138b9565b90508083825260208201905060208402830185811115613ec657613ec5613ad0565b5b835b81811015613eef5780613edb88826136ce565b845260208401935050602081019050613ec8565b5050509392505050565b600082601f830112613f0e57613f0d61383e565b5b8135613f1e848260208601613e90565b91505092915050565b60008060408385031215613f3e57613f3d61367b565b5b600083013567ffffffffffffffff811115613f5c57613f5b613680565b5b613f6885828601613ef9565b925050602083013567ffffffffffffffff811115613f8957613f88613680565b5b613f9585828601613b3e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fd4816136e3565b82525050565b6000613fe68383613fcb565b60208301905092915050565b6000602082019050919050565b600061400a82613f9f565b6140148185613faa565b935061401f83613fbb565b8060005b838110156140505781516140378882613fda565b975061404283613ff2565b925050600181019050614023565b5085935050505092915050565b600060208201905081810360008301526140778184613fff565b905092915050565b6000806000606084860312156140985761409761367b565b5b60006140a6868287016136ce565b935050602084013567ffffffffffffffff8111156140c7576140c6613680565b5b6140d386828701613b3e565b925050604084013567ffffffffffffffff8111156140f4576140f3613680565b5b61410086828701613b3e565b9150509250925092565b600080600080608085870312156141245761412361367b565b5b6000614132878288016136ce565b945050602061414387828801613704565b935050604061415487828801613704565b925050606085013567ffffffffffffffff81111561417557614174613680565b5b61418187828801613bdf565b91505092959194509250565b614196816136a5565b82525050565b60006020820190506141b1600083018461418d565b92915050565b600080604083850312156141ce576141cd61367b565b5b60006141dc85828601613ce9565b92505060206141ed85828601613704565b9150509250929050565b61420081613808565b811461420b57600080fd5b50565b60008135905061421d816141f7565b92915050565b6000806040838503121561423a5761423961367b565b5b6000614248858286016136ce565b92505060206142598582860161420e565b9150509250929050565b6000806040838503121561427a5761427961367b565b5b6000614288858286016136ce565b9250506020614299858286016136ce565b9150509250929050565b600080600080600060a086880312156142bf576142be61367b565b5b60006142cd888289016136ce565b95505060206142de888289016136ce565b94505060406142ef88828901613704565b935050606061430088828901613704565b925050608086013567ffffffffffffffff81111561432157614320613680565b5b61432d88828901613bdf565b9150509295509295909350565b6000602082840312156143505761434f61367b565b5b600061435e848285016136ce565b91505092915050565b6000806000606084860312156143805761437f61367b565b5b600061438e868287016136ce565b935050602061439f86828701613704565b92505060406143b086828701613704565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614416602b836139d8565b9150614421826143ba565b604082019050919050565b6000602082019050818103600083015261444581614409565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144826020836139d8565b915061448d8261444c565b602082019050919050565b600060208201905081810360008301526144b181614475565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144ff57607f821691505b602082108103614512576145116144b8565b5b50919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b60006145746038836139d8565b915061457f82614518565b604082019050919050565b600060208201905081810360008301526145a381614567565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146066032836139d8565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614698602f836139d8565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b600061472a603b836139d8565b9150614735826146ce565b604082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006147bc6029836139d8565b91506147c782614760565b604082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061485b826136e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361488d5761488c614821565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006148f46029836139d8565b91506148ff82614898565b604082019050919050565b60006020820190508181036000830152614923816148e7565b9050919050565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b60006149866039836139d8565b91506149918261492a565b604082019050919050565b600060208201905081810360008301526149b581614979565b9050919050565b60006149c7826136a5565b9050919050565b6149d7816149bc565b81146149e257600080fd5b50565b6000815190506149f4816149ce565b92915050565b600060208284031215614a1057614a0f61367b565b5b6000614a1e848285016149e5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a836026836139d8565b9150614a8e82614a27565b604082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b156021836139d8565b9150614b2082614ab9565b604082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614ba76028836139d8565b9150614bb282614b4b565b604082019050919050565b60006020820190508181036000830152614bd681614b9a565b9050919050565b6000614be8826136e3565b9150614bf3836136e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2857614c27614821565b5b828201905092915050565b60006040820190508181036000830152614c4d8185613fff565b90508181036020830152614c618184613fff565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cc66025836139d8565b9150614cd182614c6a565b604082019050919050565b60006020820190508181036000830152614cf581614cb9565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614d58602a836139d8565b9150614d6382614cfc565b604082019050919050565b60006020820190508181036000830152614d8781614d4b565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000614dcf601783614d8e565b9150614dda82614d99565b601782019050919050565b6000614df0826139cd565b614dfa8185614d8e565b9350614e0a8185602086016139e9565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614e4c601183614d8e565b9150614e5782614e16565b601182019050919050565b6000614e6d82614dc2565b9150614e798285614de5565b9150614e8482614e3f565b9150614e908284614de5565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614ed26014836139d8565b9150614edd82614e9c565b602082019050919050565b60006020820190508181036000830152614f0181614ec5565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f646023836139d8565b9150614f6f82614f08565b604082019050919050565b60006020820190508181036000830152614f9381614f57565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614ff66024836139d8565b915061500182614f9a565b604082019050919050565b6000602082019050818103600083015261502581614fe9565b9050919050565b60006040820190506150416000830185613759565b61504e6020830184613759565b9392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061508b6010836139d8565b915061509682615055565b602082019050919050565b600060208201905081810360008301526150ba8161507e565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061511d6029836139d8565b9150615128826150c1565b604082019050919050565b6000602082019050818103600083015261514c81615110565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061517a82615153565b615184818561515e565b93506151948185602086016139e9565b61519d81613848565b840191505092915050565b600060a0820190506151bd600083018861418d565b6151ca602083018761418d565b81810360408301526151dc8186613fff565b905081810360608301526151f08185613fff565b90508181036080830152615204818461516f565b90509695505050505050565b60008151905061521f816137af565b92915050565b60006020828403121561523b5761523a61367b565b5b600061524984828501615210565b91505092915050565b60008160e01c9050919050565b600060033d111561527e5760046000803e61527b600051615252565b90505b90565b600060443d1061530e57615293613671565b60043d036004823e80513d602482011167ffffffffffffffff821117156152bb57505061530e565b808201805167ffffffffffffffff8111156152d9575050505061530e565b80602083010160043d0385018111156152f657505050505061530e565b61530582602001850186613888565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061536d6034836139d8565b915061537882615311565b604082019050919050565b6000602082019050818103600083015261539c81615360565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153ff6028836139d8565b915061540a826153a3565b604082019050919050565b6000602082019050818103600083015261542e816153f2565b9050919050565b6000615440826136e3565b915061544b836136e3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561548457615483614821565b5b828202905092915050565b600061549a826136e3565b9150600082036154ad576154ac614821565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006154ee6020836139d8565b91506154f9826154b8565b602082019050919050565b6000602082019050818103600083015261551d816154e1565b9050919050565b600060a082019050615539600083018861418d565b615546602083018761418d565b6155536040830186613759565b6155606060830185613759565b8181036080830152615572818461516f565b90509695505050505050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b60006155da602c836139d8565b91506155e58261557e565b604082019050919050565b60006020820190508181036000830152615609816155cd565b9050919050565b600061561b826136e3565b9150615626836136e3565b92508282101561563957615638614821565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212206ea1e03439c6aff45a1f087ea0a42edf04d207ce82762ae690a7fdb2c2e2e61064736f6c634300080d0033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000c695365614d6f6e73746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000349534d0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _name (string): iSeaMonsters
Arg [2] : _symbol (string): ISM

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 695365614d6f6e73746572730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 49534d0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

74670:1578:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52341:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71390:237;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75936:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74801:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52085:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70203:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42013:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54280:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42406:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43454:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71138:180;;;:::i;:::-;;52738:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49101:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67721:353;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73694:103;;;:::i;:::-;;69803:293;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70744:174;;;:::i;:::-;;73043:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46963:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40882:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76035:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74850:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39973:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53335:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47290:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74737:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69093:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42798:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69162:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76148:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75464:464;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53802:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73952:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67392:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52341:231;52427:7;52474:1;52455:21;;:7;:21;;;52447:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52542:9;:13;52552:2;52542:13;;;;;;;;;;;:22;52556:7;52542:22;;;;;;;;;;;;;;;;52535:29;;52341:231;;;;:::o;71390:237::-;71554:4;71583:36;71607:11;71583:23;:36::i;:::-;71576:43;;71390:237;;;:::o;75936:91::-;73274:12;:10;:12::i;:::-;73263:23;;:7;:5;:7::i;:::-;:23;;;73255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76003:16:::1;76011:7;76003;:16::i;:::-;75936:91:::0;:::o;74801:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52085:105::-;52145:13;52178:4;52171:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52085:105;;;:::o;70203:325::-;70378:34;69131:24;70399:12;:10;:12::i;:::-;70378:7;:34::i;:::-;70370:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;70486:34;70497:2;70501:3;70506:7;70515:4;70486:10;:34::i;:::-;70203:325;;;;:::o;42013:131::-;42087:7;42114:6;:12;42121:4;42114:12;;;;;;;;;;;:22;;;42107:29;;42013:131;;;:::o;54280:442::-;54521:12;:10;:12::i;:::-;54513:20;;:4;:20;;;:60;;;;54537:36;54554:4;54560:12;:10;:12::i;:::-;54537:16;:36::i;:::-;54513:60;54491:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;54662:52;54685:4;54691:2;54695:3;54700:7;54709:4;54662:22;:52::i;:::-;54280:442;;;;;:::o;42406:147::-;42489:18;42502:4;42489:12;:18::i;:::-;40464:30;40475:4;40481:12;:10;:12::i;:::-;40464:10;:30::i;:::-;42520:25:::1;42531:4;42537:7;42520:10;:25::i;:::-;42406:147:::0;;;:::o;43454:218::-;43561:12;:10;:12::i;:::-;43550:23;;:7;:23;;;43542:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;43638:26;43650:4;43656:7;43638:11;:26::i;:::-;43454:218;;:::o;71138:180::-;71191:34;69200:24;71212:12;:10;:12::i;:::-;71191:7;:34::i;:::-;71183:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;71300:10;:8;:10::i;:::-;71138:180::o;52738:524::-;52894:16;52955:3;:10;52936:8;:15;:29;52928:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;53024:30;53071:8;:15;53057:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53024:63;;53105:9;53100:122;53124:8;:15;53120:1;:19;53100:122;;;53180:30;53190:8;53199:1;53190:11;;;;;;;;:::i;:::-;;;;;;;;53203:3;53207:1;53203:6;;;;;;;;:::i;:::-;;;;;;;;53180:9;:30::i;:::-;53161:13;53175:1;53161:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;53141:3;;;;:::i;:::-;;;53100:122;;;;53241:13;53234:20;;;52738:524;;;;:::o;49101:86::-;49148:4;49172:7;;;;;;;;;;;49165:14;;49101:86;:::o;67721:353::-;67897:12;:10;:12::i;:::-;67886:23;;:7;:23;;;:66;;;;67913:39;67930:7;67939:12;:10;:12::i;:::-;67913:16;:39::i;:::-;67886:66;67864:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;68034:32;68045:7;68054:3;68059:6;68034:10;:32::i;:::-;67721:353;;;:::o;73694:103::-;73274:12;:10;:12::i;:::-;73263:23;;:7;:5;:7::i;:::-;:23;;;73255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73759:30:::1;73786:1;73759:18;:30::i;:::-;73694:103::o:0;69803:293::-;69953:34;69131:24;69974:12;:10;:12::i;:::-;69953:7;:34::i;:::-;69945:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;70061:27;70067:2;70071;70075:6;70083:4;70061:5;:27::i;:::-;69803:293;;;;:::o;70744:174::-;70795:34;69200:24;70816:12;:10;:12::i;:::-;70795:7;:34::i;:::-;70787:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;70902:8;:6;:8::i;:::-;70744:174::o;73043:87::-;73089:7;73116:6;;;;;;;;;;;73109:13;;73043:87;:::o;46963:153::-;47053:7;47080:28;47102:5;47080:12;:18;47093:4;47080:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;47073:35;;46963:153;;;;:::o;40882:147::-;40968:4;40992:6;:12;40999:4;40992:12;;;;;;;;;;;:20;;:29;41013:7;40992:29;;;;;;;;;;;;;;;;;;;;;;;;;40985:36;;40882:147;;;;:::o;76035:105::-;73274:12;:10;:12::i;:::-;73263:23;;:7;:5;:7::i;:::-;:23;;;73255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76125:7:::1;76110:12;:22;;;;;;;;;;;;:::i;:::-;;76035:105:::0;:::o;74850:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39973:49::-;40018:4;39973:49;;;:::o;53335:155::-;53430:52;53449:12;:10;:12::i;:::-;53463:8;53473;53430:18;:52::i;:::-;53335:155;;:::o;47290:142::-;47370:7;47397:27;:12;:18;47410:4;47397:18;;;;;;;;;;;:25;:27::i;:::-;47390:34;;47290:142;;;:::o;74737:35::-;;;;;;;;;;;;;:::o;69093:62::-;69131:24;69093:62;:::o;42798:149::-;42882:18;42895:4;42882:12;:18::i;:::-;40464:30;40475:4;40481:12;:10;:12::i;:::-;40464:10;:30::i;:::-;42913:26:::1;42925:4;42931:7;42913:11;:26::i;:::-;42798:149:::0;;;:::o;69162:62::-;69200:24;69162:62;:::o;76148:97::-;76192:13;76225:12;76218:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76148:97;:::o;75464:464::-;75591:15;75687:27;75731:20;;;;;;;;;;;75687:65;;75809:9;75767:51;;75775:13;:21;;;75797:6;75775:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;75767:51;;;75763:95;;75842:4;75835:11;;;;;75763:95;75877:43;75902:6;75910:9;75877:24;:43::i;:::-;75870:50;;;75464:464;;;;;:::o;53802:401::-;54018:12;:10;:12::i;:::-;54010:20;;:4;:20;;;:60;;;;54034:36;54051:4;54057:12;:10;:12::i;:::-;54034:16;:36::i;:::-;54010:60;53988:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;54150:45;54168:4;54174:2;54178;54182:6;54190:4;54150:17;:45::i;:::-;53802:401;;;;;:::o;73952:201::-;73274:12;:10;:12::i;:::-;73263:23;;:7;:5;:7::i;:::-;:23;;;73255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74061:1:::1;74041:22;;:8;:22;;::::0;74033:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;74117:28;74136:8;74117:18;:28::i;:::-;73952:201:::0;:::o;67392:321::-;67543:12;:10;:12::i;:::-;67532:23;;:7;:23;;;:66;;;;67559:39;67576:7;67585:12;:10;:12::i;:::-;67559:16;:39::i;:::-;67532:66;67510:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;67680:25;67686:7;67695:2;67699:5;67680;:25::i;:::-;67392:321;;;:::o;44955:238::-;45039:22;45047:4;45053:7;45039;:22::i;:::-;45034:152;;45110:4;45078:6;:12;45085:4;45078:12;;;;;;;;;;;:20;;:29;45099:7;45078:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;45161:12;:10;:12::i;:::-;45134:40;;45152:7;45134:40;;45146:4;45134:40;;;;;;;;;;45034:152;44955:238;;:::o;8062:152::-;8132:4;8156:50;8161:3;:10;;8197:5;8181:23;;8173:32;;8156:4;:50::i;:::-;8149:57;;8062:152;;;;:::o;51364:310::-;51466:4;51518:26;51503:41;;;:11;:41;;;;:110;;;;51576:37;51561:52;;;:11;:52;;;;51503:110;:163;;;;51630:36;51654:11;51630:23;:36::i;:::-;51503:163;51483:183;;51364:310;;;:::o;37781:98::-;37834:7;37861:10;37854:17;;37781:98;:::o;58282:88::-;58356:6;58349:4;:13;;;;;;;;;;;;:::i;:::-;;58282:88;:::o;59681:735::-;59873:1;59859:16;;:2;:16;;;59851:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59946:7;:14;59932:3;:10;:28;59924:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60018:16;60037:12;:10;:12::i;:::-;60018:31;;60062:66;60083:8;60101:1;60105:2;60109:3;60114:7;60123:4;60062:20;:66::i;:::-;60146:9;60141:103;60165:3;:10;60161:1;:14;60141:103;;;60222:7;60230:1;60222:10;;;;;;;;:::i;:::-;;;;;;;;60197:9;:17;60207:3;60211:1;60207:6;;;;;;;;:::i;:::-;;;;;;;;60197:17;;;;;;;;;;;:21;60215:2;60197:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;60177:3;;;;;:::i;:::-;;;;60141:103;;;;60297:2;60261:53;;60293:1;60261:53;;60275:8;60261:53;;;60301:3;60306:7;60261:53;;;;;;;:::i;:::-;;;;;;;;60327:81;60363:8;60381:1;60385:2;60389:3;60394:7;60403:4;60327:35;:81::i;:::-;59840:576;59681:735;;;;:::o;56364:1074::-;56591:7;:14;56577:3;:10;:28;56569:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56683:1;56669:16;;:2;:16;;;56661:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56740:16;56759:12;:10;:12::i;:::-;56740:31;;56784:60;56805:8;56815:4;56821:2;56825:3;56830:7;56839:4;56784:20;:60::i;:::-;56862:9;56857:421;56881:3;:10;56877:1;:14;56857:421;;;56913:10;56926:3;56930:1;56926:6;;;;;;;;:::i;:::-;;;;;;;;56913:19;;56947:14;56964:7;56972:1;56964:10;;;;;;;;:::i;:::-;;;;;;;;56947:27;;56991:19;57013:9;:13;57023:2;57013:13;;;;;;;;;;;:19;57027:4;57013:19;;;;;;;;;;;;;;;;56991:41;;57070:6;57055:11;:21;;57047:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57203:6;57189:11;:20;57167:9;:13;57177:2;57167:13;;;;;;;;;;;:19;57181:4;57167:19;;;;;;;;;;;;;;;:42;;;;57260:6;57239:9;:13;57249:2;57239:13;;;;;;;;;;;:17;57253:2;57239:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;56898:380;;;56893:3;;;;:::i;:::-;;;56857:421;;;;57325:2;57295:47;;57319:4;57295:47;;57309:8;57295:47;;;57329:3;57334:7;57295:47;;;;;;;:::i;:::-;;;;;;;;57355:75;57391:8;57401:4;57407:2;57411:3;57416:7;57425:4;57355:35;:75::i;:::-;56558:880;56364:1074;;;;;:::o;41319:505::-;41408:22;41416:4;41422:7;41408;:22::i;:::-;41403:414;;41596:41;41624:7;41596:41;;41634:2;41596:19;:41::i;:::-;41710:38;41738:4;41730:13;;41745:2;41710:19;:38::i;:::-;41501:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41447:358;;;;;;;;;;;:::i;:::-;;;;;;;;41403:414;41319:505;;:::o;47525:169::-;47613:31;47630:4;47636:7;47613:16;:31::i;:::-;47655;47678:7;47655:12;:18;47668:4;47655:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;47525:169;;:::o;47788:174::-;47877:32;47895:4;47901:7;47877:17;:32::i;:::-;47920:34;47946:7;47920:12;:18;47933:4;47920:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;47788:174;;:::o;50160:120::-;49704:8;:6;:8::i;:::-;49696:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;50229:5:::1;50219:7;;:15;;;;;;;;;;;;;;;;;;50250:22;50259:12;:10;:12::i;:::-;50250:22;;;;;;:::i;:::-;;;;;;;;50160:120::o:0;61517:891::-;61685:1;61669:18;;:4;:18;;;61661:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61760:7;:14;61746:3;:10;:28;61738:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;61832:16;61851:12;:10;:12::i;:::-;61832:31;;61876:66;61897:8;61907:4;61921:1;61925:3;61930:7;61876:66;;;;;;;;;;;;:20;:66::i;:::-;61960:9;61955:373;61979:3;:10;61975:1;:14;61955:373;;;62011:10;62024:3;62028:1;62024:6;;;;;;;;:::i;:::-;;;;;;;;62011:19;;62045:14;62062:7;62070:1;62062:10;;;;;;;;:::i;:::-;;;;;;;;62045:27;;62089:19;62111:9;:13;62121:2;62111:13;;;;;;;;;;;:19;62125:4;62111:19;;;;;;;;;;;;;;;;62089:41;;62168:6;62153:11;:21;;62145:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;62295:6;62281:11;:20;62259:9;:13;62269:2;62259:13;;;;;;;;;;;:19;62273:4;62259:19;;;;;;;;;;;;;;;:42;;;;61996:332;;;61991:3;;;;;:::i;:::-;;;;61955:373;;;;62383:1;62345:55;;62369:4;62345:55;;62359:8;62345:55;;;62387:3;62392:7;62345:55;;;;;;;:::i;:::-;;;;;;;;61650:758;61517:891;;;:::o;74313:191::-;74387:16;74406:6;;;;;;;;;;;74387:25;;74432:8;74423:6;;:17;;;;;;;;;;;;;;;;;;74487:8;74456:40;;74477:8;74456:40;;;;;;;;;;;;74376:128;74313:191;:::o;58756:569::-;58923:1;58909:16;;:2;:16;;;58901:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58976:16;58995:12;:10;:12::i;:::-;58976:31;;59020:102;59041:8;59059:1;59063:2;59067:21;59085:2;59067:17;:21::i;:::-;59090:25;59108:6;59090:17;:25::i;:::-;59117:4;59020:20;:102::i;:::-;59156:6;59135:9;:13;59145:2;59135:13;;;;;;;;;;;:17;59149:2;59135:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;59215:2;59178:52;;59211:1;59178:52;;59193:8;59178:52;;;59219:2;59223:6;59178:52;;;;;;;:::i;:::-;;;;;;;;59243:74;59274:8;59292:1;59296:2;59300;59304:6;59312:4;59243:30;:74::i;:::-;58890:435;58756:569;;;;:::o;49901:118::-;49427:8;:6;:8::i;:::-;49426:9;49418:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;49971:4:::1;49961:7;;:14;;;;;;;;;;;;;;;;;;49991:20;49998:12;:10;:12::i;:::-;49991:20;;;;;;:::i;:::-;;;;;;;;49901:118::o:0;9358:158::-;9432:7;9483:22;9487:3;:10;;9499:5;9483:3;:22::i;:::-;9475:31;;9452:56;;9358:158;;;;:::o;62550:331::-;62705:8;62696:17;;:5;:17;;;62688:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;62808:8;62770:18;:25;62789:5;62770:25;;;;;;;;;;;;;;;:35;62796:8;62770:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;62854:8;62832:41;;62847:5;62832:41;;;62864:8;62832:41;;;;;;:::i;:::-;;;;;;;;62550:331;;;:::o;8887:117::-;8950:7;8977:19;8985:3;:10;;8977:7;:19::i;:::-;8970:26;;8887:117;;;:::o;53562:168::-;53661:4;53685:18;:27;53704:7;53685:27;;;;;;;;;;;;;;;:37;53713:8;53685:37;;;;;;;;;;;;;;;;;;;;;;;;;53678:44;;53562:168;;;;:::o;55186:820::-;55388:1;55374:16;;:2;:16;;;55366:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55445:16;55464:12;:10;:12::i;:::-;55445:31;;55489:96;55510:8;55520:4;55526:2;55530:21;55548:2;55530:17;:21::i;:::-;55553:25;55571:6;55553:17;:25::i;:::-;55580:4;55489:20;:96::i;:::-;55598:19;55620:9;:13;55630:2;55620:13;;;;;;;;;;;:19;55634:4;55620:19;;;;;;;;;;;;;;;;55598:41;;55673:6;55658:11;:21;;55650:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;55798:6;55784:11;:20;55762:9;:13;55772:2;55762:13;;;;;;;;;;;:19;55776:4;55762:19;;;;;;;;;;;;;;;:42;;;;55847:6;55826:9;:13;55836:2;55826:13;;;;;;;;;;;:17;55840:2;55826:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;55902:2;55871:46;;55896:4;55871:46;;55886:8;55871:46;;;55906:2;55910:6;55871:46;;;;;;;:::i;:::-;;;;;;;;55930:68;55961:8;55971:4;55977:2;55981;55985:6;55993:4;55930:30;:68::i;:::-;55355:651;;55186:820;;;;;:::o;60666:648::-;60809:1;60793:18;;:4;:18;;;60785:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60864:16;60883:12;:10;:12::i;:::-;60864:31;;60908:102;60929:8;60939:4;60953:1;60957:21;60975:2;60957:17;:21::i;:::-;60980:25;60998:6;60980:17;:25::i;:::-;60908:102;;;;;;;;;;;;:20;:102::i;:::-;61023:19;61045:9;:13;61055:2;61045:13;;;;;;;;;;;:19;61059:4;61045:19;;;;;;;;;;;;;;;;61023:41;;61098:6;61083:11;:21;;61075:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;61217:6;61203:11;:20;61181:9;:13;61191:2;61181:13;;;;;;;;;;;:19;61195:4;61181:19;;;;;;;;;;;;;;;:42;;;;61291:1;61252:54;;61277:4;61252:54;;61267:8;61252:54;;;61295:2;61299:6;61252:54;;;;;;;:::i;:::-;;;;;;;;60774:540;;60666:648;;;:::o;1977:414::-;2040:4;2062:21;2072:3;2077:5;2062:9;:21::i;:::-;2057:327;;2100:3;:11;;2117:5;2100:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:3;:11;;:18;;;;2261:3;:12;;:19;2274:5;2261:19;;;;;;;;;;;:40;;;;2323:4;2316:11;;;;2057:327;2367:5;2360:12;;1977:414;;;;;:::o;46150:214::-;46235:4;46274:42;46259:57;;;:11;:57;;;;:97;;;;46320:36;46344:11;46320:23;:36::i;:::-;46259:97;46252:104;;46150:214;;;:::o;71635:339::-;71900:66;71927:8;71937:4;71943:2;71947:3;71952:7;71961:4;71900:26;:66::i;:::-;71635:339;;;;;;:::o;64818:813::-;65058:15;:2;:13;;;:15::i;:::-;65054:570;;;65111:2;65094:43;;;65138:8;65148:4;65154:3;65159:7;65168:4;65094:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;65090:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;65486:6;65479:14;;;;;;;;;;;:::i;:::-;;;;;;;;65090:523;;;65535:62;;;;;;;;;;:::i;:::-;;;;;;;;65090:523;65267:48;;;65255:60;;;:8;:60;;;;65251:159;;65340:50;;;;;;;;;;:::i;:::-;;;;;;;;65251:159;65174:251;65054:570;64818:813;;;;;;:::o;14433:451::-;14508:13;14534:19;14579:1;14570:6;14566:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;14556:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14534:47;;14592:15;:6;14599:1;14592:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;14618;:6;14625:1;14618:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;14649:9;14674:1;14665:6;14661:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;14649:26;;14644:135;14681:1;14677;:5;14644:135;;;14716:12;14737:3;14729:5;:11;14716:25;;;;;;;:::i;:::-;;;;;14704:6;14711:1;14704:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;14766:1;14756:11;;;;;14684:3;;;;:::i;:::-;;;14644:135;;;;14806:1;14797:5;:10;14789:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;14869:6;14855:21;;;14433:451;;;;:::o;45325:239::-;45409:22;45417:4;45423:7;45409;:22::i;:::-;45405:152;;;45480:5;45448:6;:12;45455:4;45448:12;;;;;;;;;;;:20;;:29;45469:7;45448:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;45532:12;:10;:12::i;:::-;45505:40;;45523:7;45505:40;;45517:4;45505:40;;;;;;;;;;45405:152;45325:239;;:::o;8390:158::-;8463:4;8487:53;8495:3;:10;;8531:5;8515:23;;8507:32;;8487:7;:53::i;:::-;8480:60;;8390:158;;;;:::o;65639:198::-;65705:16;65734:22;65773:1;65759:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65734:41;;65797:7;65786:5;65792:1;65786:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;65824:5;65817:12;;;65639:198;;;:::o;64066:744::-;64281:15;:2;:13;;;:15::i;:::-;64277:526;;;64334:2;64317:38;;;64356:8;64366:4;64372:2;64376:6;64384:4;64317:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64313:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;64665:6;64658:14;;;;;;;;;;;:::i;:::-;;;;;;;;64313:479;;;64714:62;;;;;;;;;;:::i;:::-;;;;;;;;64313:479;64451:43;;;64439:55;;;:8;:55;;;;64435:154;;64519:50;;;;;;;;;;:::i;:::-;;;;;;;;64435:154;64390:214;64277:526;64066:744;;;;;;:::o;4751:120::-;4818:7;4845:3;:11;;4857:5;4845:18;;;;;;;;:::i;:::-;;;;;;;;;;4838:25;;4751:120;;;;:::o;4288:109::-;4344:7;4371:3;:11;;:18;;;;4364:25;;4288:109;;;:::o;4073:129::-;4146:4;4193:1;4170:3;:12;;:19;4183:5;4170:19;;;;;;;;;;;;:24;;4163:31;;4073:129;;;;:::o;40586:204::-;40671:4;40710:32;40695:47;;;:11;:47;;;;:87;;;;40746:36;40770:11;40746:23;:36::i;:::-;40695:87;40688:94;;40586:204;;;:::o;66562:392::-;66801:66;66828:8;66838:4;66844:2;66848:3;66853:7;66862:4;66801:26;:66::i;:::-;66889:8;:6;:8::i;:::-;66888:9;66880:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;66562:392;;;;;;:::o;20435:326::-;20495:4;20752:1;20730:7;:19;;;:23;20723:30;;20435:326;;;:::o;2567:1420::-;2633:4;2751:18;2772:3;:12;;:19;2785:5;2772:19;;;;;;;;;;;;2751:40;;2822:1;2808:10;:15;2804:1176;;3183:21;3220:1;3207:10;:14;;;;:::i;:::-;3183:38;;3236:17;3277:1;3256:3;:11;;:18;;;;:22;;;;:::i;:::-;3236:42;;3312:13;3299:9;:26;3295:405;;3346:17;3366:3;:11;;3378:9;3366:22;;;;;;;;:::i;:::-;;;;;;;;;;3346:42;;3520:9;3491:3;:11;;3503:13;3491:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3631:10;3605:3;:12;;:23;3618:9;3605:23;;;;;;;;;;;:36;;;;3327:373;3295:405;3781:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3876:3;:12;;:19;3889:5;3876:19;;;;;;;;;;;3869:26;;;3919:4;3912:11;;;;;;;2804:1176;3963:5;3956:12;;;2567:1420;;;;;:::o;29487:157::-;29572:4;29611:25;29596:40;;;:11;:40;;;;29589:47;;29487:157;;;:::o;63837:221::-;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:117::-;3322:1;3319;3312:12;3336:117;3445:1;3442;3435:12;3459:102;3500:6;3551:2;3547:7;3542:2;3535:5;3531:14;3527:28;3517:38;;3459:102;;;:::o;3567:180::-;3615:77;3612:1;3605:88;3712:4;3709:1;3702:15;3736:4;3733:1;3726:15;3753:281;3836:27;3858:4;3836:27;:::i;:::-;3828:6;3824:40;3966:6;3954:10;3951:22;3930:18;3918:10;3915:34;3912:62;3909:88;;;3977:18;;:::i;:::-;3909:88;4017:10;4013:2;4006:22;3796:238;3753:281;;:::o;4040:129::-;4074:6;4101:20;;:::i;:::-;4091:30;;4130:33;4158:4;4150:6;4130:33;:::i;:::-;4040:129;;;:::o;4175:308::-;4237:4;4327:18;4319:6;4316:30;4313:56;;;4349:18;;:::i;:::-;4313:56;4387:29;4409:6;4387:29;:::i;:::-;4379:37;;4471:4;4465;4461:15;4453:23;;4175:308;;;:::o;4489:154::-;4573:6;4568:3;4563;4550:30;4635:1;4626:6;4621:3;4617:16;4610:27;4489:154;;;:::o;4649:412::-;4727:5;4752:66;4768:49;4810:6;4768:49;:::i;:::-;4752:66;:::i;:::-;4743:75;;4841:6;4834:5;4827:21;4879:4;4872:5;4868:16;4917:3;4908:6;4903:3;4899:16;4896:25;4893:112;;;4924:79;;:::i;:::-;4893:112;5014:41;5048:6;5043:3;5038;5014:41;:::i;:::-;4733:328;4649:412;;;;;:::o;5081:340::-;5137:5;5186:3;5179:4;5171:6;5167:17;5163:27;5153:122;;5194:79;;:::i;:::-;5153:122;5311:6;5298:20;5336:79;5411:3;5403:6;5396:4;5388:6;5384:17;5336:79;:::i;:::-;5327:88;;5143:278;5081:340;;;;:::o;5427:509::-;5496:6;5545:2;5533:9;5524:7;5520:23;5516:32;5513:119;;;5551:79;;:::i;:::-;5513:119;5699:1;5688:9;5684:17;5671:31;5729:18;5721:6;5718:30;5715:117;;;5751:79;;:::i;:::-;5715:117;5856:63;5911:7;5902:6;5891:9;5887:22;5856:63;:::i;:::-;5846:73;;5642:287;5427:509;;;;:::o;5942:99::-;5994:6;6028:5;6022:12;6012:22;;5942:99;;;:::o;6047:169::-;6131:11;6165:6;6160:3;6153:19;6205:4;6200:3;6196:14;6181:29;;6047:169;;;;:::o;6222:307::-;6290:1;6300:113;6314:6;6311:1;6308:13;6300:113;;;6399:1;6394:3;6390:11;6384:18;6380:1;6375:3;6371:11;6364:39;6336:2;6333:1;6329:10;6324:15;;6300:113;;;6431:6;6428:1;6425:13;6422:101;;;6511:1;6502:6;6497:3;6493:16;6486:27;6422:101;6271:258;6222:307;;;:::o;6535:364::-;6623:3;6651:39;6684:5;6651:39;:::i;:::-;6706:71;6770:6;6765:3;6706:71;:::i;:::-;6699:78;;6786:52;6831:6;6826:3;6819:4;6812:5;6808:16;6786:52;:::i;:::-;6863:29;6885:6;6863:29;:::i;:::-;6858:3;6854:39;6847:46;;6627:272;6535:364;;;;:::o;6905:313::-;7018:4;7056:2;7045:9;7041:18;7033:26;;7105:9;7099:4;7095:20;7091:1;7080:9;7076:17;7069:47;7133:78;7206:4;7197:6;7133:78;:::i;:::-;7125:86;;6905:313;;;;:::o;7224:329::-;7283:6;7332:2;7320:9;7311:7;7307:23;7303:32;7300:119;;;7338:79;;:::i;:::-;7300:119;7458:1;7483:53;7528:7;7519:6;7508:9;7504:22;7483:53;:::i;:::-;7473:63;;7429:117;7224:329;;;;:::o;7559:311::-;7636:4;7726:18;7718:6;7715:30;7712:56;;;7748:18;;:::i;:::-;7712:56;7798:4;7790:6;7786:17;7778:25;;7858:4;7852;7848:15;7840:23;;7559:311;;;:::o;7876:117::-;7985:1;7982;7975:12;8016:710;8112:5;8137:81;8153:64;8210:6;8153:64;:::i;:::-;8137:81;:::i;:::-;8128:90;;8238:5;8267:6;8260:5;8253:21;8301:4;8294:5;8290:16;8283:23;;8354:4;8346:6;8342:17;8334:6;8330:30;8383:3;8375:6;8372:15;8369:122;;;8402:79;;:::i;:::-;8369:122;8517:6;8500:220;8534:6;8529:3;8526:15;8500:220;;;8609:3;8638:37;8671:3;8659:10;8638:37;:::i;:::-;8633:3;8626:50;8705:4;8700:3;8696:14;8689:21;;8576:144;8560:4;8555:3;8551:14;8544:21;;8500:220;;;8504:21;8118:608;;8016:710;;;;;:::o;8749:370::-;8820:5;8869:3;8862:4;8854:6;8850:17;8846:27;8836:122;;8877:79;;:::i;:::-;8836:122;8994:6;8981:20;9019:94;9109:3;9101:6;9094:4;9086:6;9082:17;9019:94;:::i;:::-;9010:103;;8826:293;8749:370;;;;:::o;9125:307::-;9186:4;9276:18;9268:6;9265:30;9262:56;;;9298:18;;:::i;:::-;9262:56;9336:29;9358:6;9336:29;:::i;:::-;9328:37;;9420:4;9414;9410:15;9402:23;;9125:307;;;:::o;9438:410::-;9515:5;9540:65;9556:48;9597:6;9556:48;:::i;:::-;9540:65;:::i;:::-;9531:74;;9628:6;9621:5;9614:21;9666:4;9659:5;9655:16;9704:3;9695:6;9690:3;9686:16;9683:25;9680:112;;;9711:79;;:::i;:::-;9680:112;9801:41;9835:6;9830:3;9825;9801:41;:::i;:::-;9521:327;9438:410;;;;;:::o;9867:338::-;9922:5;9971:3;9964:4;9956:6;9952:17;9948:27;9938:122;;9979:79;;:::i;:::-;9938:122;10096:6;10083:20;10121:78;10195:3;10187:6;10180:4;10172:6;10168:17;10121:78;:::i;:::-;10112:87;;9928:277;9867:338;;;;:::o;10211:1363::-;10356:6;10364;10372;10380;10429:3;10417:9;10408:7;10404:23;10400:33;10397:120;;;10436:79;;:::i;:::-;10397:120;10556:1;10581:53;10626:7;10617:6;10606:9;10602:22;10581:53;:::i;:::-;10571:63;;10527:117;10711:2;10700:9;10696:18;10683:32;10742:18;10734:6;10731:30;10728:117;;;10764:79;;:::i;:::-;10728:117;10869:78;10939:7;10930:6;10919:9;10915:22;10869:78;:::i;:::-;10859:88;;10654:303;11024:2;11013:9;11009:18;10996:32;11055:18;11047:6;11044:30;11041:117;;;11077:79;;:::i;:::-;11041:117;11182:78;11252:7;11243:6;11232:9;11228:22;11182:78;:::i;:::-;11172:88;;10967:303;11337:2;11326:9;11322:18;11309:32;11368:18;11360:6;11357:30;11354:117;;;11390:79;;:::i;:::-;11354:117;11495:62;11549:7;11540:6;11529:9;11525:22;11495:62;:::i;:::-;11485:72;;11280:287;10211:1363;;;;;;;:::o;11580:77::-;11617:7;11646:5;11635:16;;11580:77;;;:::o;11663:122::-;11736:24;11754:5;11736:24;:::i;:::-;11729:5;11726:35;11716:63;;11775:1;11772;11765:12;11716:63;11663:122;:::o;11791:139::-;11837:5;11875:6;11862:20;11853:29;;11891:33;11918:5;11891:33;:::i;:::-;11791:139;;;;:::o;11936:329::-;11995:6;12044:2;12032:9;12023:7;12019:23;12015:32;12012:119;;;12050:79;;:::i;:::-;12012:119;12170:1;12195:53;12240:7;12231:6;12220:9;12216:22;12195:53;:::i;:::-;12185:63;;12141:117;11936:329;;;;:::o;12271:118::-;12358:24;12376:5;12358:24;:::i;:::-;12353:3;12346:37;12271:118;;:::o;12395:222::-;12488:4;12526:2;12515:9;12511:18;12503:26;;12539:71;12607:1;12596:9;12592:17;12583:6;12539:71;:::i;:::-;12395:222;;;;:::o;12623:1509::-;12777:6;12785;12793;12801;12809;12858:3;12846:9;12837:7;12833:23;12829:33;12826:120;;;12865:79;;:::i;:::-;12826:120;12985:1;13010:53;13055:7;13046:6;13035:9;13031:22;13010:53;:::i;:::-;13000:63;;12956:117;13112:2;13138:53;13183:7;13174:6;13163:9;13159:22;13138:53;:::i;:::-;13128:63;;13083:118;13268:2;13257:9;13253:18;13240:32;13299:18;13291:6;13288:30;13285:117;;;13321:79;;:::i;:::-;13285:117;13426:78;13496:7;13487:6;13476:9;13472:22;13426:78;:::i;:::-;13416:88;;13211:303;13581:2;13570:9;13566:18;13553:32;13612:18;13604:6;13601:30;13598:117;;;13634:79;;:::i;:::-;13598:117;13739:78;13809:7;13800:6;13789:9;13785:22;13739:78;:::i;:::-;13729:88;;13524:303;13894:3;13883:9;13879:19;13866:33;13926:18;13918:6;13915:30;13912:117;;;13948:79;;:::i;:::-;13912:117;14053:62;14107:7;14098:6;14087:9;14083:22;14053:62;:::i;:::-;14043:72;;13837:288;12623:1509;;;;;;;;:::o;14138:474::-;14206:6;14214;14263:2;14251:9;14242:7;14238:23;14234:32;14231:119;;;14269:79;;:::i;:::-;14231:119;14389:1;14414:53;14459:7;14450:6;14439:9;14435:22;14414:53;:::i;:::-;14404:63;;14360:117;14516:2;14542:53;14587:7;14578:6;14567:9;14563:22;14542:53;:::i;:::-;14532:63;;14487:118;14138:474;;;;;:::o;14618:311::-;14695:4;14785:18;14777:6;14774:30;14771:56;;;14807:18;;:::i;:::-;14771:56;14857:4;14849:6;14845:17;14837:25;;14917:4;14911;14907:15;14899:23;;14618:311;;;:::o;14952:710::-;15048:5;15073:81;15089:64;15146:6;15089:64;:::i;:::-;15073:81;:::i;:::-;15064:90;;15174:5;15203:6;15196:5;15189:21;15237:4;15230:5;15226:16;15219:23;;15290:4;15282:6;15278:17;15270:6;15266:30;15319:3;15311:6;15308:15;15305:122;;;15338:79;;:::i;:::-;15305:122;15453:6;15436:220;15470:6;15465:3;15462:15;15436:220;;;15545:3;15574:37;15607:3;15595:10;15574:37;:::i;:::-;15569:3;15562:50;15641:4;15636:3;15632:14;15625:21;;15512:144;15496:4;15491:3;15487:14;15480:21;;15436:220;;;15440:21;15054:608;;14952:710;;;;;:::o;15685:370::-;15756:5;15805:3;15798:4;15790:6;15786:17;15782:27;15772:122;;15813:79;;:::i;:::-;15772:122;15930:6;15917:20;15955:94;16045:3;16037:6;16030:4;16022:6;16018:17;15955:94;:::i;:::-;15946:103;;15762:293;15685:370;;;;:::o;16061:894::-;16179:6;16187;16236:2;16224:9;16215:7;16211:23;16207:32;16204:119;;;16242:79;;:::i;:::-;16204:119;16390:1;16379:9;16375:17;16362:31;16420:18;16412:6;16409:30;16406:117;;;16442:79;;:::i;:::-;16406:117;16547:78;16617:7;16608:6;16597:9;16593:22;16547:78;:::i;:::-;16537:88;;16333:302;16702:2;16691:9;16687:18;16674:32;16733:18;16725:6;16722:30;16719:117;;;16755:79;;:::i;:::-;16719:117;16860:78;16930:7;16921:6;16910:9;16906:22;16860:78;:::i;:::-;16850:88;;16645:303;16061:894;;;;;:::o;16961:114::-;17028:6;17062:5;17056:12;17046:22;;16961:114;;;:::o;17081:184::-;17180:11;17214:6;17209:3;17202:19;17254:4;17249:3;17245:14;17230:29;;17081:184;;;;:::o;17271:132::-;17338:4;17361:3;17353:11;;17391:4;17386:3;17382:14;17374:22;;17271:132;;;:::o;17409:108::-;17486:24;17504:5;17486:24;:::i;:::-;17481:3;17474:37;17409:108;;:::o;17523:179::-;17592:10;17613:46;17655:3;17647:6;17613:46;:::i;:::-;17691:4;17686:3;17682:14;17668:28;;17523:179;;;;:::o;17708:113::-;17778:4;17810;17805:3;17801:14;17793:22;;17708:113;;;:::o;17857:732::-;17976:3;18005:54;18053:5;18005:54;:::i;:::-;18075:86;18154:6;18149:3;18075:86;:::i;:::-;18068:93;;18185:56;18235:5;18185:56;:::i;:::-;18264:7;18295:1;18280:284;18305:6;18302:1;18299:13;18280:284;;;18381:6;18375:13;18408:63;18467:3;18452:13;18408:63;:::i;:::-;18401:70;;18494:60;18547:6;18494:60;:::i;:::-;18484:70;;18340:224;18327:1;18324;18320:9;18315:14;;18280:284;;;18284:14;18580:3;18573:10;;17981:608;;;17857:732;;;;:::o;18595:373::-;18738:4;18776:2;18765:9;18761:18;18753:26;;18825:9;18819:4;18815:20;18811:1;18800:9;18796:17;18789:47;18853:108;18956:4;18947:6;18853:108;:::i;:::-;18845:116;;18595:373;;;;:::o;18974:1039::-;19101:6;19109;19117;19166:2;19154:9;19145:7;19141:23;19137:32;19134:119;;;19172:79;;:::i;:::-;19134:119;19292:1;19317:53;19362:7;19353:6;19342:9;19338:22;19317:53;:::i;:::-;19307:63;;19263:117;19447:2;19436:9;19432:18;19419:32;19478:18;19470:6;19467:30;19464:117;;;19500:79;;:::i;:::-;19464:117;19605:78;19675:7;19666:6;19655:9;19651:22;19605:78;:::i;:::-;19595:88;;19390:303;19760:2;19749:9;19745:18;19732:32;19791:18;19783:6;19780:30;19777:117;;;19813:79;;:::i;:::-;19777:117;19918:78;19988:7;19979:6;19968:9;19964:22;19918:78;:::i;:::-;19908:88;;19703:303;18974:1039;;;;;:::o;20019:943::-;20114:6;20122;20130;20138;20187:3;20175:9;20166:7;20162:23;20158:33;20155:120;;;20194:79;;:::i;:::-;20155:120;20314:1;20339:53;20384:7;20375:6;20364:9;20360:22;20339:53;:::i;:::-;20329:63;;20285:117;20441:2;20467:53;20512:7;20503:6;20492:9;20488:22;20467:53;:::i;:::-;20457:63;;20412:118;20569:2;20595:53;20640:7;20631:6;20620:9;20616:22;20595:53;:::i;:::-;20585:63;;20540:118;20725:2;20714:9;20710:18;20697:32;20756:18;20748:6;20745:30;20742:117;;;20778:79;;:::i;:::-;20742:117;20883:62;20937:7;20928:6;20917:9;20913:22;20883:62;:::i;:::-;20873:72;;20668:287;20019:943;;;;;;;:::o;20968:118::-;21055:24;21073:5;21055:24;:::i;:::-;21050:3;21043:37;20968:118;;:::o;21092:222::-;21185:4;21223:2;21212:9;21208:18;21200:26;;21236:71;21304:1;21293:9;21289:17;21280:6;21236:71;:::i;:::-;21092:222;;;;:::o;21320:474::-;21388:6;21396;21445:2;21433:9;21424:7;21420:23;21416:32;21413:119;;;21451:79;;:::i;:::-;21413:119;21571:1;21596:53;21641:7;21632:6;21621:9;21617:22;21596:53;:::i;:::-;21586:63;;21542:117;21698:2;21724:53;21769:7;21760:6;21749:9;21745:22;21724:53;:::i;:::-;21714:63;;21669:118;21320:474;;;;;:::o;21800:116::-;21870:21;21885:5;21870:21;:::i;:::-;21863:5;21860:32;21850:60;;21906:1;21903;21896:12;21850:60;21800:116;:::o;21922:133::-;21965:5;22003:6;21990:20;21981:29;;22019:30;22043:5;22019:30;:::i;:::-;21922:133;;;;:::o;22061:468::-;22126:6;22134;22183:2;22171:9;22162:7;22158:23;22154:32;22151:119;;;22189:79;;:::i;:::-;22151:119;22309:1;22334:53;22379:7;22370:6;22359:9;22355:22;22334:53;:::i;:::-;22324:63;;22280:117;22436:2;22462:50;22504:7;22495:6;22484:9;22480:22;22462:50;:::i;:::-;22452:60;;22407:115;22061:468;;;;;:::o;22535:474::-;22603:6;22611;22660:2;22648:9;22639:7;22635:23;22631:32;22628:119;;;22666:79;;:::i;:::-;22628:119;22786:1;22811:53;22856:7;22847:6;22836:9;22832:22;22811:53;:::i;:::-;22801:63;;22757:117;22913:2;22939:53;22984:7;22975:6;22964:9;22960:22;22939:53;:::i;:::-;22929:63;;22884:118;22535:474;;;;;:::o;23015:1089::-;23119:6;23127;23135;23143;23151;23200:3;23188:9;23179:7;23175:23;23171:33;23168:120;;;23207:79;;:::i;:::-;23168:120;23327:1;23352:53;23397:7;23388:6;23377:9;23373:22;23352:53;:::i;:::-;23342:63;;23298:117;23454:2;23480:53;23525:7;23516:6;23505:9;23501:22;23480:53;:::i;:::-;23470:63;;23425:118;23582:2;23608:53;23653:7;23644:6;23633:9;23629:22;23608:53;:::i;:::-;23598:63;;23553:118;23710:2;23736:53;23781:7;23772:6;23761:9;23757:22;23736:53;:::i;:::-;23726:63;;23681:118;23866:3;23855:9;23851:19;23838:33;23898:18;23890:6;23887:30;23884:117;;;23920:79;;:::i;:::-;23884:117;24025:62;24079:7;24070:6;24059:9;24055:22;24025:62;:::i;:::-;24015:72;;23809:288;23015:1089;;;;;;;;:::o;24110:329::-;24169:6;24218:2;24206:9;24197:7;24193:23;24189:32;24186:119;;;24224:79;;:::i;:::-;24186:119;24344:1;24369:53;24414:7;24405:6;24394:9;24390:22;24369:53;:::i;:::-;24359:63;;24315:117;24110:329;;;;:::o;24445:619::-;24522:6;24530;24538;24587:2;24575:9;24566:7;24562:23;24558:32;24555:119;;;24593:79;;:::i;:::-;24555:119;24713:1;24738:53;24783:7;24774:6;24763:9;24759:22;24738:53;:::i;:::-;24728:63;;24684:117;24840:2;24866:53;24911:7;24902:6;24891:9;24887:22;24866:53;:::i;:::-;24856:63;;24811:118;24968:2;24994:53;25039:7;25030:6;25019:9;25015:22;24994:53;:::i;:::-;24984:63;;24939:118;24445:619;;;;;:::o;25070:230::-;25210:34;25206:1;25198:6;25194:14;25187:58;25279:13;25274:2;25266:6;25262:15;25255:38;25070:230;:::o;25306:366::-;25448:3;25469:67;25533:2;25528:3;25469:67;:::i;:::-;25462:74;;25545:93;25634:3;25545:93;:::i;:::-;25663:2;25658:3;25654:12;25647:19;;25306:366;;;:::o;25678:419::-;25844:4;25882:2;25871:9;25867:18;25859:26;;25931:9;25925:4;25921:20;25917:1;25906:9;25902:17;25895:47;25959:131;26085:4;25959:131;:::i;:::-;25951:139;;25678:419;;;:::o;26103:182::-;26243:34;26239:1;26231:6;26227:14;26220:58;26103:182;:::o;26291:366::-;26433:3;26454:67;26518:2;26513:3;26454:67;:::i;:::-;26447:74;;26530:93;26619:3;26530:93;:::i;:::-;26648:2;26643:3;26639:12;26632:19;;26291:366;;;:::o;26663:419::-;26829:4;26867:2;26856:9;26852:18;26844:26;;26916:9;26910:4;26906:20;26902:1;26891:9;26887:17;26880:47;26944:131;27070:4;26944:131;:::i;:::-;26936:139;;26663:419;;;:::o;27088:180::-;27136:77;27133:1;27126:88;27233:4;27230:1;27223:15;27257:4;27254:1;27247:15;27274:320;27318:6;27355:1;27349:4;27345:12;27335:22;;27402:1;27396:4;27392:12;27423:18;27413:81;;27479:4;27471:6;27467:17;27457:27;;27413:81;27541:2;27533:6;27530:14;27510:18;27507:38;27504:84;;27560:18;;:::i;:::-;27504:84;27325:269;27274:320;;;:::o;27600:243::-;27740:34;27736:1;27728:6;27724:14;27717:58;27809:26;27804:2;27796:6;27792:15;27785:51;27600:243;:::o;27849:366::-;27991:3;28012:67;28076:2;28071:3;28012:67;:::i;:::-;28005:74;;28088:93;28177:3;28088:93;:::i;:::-;28206:2;28201:3;28197:12;28190:19;;27849:366;;;:::o;28221:419::-;28387:4;28425:2;28414:9;28410:18;28402:26;;28474:9;28468:4;28464:20;28460:1;28449:9;28445:17;28438:47;28502:131;28628:4;28502:131;:::i;:::-;28494:139;;28221:419;;;:::o;28646:237::-;28786:34;28782:1;28774:6;28770:14;28763:58;28855:20;28850:2;28842:6;28838:15;28831:45;28646:237;:::o;28889:366::-;29031:3;29052:67;29116:2;29111:3;29052:67;:::i;:::-;29045:74;;29128:93;29217:3;29128:93;:::i;:::-;29246:2;29241:3;29237:12;29230:19;;28889:366;;;:::o;29261:419::-;29427:4;29465:2;29454:9;29450:18;29442:26;;29514:9;29508:4;29504:20;29500:1;29489:9;29485:17;29478:47;29542:131;29668:4;29542:131;:::i;:::-;29534:139;;29261:419;;;:::o;29686:234::-;29826:34;29822:1;29814:6;29810:14;29803:58;29895:17;29890:2;29882:6;29878:15;29871:42;29686:234;:::o;29926:366::-;30068:3;30089:67;30153:2;30148:3;30089:67;:::i;:::-;30082:74;;30165:93;30254:3;30165:93;:::i;:::-;30283:2;30278:3;30274:12;30267:19;;29926:366;;;:::o;30298:419::-;30464:4;30502:2;30491:9;30487:18;30479:26;;30551:9;30545:4;30541:20;30537:1;30526:9;30522:17;30515:47;30579:131;30705:4;30579:131;:::i;:::-;30571:139;;30298:419;;;:::o;30723:246::-;30863:34;30859:1;30851:6;30847:14;30840:58;30932:29;30927:2;30919:6;30915:15;30908:54;30723:246;:::o;30975:366::-;31117:3;31138:67;31202:2;31197:3;31138:67;:::i;:::-;31131:74;;31214:93;31303:3;31214:93;:::i;:::-;31332:2;31327:3;31323:12;31316:19;;30975:366;;;:::o;31347:419::-;31513:4;31551:2;31540:9;31536:18;31528:26;;31600:9;31594:4;31590:20;31586:1;31575:9;31571:17;31564:47;31628:131;31754:4;31628:131;:::i;:::-;31620:139;;31347:419;;;:::o;31772:228::-;31912:34;31908:1;31900:6;31896:14;31889:58;31981:11;31976:2;31968:6;31964:15;31957:36;31772:228;:::o;32006:366::-;32148:3;32169:67;32233:2;32228:3;32169:67;:::i;:::-;32162:74;;32245:93;32334:3;32245:93;:::i;:::-;32363:2;32358:3;32354:12;32347:19;;32006:366;;;:::o;32378:419::-;32544:4;32582:2;32571:9;32567:18;32559:26;;32631:9;32625:4;32621:20;32617:1;32606:9;32602:17;32595:47;32659:131;32785:4;32659:131;:::i;:::-;32651:139;;32378:419;;;:::o;32803:180::-;32851:77;32848:1;32841:88;32948:4;32945:1;32938:15;32972:4;32969:1;32962:15;32989:180;33037:77;33034:1;33027:88;33134:4;33131:1;33124:15;33158:4;33155:1;33148:15;33175:233;33214:3;33237:24;33255:5;33237:24;:::i;:::-;33228:33;;33283:66;33276:5;33273:77;33270:103;;33353:18;;:::i;:::-;33270:103;33400:1;33393:5;33389:13;33382:20;;33175:233;;;:::o;33414:228::-;33554:34;33550:1;33542:6;33538:14;33531:58;33623:11;33618:2;33610:6;33606:15;33599:36;33414:228;:::o;33648:366::-;33790:3;33811:67;33875:2;33870:3;33811:67;:::i;:::-;33804:74;;33887:93;33976:3;33887:93;:::i;:::-;34005:2;34000:3;33996:12;33989:19;;33648:366;;;:::o;34020:419::-;34186:4;34224:2;34213:9;34209:18;34201:26;;34273:9;34267:4;34263:20;34259:1;34248:9;34244:17;34237:47;34301:131;34427:4;34301:131;:::i;:::-;34293:139;;34020:419;;;:::o;34445:244::-;34585:34;34581:1;34573:6;34569:14;34562:58;34654:27;34649:2;34641:6;34637:15;34630:52;34445:244;:::o;34695:366::-;34837:3;34858:67;34922:2;34917:3;34858:67;:::i;:::-;34851:74;;34934:93;35023:3;34934:93;:::i;:::-;35052:2;35047:3;35043:12;35036:19;;34695:366;;;:::o;35067:419::-;35233:4;35271:2;35260:9;35256:18;35248:26;;35320:9;35314:4;35310:20;35306:1;35295:9;35291:17;35284:47;35348:131;35474:4;35348:131;:::i;:::-;35340:139;;35067:419;;;:::o;35492:122::-;35555:7;35584:24;35602:5;35584:24;:::i;:::-;35573:35;;35492:122;;;:::o;35620:174::-;35719:50;35763:5;35719:50;:::i;:::-;35712:5;35709:61;35699:89;;35784:1;35781;35774:12;35699:89;35620:174;:::o;35800:195::-;35883:5;35914:6;35908:13;35899:22;;35930:59;35983:5;35930:59;:::i;:::-;35800:195;;;;:::o;36001:403::-;36097:6;36146:2;36134:9;36125:7;36121:23;36117:32;36114:119;;;36152:79;;:::i;:::-;36114:119;36272:1;36297:90;36379:7;36370:6;36359:9;36355:22;36297:90;:::i;:::-;36287:100;;36243:154;36001:403;;;;:::o;36410:225::-;36550:34;36546:1;36538:6;36534:14;36527:58;36619:8;36614:2;36606:6;36602:15;36595:33;36410:225;:::o;36641:366::-;36783:3;36804:67;36868:2;36863:3;36804:67;:::i;:::-;36797:74;;36880:93;36969:3;36880:93;:::i;:::-;36998:2;36993:3;36989:12;36982:19;;36641:366;;;:::o;37013:419::-;37179:4;37217:2;37206:9;37202:18;37194:26;;37266:9;37260:4;37256:20;37252:1;37241:9;37237:17;37230:47;37294:131;37420:4;37294:131;:::i;:::-;37286:139;;37013:419;;;:::o;37438:220::-;37578:34;37574:1;37566:6;37562:14;37555:58;37647:3;37642:2;37634:6;37630:15;37623:28;37438:220;:::o;37664:366::-;37806:3;37827:67;37891:2;37886:3;37827:67;:::i;:::-;37820:74;;37903:93;37992:3;37903:93;:::i;:::-;38021:2;38016:3;38012:12;38005:19;;37664:366;;;:::o;38036:419::-;38202:4;38240:2;38229:9;38225:18;38217:26;;38289:9;38283:4;38279:20;38275:1;38264:9;38260:17;38253:47;38317:131;38443:4;38317:131;:::i;:::-;38309:139;;38036:419;;;:::o;38461:227::-;38601:34;38597:1;38589:6;38585:14;38578:58;38670:10;38665:2;38657:6;38653:15;38646:35;38461:227;:::o;38694:366::-;38836:3;38857:67;38921:2;38916:3;38857:67;:::i;:::-;38850:74;;38933:93;39022:3;38933:93;:::i;:::-;39051:2;39046:3;39042:12;39035:19;;38694:366;;;:::o;39066:419::-;39232:4;39270:2;39259:9;39255:18;39247:26;;39319:9;39313:4;39309:20;39305:1;39294:9;39290:17;39283:47;39347:131;39473:4;39347:131;:::i;:::-;39339:139;;39066:419;;;:::o;39491:305::-;39531:3;39550:20;39568:1;39550:20;:::i;:::-;39545:25;;39584:20;39602:1;39584:20;:::i;:::-;39579:25;;39738:1;39670:66;39666:74;39663:1;39660:81;39657:107;;;39744:18;;:::i;:::-;39657:107;39788:1;39785;39781:9;39774:16;;39491:305;;;;:::o;39802:634::-;40023:4;40061:2;40050:9;40046:18;40038:26;;40110:9;40104:4;40100:20;40096:1;40085:9;40081:17;40074:47;40138:108;40241:4;40232:6;40138:108;:::i;:::-;40130:116;;40293:9;40287:4;40283:20;40278:2;40267:9;40263:18;40256:48;40321:108;40424:4;40415:6;40321:108;:::i;:::-;40313:116;;39802:634;;;;;:::o;40442:224::-;40582:34;40578:1;40570:6;40566:14;40559:58;40651:7;40646:2;40638:6;40634:15;40627:32;40442:224;:::o;40672:366::-;40814:3;40835:67;40899:2;40894:3;40835:67;:::i;:::-;40828:74;;40911:93;41000:3;40911:93;:::i;:::-;41029:2;41024:3;41020:12;41013:19;;40672:366;;;:::o;41044:419::-;41210:4;41248:2;41237:9;41233:18;41225:26;;41297:9;41291:4;41287:20;41283:1;41272:9;41268:17;41261:47;41325:131;41451:4;41325:131;:::i;:::-;41317:139;;41044:419;;;:::o;41469:229::-;41609:34;41605:1;41597:6;41593:14;41586:58;41678:12;41673:2;41665:6;41661:15;41654:37;41469:229;:::o;41704:366::-;41846:3;41867:67;41931:2;41926:3;41867:67;:::i;:::-;41860:74;;41943:93;42032:3;41943:93;:::i;:::-;42061:2;42056:3;42052:12;42045:19;;41704:366;;;:::o;42076:419::-;42242:4;42280:2;42269:9;42265:18;42257:26;;42329:9;42323:4;42319:20;42315:1;42304:9;42300:17;42293:47;42357:131;42483:4;42357:131;:::i;:::-;42349:139;;42076:419;;;:::o;42501:148::-;42603:11;42640:3;42625:18;;42501:148;;;;:::o;42655:173::-;42795:25;42791:1;42783:6;42779:14;42772:49;42655:173;:::o;42834:402::-;42994:3;43015:85;43097:2;43092:3;43015:85;:::i;:::-;43008:92;;43109:93;43198:3;43109:93;:::i;:::-;43227:2;43222:3;43218:12;43211:19;;42834:402;;;:::o;43242:377::-;43348:3;43376:39;43409:5;43376:39;:::i;:::-;43431:89;43513:6;43508:3;43431:89;:::i;:::-;43424:96;;43529:52;43574:6;43569:3;43562:4;43555:5;43551:16;43529:52;:::i;:::-;43606:6;43601:3;43597:16;43590:23;;43352:267;43242:377;;;;:::o;43625:167::-;43765:19;43761:1;43753:6;43749:14;43742:43;43625:167;:::o;43798:402::-;43958:3;43979:85;44061:2;44056:3;43979:85;:::i;:::-;43972:92;;44073:93;44162:3;44073:93;:::i;:::-;44191:2;44186:3;44182:12;44175:19;;43798:402;;;:::o;44206:967::-;44588:3;44610:148;44754:3;44610:148;:::i;:::-;44603:155;;44775:95;44866:3;44857:6;44775:95;:::i;:::-;44768:102;;44887:148;45031:3;44887:148;:::i;:::-;44880:155;;45052:95;45143:3;45134:6;45052:95;:::i;:::-;45045:102;;45164:3;45157:10;;44206:967;;;;;:::o;45179:170::-;45319:22;45315:1;45307:6;45303:14;45296:46;45179:170;:::o;45355:366::-;45497:3;45518:67;45582:2;45577:3;45518:67;:::i;:::-;45511:74;;45594:93;45683:3;45594:93;:::i;:::-;45712:2;45707:3;45703:12;45696:19;;45355:366;;;:::o;45727:419::-;45893:4;45931:2;45920:9;45916:18;45908:26;;45980:9;45974:4;45970:20;45966:1;45955:9;45951:17;45944:47;46008:131;46134:4;46008:131;:::i;:::-;46000:139;;45727:419;;;:::o;46152:222::-;46292:34;46288:1;46280:6;46276:14;46269:58;46361:5;46356:2;46348:6;46344:15;46337:30;46152:222;:::o;46380:366::-;46522:3;46543:67;46607:2;46602:3;46543:67;:::i;:::-;46536:74;;46619:93;46708:3;46619:93;:::i;:::-;46737:2;46732:3;46728:12;46721:19;;46380:366;;;:::o;46752:419::-;46918:4;46956:2;46945:9;46941:18;46933:26;;47005:9;46999:4;46995:20;46991:1;46980:9;46976:17;46969:47;47033:131;47159:4;47033:131;:::i;:::-;47025:139;;46752:419;;;:::o;47177:223::-;47317:34;47313:1;47305:6;47301:14;47294:58;47386:6;47381:2;47373:6;47369:15;47362:31;47177:223;:::o;47406:366::-;47548:3;47569:67;47633:2;47628:3;47569:67;:::i;:::-;47562:74;;47645:93;47734:3;47645:93;:::i;:::-;47763:2;47758:3;47754:12;47747:19;;47406:366;;;:::o;47778:419::-;47944:4;47982:2;47971:9;47967:18;47959:26;;48031:9;48025:4;48021:20;48017:1;48006:9;48002:17;47995:47;48059:131;48185:4;48059:131;:::i;:::-;48051:139;;47778:419;;;:::o;48203:332::-;48324:4;48362:2;48351:9;48347:18;48339:26;;48375:71;48443:1;48432:9;48428:17;48419:6;48375:71;:::i;:::-;48456:72;48524:2;48513:9;48509:18;48500:6;48456:72;:::i;:::-;48203:332;;;;;:::o;48541:166::-;48681:18;48677:1;48669:6;48665:14;48658:42;48541:166;:::o;48713:366::-;48855:3;48876:67;48940:2;48935:3;48876:67;:::i;:::-;48869:74;;48952:93;49041:3;48952:93;:::i;:::-;49070:2;49065:3;49061:12;49054:19;;48713:366;;;:::o;49085:419::-;49251:4;49289:2;49278:9;49274:18;49266:26;;49338:9;49332:4;49328:20;49324:1;49313:9;49309:17;49302:47;49366:131;49492:4;49366:131;:::i;:::-;49358:139;;49085:419;;;:::o;49510:228::-;49650:34;49646:1;49638:6;49634:14;49627:58;49719:11;49714:2;49706:6;49702:15;49695:36;49510:228;:::o;49744:366::-;49886:3;49907:67;49971:2;49966:3;49907:67;:::i;:::-;49900:74;;49983:93;50072:3;49983:93;:::i;:::-;50101:2;50096:3;50092:12;50085:19;;49744:366;;;:::o;50116:419::-;50282:4;50320:2;50309:9;50305:18;50297:26;;50369:9;50363:4;50359:20;50355:1;50344:9;50340:17;50333:47;50397:131;50523:4;50397:131;:::i;:::-;50389:139;;50116:419;;;:::o;50541:98::-;50592:6;50626:5;50620:12;50610:22;;50541:98;;;:::o;50645:168::-;50728:11;50762:6;50757:3;50750:19;50802:4;50797:3;50793:14;50778:29;;50645:168;;;;:::o;50819:360::-;50905:3;50933:38;50965:5;50933:38;:::i;:::-;50987:70;51050:6;51045:3;50987:70;:::i;:::-;50980:77;;51066:52;51111:6;51106:3;51099:4;51092:5;51088:16;51066:52;:::i;:::-;51143:29;51165:6;51143:29;:::i;:::-;51138:3;51134:39;51127:46;;50909:270;50819:360;;;;:::o;51185:1053::-;51508:4;51546:3;51535:9;51531:19;51523:27;;51560:71;51628:1;51617:9;51613:17;51604:6;51560:71;:::i;:::-;51641:72;51709:2;51698:9;51694:18;51685:6;51641:72;:::i;:::-;51760:9;51754:4;51750:20;51745:2;51734:9;51730:18;51723:48;51788:108;51891:4;51882:6;51788:108;:::i;:::-;51780:116;;51943:9;51937:4;51933:20;51928:2;51917:9;51913:18;51906:48;51971:108;52074:4;52065:6;51971:108;:::i;:::-;51963:116;;52127:9;52121:4;52117:20;52111:3;52100:9;52096:19;52089:49;52155:76;52226:4;52217:6;52155:76;:::i;:::-;52147:84;;51185:1053;;;;;;;;:::o;52244:141::-;52300:5;52331:6;52325:13;52316:22;;52347:32;52373:5;52347:32;:::i;:::-;52244:141;;;;:::o;52391:349::-;52460:6;52509:2;52497:9;52488:7;52484:23;52480:32;52477:119;;;52515:79;;:::i;:::-;52477:119;52635:1;52660:63;52715:7;52706:6;52695:9;52691:22;52660:63;:::i;:::-;52650:73;;52606:127;52391:349;;;;:::o;52746:106::-;52790:8;52839:5;52834:3;52830:15;52809:36;;52746:106;;;:::o;52858:183::-;52893:3;52931:1;52913:16;52910:23;52907:128;;;52969:1;52966;52963;52948:23;52991:34;53022:1;53016:8;52991:34;:::i;:::-;52984:41;;52907:128;52858:183;:::o;53047:711::-;53086:3;53124:4;53106:16;53103:26;53132:5;53100:39;53161:20;;:::i;:::-;53236:1;53218:16;53214:24;53211:1;53205:4;53190:49;53269:4;53263:11;53368:16;53361:4;53353:6;53349:17;53346:39;53313:18;53305:6;53302:30;53286:113;53283:146;;;53414:5;;;;53283:146;53460:6;53454:4;53450:17;53496:3;53490:10;53523:18;53515:6;53512:30;53509:43;;;53545:5;;;;;;53509:43;53593:6;53586:4;53581:3;53577:14;53573:27;53652:1;53634:16;53630:24;53624:4;53620:35;53615:3;53612:44;53609:57;;;53659:5;;;;;;;53609:57;53676;53724:6;53718:4;53714:17;53706:6;53702:30;53696:4;53676:57;:::i;:::-;53749:3;53742:10;;53090:668;;;;;53047:711;;:::o;53764:239::-;53904:34;53900:1;53892:6;53888:14;53881:58;53973:22;53968:2;53960:6;53956:15;53949:47;53764:239;:::o;54009:366::-;54151:3;54172:67;54236:2;54231:3;54172:67;:::i;:::-;54165:74;;54248:93;54337:3;54248:93;:::i;:::-;54366:2;54361:3;54357:12;54350:19;;54009:366;;;:::o;54381:419::-;54547:4;54585:2;54574:9;54570:18;54562:26;;54634:9;54628:4;54624:20;54620:1;54609:9;54605:17;54598:47;54662:131;54788:4;54662:131;:::i;:::-;54654:139;;54381:419;;;:::o;54806:227::-;54946:34;54942:1;54934:6;54930:14;54923:58;55015:10;55010:2;55002:6;54998:15;54991:35;54806:227;:::o;55039:366::-;55181:3;55202:67;55266:2;55261:3;55202:67;:::i;:::-;55195:74;;55278:93;55367:3;55278:93;:::i;:::-;55396:2;55391:3;55387:12;55380:19;;55039:366;;;:::o;55411:419::-;55577:4;55615:2;55604:9;55600:18;55592:26;;55664:9;55658:4;55654:20;55650:1;55639:9;55635:17;55628:47;55692:131;55818:4;55692:131;:::i;:::-;55684:139;;55411:419;;;:::o;55836:348::-;55876:7;55899:20;55917:1;55899:20;:::i;:::-;55894:25;;55933:20;55951:1;55933:20;:::i;:::-;55928:25;;56121:1;56053:66;56049:74;56046:1;56043:81;56038:1;56031:9;56024:17;56020:105;56017:131;;;56128:18;;:::i;:::-;56017:131;56176:1;56173;56169:9;56158:20;;55836:348;;;;:::o;56190:171::-;56229:3;56252:24;56270:5;56252:24;:::i;:::-;56243:33;;56298:4;56291:5;56288:15;56285:41;;56306:18;;:::i;:::-;56285:41;56353:1;56346:5;56342:13;56335:20;;56190:171;;;:::o;56367:182::-;56507:34;56503:1;56495:6;56491:14;56484:58;56367:182;:::o;56555:366::-;56697:3;56718:67;56782:2;56777:3;56718:67;:::i;:::-;56711:74;;56794:93;56883:3;56794:93;:::i;:::-;56912:2;56907:3;56903:12;56896:19;;56555:366;;;:::o;56927:419::-;57093:4;57131:2;57120:9;57116:18;57108:26;;57180:9;57174:4;57170:20;57166:1;57155:9;57151:17;57144:47;57208:131;57334:4;57208:131;:::i;:::-;57200:139;;56927:419;;;:::o;57352:751::-;57575:4;57613:3;57602:9;57598:19;57590:27;;57627:71;57695:1;57684:9;57680:17;57671:6;57627:71;:::i;:::-;57708:72;57776:2;57765:9;57761:18;57752:6;57708:72;:::i;:::-;57790;57858:2;57847:9;57843:18;57834:6;57790:72;:::i;:::-;57872;57940:2;57929:9;57925:18;57916:6;57872:72;:::i;:::-;57992:9;57986:4;57982:20;57976:3;57965:9;57961:19;57954:49;58020:76;58091:4;58082:6;58020:76;:::i;:::-;58012:84;;57352:751;;;;;;;;:::o;58109:231::-;58249:34;58245:1;58237:6;58233:14;58226:58;58318:14;58313:2;58305:6;58301:15;58294:39;58109:231;:::o;58346:366::-;58488:3;58509:67;58573:2;58568:3;58509:67;:::i;:::-;58502:74;;58585:93;58674:3;58585:93;:::i;:::-;58703:2;58698:3;58694:12;58687:19;;58346:366;;;:::o;58718:419::-;58884:4;58922:2;58911:9;58907:18;58899:26;;58971:9;58965:4;58961:20;58957:1;58946:9;58942:17;58935:47;58999:131;59125:4;58999:131;:::i;:::-;58991:139;;58718:419;;;:::o;59143:191::-;59183:4;59203:20;59221:1;59203:20;:::i;:::-;59198:25;;59237:20;59255:1;59237:20;:::i;:::-;59232:25;;59276:1;59273;59270:8;59267:34;;;59281:18;;:::i;:::-;59267:34;59326:1;59323;59319:9;59311:17;;59143:191;;;;:::o;59340:180::-;59388:77;59385:1;59378:88;59485:4;59482:1;59475:15;59509:4;59506:1;59499:15

Swarm Source

ipfs://6ea1e03439c6aff45a1f087ea0a42edf04d207ce82762ae690a7fdb2c2e2e610
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.