Bitcoin Core Fuzz Coverage Report

Coverage Report

Created: 2026-03-24 13:57

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/bitcoin/src/util/strencodings.h
Line
Count
Source
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
2
// Copyright (c) 2009-present The Bitcoin Core developers
3
// Distributed under the MIT software license, see the accompanying
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6
/**
7
 * Utilities for converting data from/to strings.
8
 */
9
#ifndef BITCOIN_UTIL_STRENCODINGS_H
10
#define BITCOIN_UTIL_STRENCODINGS_H
11
12
#include <crypto/hex_base.h>
13
#include <span.h>
14
#include <util/string.h>
15
16
#include <algorithm>
17
#include <array>
18
#include <bit>
19
#include <charconv>
20
#include <cstddef>
21
#include <cstdint>
22
#include <limits>
23
#include <optional>
24
#include <string>
25
#include <string_view>
26
#include <system_error>
27
#include <type_traits>
28
#include <vector>
29
30
/** Used by SanitizeString() */
31
enum SafeChars
32
{
33
    SAFE_CHARS_DEFAULT, //!< The full set of allowed chars
34
    SAFE_CHARS_UA_COMMENT, //!< BIP-0014 subset
35
    SAFE_CHARS_FILENAME, //!< Chars allowed in filenames
36
    SAFE_CHARS_URI, //!< Chars allowed in URIs (RFC 3986)
37
};
38
39
/**
40
 * Used by ParseByteUnits()
41
 * Lowercase base 1000
42
 * Uppercase base 1024
43
*/
44
enum class ByteUnit : uint64_t {
45
    NOOP = 1ULL,
46
    k = 1000ULL,
47
    K = 1024ULL,
48
    m = 1'000'000ULL,
49
    M = 1ULL << 20,
50
    g = 1'000'000'000ULL,
51
    G = 1ULL << 30,
52
    t = 1'000'000'000'000ULL,
53
    T = 1ULL << 40,
54
};
55
56
/**
57
* Remove unsafe chars. Safe chars chosen to allow simple messages/URLs/email
58
* addresses, but avoid anything even possibly remotely dangerous like & or >
59
* @param[in] str    The string to sanitize
60
* @param[in] rule   The set of safe chars to choose (default: least restrictive)
61
* @return           A new string without unsafe chars
62
*/
63
std::string SanitizeString(std::string_view str, int rule = SAFE_CHARS_DEFAULT);
64
/** Parse the hex string into bytes (uint8_t or std::byte). Ignores whitespace. Returns nullopt on invalid input. */
65
template <typename Byte = std::byte>
66
std::optional<std::vector<Byte>> TryParseHex(std::string_view str);
67
/** Like TryParseHex, but returns an empty vector on invalid input. */
68
template <typename Byte = uint8_t>
69
std::vector<Byte> ParseHex(std::string_view hex_str)
70
0
{
71
0
    return TryParseHex<Byte>(hex_str).value_or(std::vector<Byte>{});
72
0
}
Unexecuted instantiation: std::vector<unsigned char, std::allocator<unsigned char> > ParseHex<unsigned char>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: std::vector<std::byte, std::allocator<std::byte> > ParseHex<std::byte>(std::basic_string_view<char, std::char_traits<char> >)
73
/* Returns true if each character in str is a hex character, and has an even
74
 * number of hex digits.*/
75
bool IsHex(std::string_view str);
76
std::optional<std::vector<unsigned char>> DecodeBase64(std::string_view str);
77
std::string EncodeBase64(std::span<const unsigned char> input);
78
0
inline std::string EncodeBase64(std::span<const std::byte> input) { return EncodeBase64(MakeUCharSpan(input)); }
79
0
inline std::string EncodeBase64(std::string_view str) { return EncodeBase64(MakeUCharSpan(str)); }
80
std::optional<std::vector<unsigned char>> DecodeBase32(std::string_view str);
81
82
/**
83
 * Base32 encode.
84
 * If `pad` is true, then the output will be padded with '=' so that its length
85
 * is a multiple of 8.
86
 */
87
std::string EncodeBase32(std::span<const unsigned char> input, bool pad = true);
88
89
/**
90
 * Base32 encode.
91
 * If `pad` is true, then the output will be padded with '=' so that its length
92
 * is a multiple of 8.
93
 */
94
std::string EncodeBase32(std::string_view str, bool pad = true);
95
96
/**
97
 * Splits socket address string into host string and port value.
98
 * Validates port value.
99
 *
100
 * @param[in] in        The socket address string to split.
101
 * @param[out] portOut  Port-portion of the input, if found and parsable.
102
 * @param[out] hostOut  Host-portion of the input, if found.
103
 * @return              true if port-portion is absent or within its allowed range, otherwise false
104
 */
105
bool SplitHostPort(std::string_view in, uint16_t& portOut, std::string& hostOut);
106
107
// LocaleIndependentAtoi is provided for backwards compatibility reasons.
108
//
109
// New code should use ToIntegral.
110
//
111
// The goal of LocaleIndependentAtoi is to replicate the defined behaviour of
112
// std::atoi as it behaves under the "C" locale, and remove some undefined
113
// behavior. If the parsed value is bigger than the integer type's maximum
114
// value, or smaller than the integer type's minimum value, std::atoi has
115
// undefined behavior, while this function returns the maximum or minimum
116
// values, respectively.
117
template <typename T>
118
T LocaleIndependentAtoi(std::string_view str)
119
0
{
120
0
    static_assert(std::is_integral_v<T>);
121
0
    T result;
122
    // Emulate atoi(...) handling of white space and leading +/-.
123
0
    std::string_view s = util::TrimStringView(str);
124
0
    if (!s.empty() && s[0] == '+') {
125
0
        if (s.length() >= 2 && s[1] == '-') {
126
0
            return 0;
127
0
        }
128
0
        s = s.substr(1);
129
0
    }
130
0
    auto [_, error_condition] = std::from_chars(s.data(), s.data() + s.size(), result);
131
0
    if (error_condition == std::errc::result_out_of_range) {
132
0
        if (s.length() >= 1 && s[0] == '-') {
133
            // Saturate underflow, per strtoll's behavior.
134
0
            return std::numeric_limits<T>::min();
135
0
        } else {
136
            // Saturate overflow, per strtoll's behavior.
137
0
            return std::numeric_limits<T>::max();
138
0
        }
139
0
    } else if (error_condition != std::errc{}) {
140
0
        return 0;
141
0
    }
142
0
    return result;
143
0
}
Unexecuted instantiation: int LocaleIndependentAtoi<int>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: long LocaleIndependentAtoi<long>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: signed char LocaleIndependentAtoi<signed char>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: unsigned char LocaleIndependentAtoi<unsigned char>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: short LocaleIndependentAtoi<short>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: unsigned short LocaleIndependentAtoi<unsigned short>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: unsigned int LocaleIndependentAtoi<unsigned int>(std::basic_string_view<char, std::char_traits<char> >)
Unexecuted instantiation: unsigned long LocaleIndependentAtoi<unsigned long>(std::basic_string_view<char, std::char_traits<char> >)
144
145
/**
146
 * Tests if the given character is a decimal digit.
147
 * @param[in] c     character to test
148
 * @return          true if the argument is a decimal digit; otherwise false.
149
 */
150
constexpr bool IsDigit(char c)
151
0
{
152
0
    return c >= '0' && c <= '9';
153
0
}
154
155
/**
156
 * Tests if the given character is a whitespace character. The whitespace characters
157
 * are: space, form-feed ('\f'), newline ('\n'), carriage return ('\r'), horizontal
158
 * tab ('\t'), and vertical tab ('\v').
159
 *
160
 * This function is locale independent. Under the C locale this function gives the
161
 * same result as std::isspace.
162
 *
163
 * @param[in] c     character to test
164
 * @return          true if the argument is a whitespace character; otherwise false
165
 */
166
0
constexpr inline bool IsSpace(char c) noexcept {
167
0
    return c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == '\v';
168
0
}
169
170
/**
171
 * Convert string to integral type T. Leading whitespace, a leading +, or any
172
 * trailing character fail the parsing. The required format expressed as regex
173
 * is `-?[0-9]+` by default (or `-?[0-9a-fA-F]+` if base = 16).
174
 * The minus sign is only permitted for signed integer types.
175
 *
176
 * @returns std::nullopt if the entire string could not be parsed, or if the
177
 *   parsed value is not in the range representable by the type T.
178
 */
179
template <typename T>
180
std::optional<T> ToIntegral(std::string_view str, size_t base = 10)
181
48.2k
{
182
48.2k
    static_assert(std::is_integral_v<T>);
183
48.2k
    T result;
184
48.2k
    const auto [first_nonmatching, error_condition] = std::from_chars(str.data(), str.data() + str.size(), result, base);
185
48.2k
    if (first_nonmatching != str.data() + str.size() || 
error_condition != std::errc{}48.0k
) {
186
367
        return std::nullopt;
187
367
    }
188
47.8k
    return result;
189
48.2k
}
Unexecuted instantiation: std::optional<long> ToIntegral<long>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
Unexecuted instantiation: std::optional<signed char> ToIntegral<signed char>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
std::optional<unsigned char> ToIntegral<unsigned char>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
Line
Count
Source
181
48.2k
{
182
48.2k
    static_assert(std::is_integral_v<T>);
183
48.2k
    T result;
184
48.2k
    const auto [first_nonmatching, error_condition] = std::from_chars(str.data(), str.data() + str.size(), result, base);
185
48.2k
    if (first_nonmatching != str.data() + str.size() || 
error_condition != std::errc{}48.0k
) {
186
367
        return std::nullopt;
187
367
    }
188
47.8k
    return result;
189
48.2k
}
Unexecuted instantiation: std::optional<short> ToIntegral<short>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
Unexecuted instantiation: std::optional<unsigned short> ToIntegral<unsigned short>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
Unexecuted instantiation: std::optional<int> ToIntegral<int>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
Unexecuted instantiation: std::optional<unsigned int> ToIntegral<unsigned int>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
Unexecuted instantiation: std::optional<unsigned long> ToIntegral<unsigned long>(std::basic_string_view<char, std::char_traits<char> >, unsigned long)
190
191
/**
192
 * Format a paragraph of text to a fixed width, adding spaces for
193
 * indentation to any added line.
194
 */
195
std::string FormatParagraph(std::string_view in, size_t width = 79, size_t indent = 0);
196
197
/**
198
 * Timing-attack-resistant comparison.
199
 * Takes time proportional to length
200
 * of first argument.
201
 */
202
template <typename T>
203
bool TimingResistantEqual(const T& a, const T& b)
204
0
{
205
0
    if (b.size() == 0) return a.size() == 0;
206
0
    size_t accumulator = a.size() ^ b.size();
207
0
    for (size_t i = 0; i < a.size(); i++)
208
0
        accumulator |= size_t(a[i] ^ b[i%b.size()]);
209
0
    return accumulator == 0;
210
0
}
Unexecuted instantiation: bool TimingResistantEqual<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
Unexecuted instantiation: bool TimingResistantEqual<std::basic_string_view<char, std::char_traits<char> > >(std::basic_string_view<char, std::char_traits<char> > const&, std::basic_string_view<char, std::char_traits<char> > const&)
211
212
/** Parse number as fixed point according to JSON number syntax.
213
 * @returns true on success, false on error.
214
 * @note The result must be in the range (-10^18,10^18), otherwise an overflow error will trigger.
215
 */
216
[[nodiscard]] bool ParseFixedPoint(std::string_view, int decimals, int64_t *amount_out);
217
218
namespace {
219
/** Helper class for the default infn argument to ConvertBits (just returns the input). */
220
struct IntIdentity
221
{
222
0
    [[maybe_unused]] int operator()(int x) const { return x; }
Unexecuted instantiation: addition_overflow.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: addrman.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: asmap.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: asmap_direct.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: autofile.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: banman.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: base_encode_decode.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bech32.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bip324.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bitdeque.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bitset.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: block.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: block_header.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: block_index.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: block_index_tree.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: blockfilter.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bloom_filter.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: buffered_file.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: chain.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: checkqueue.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: cluster_linearize.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coins_view.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coinscache_sim.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: connman.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_aes256.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_aes256cbc.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_chacha20.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_chacha20poly1305.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_common.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypto_poly1305.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: cuckoocache.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: decode_tx.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: descriptor_parse.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: deserialize.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: difference_formatter.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: eval_script.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: feefrac.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: fee_rate.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: feeratediagram.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: fees.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: flatfile.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: float.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: golomb_rice.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: headerssync.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: hex.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: http_request.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: i2p.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: integer.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: key.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: key_io.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: kitchen_sink.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: load_external_block_file.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: locale.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: merkle.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: merkleblock.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: message.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: miniscript.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: minisketch.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: mini_miner.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: muhash.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: multiplication_overflow.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: net.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: net_permissions.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: netaddress.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: netbase_dns_lookup.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: node_eviction.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: p2p_handshake.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: p2p_headers_presync.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: p2p_transport_serialization.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: pcp.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: package_eval.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: parse_hd_keypath.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: parse_numbers.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: parse_script.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: parse_univalue.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: partially_downloaded_block.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: policy_estimator.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: policy_estimator_io.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: poolresource.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: pow.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: prevector.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: primitives_transaction.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: process_message.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: process_messages.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: protocol.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: psbt.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: random.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: rbf.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: rolling_bloom_filter.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: rpc.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_assets_test_minimizer.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_descriptor_cache.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_flags.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_format.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_interpreter.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_ops.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_sigcache.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: script_sign.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: scriptnum_ops.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: signature_checker.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: signet.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: socks5.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: span.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: string.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: strprintf.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: system.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: timeoffsets.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: torcontrol.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: transaction.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txdownloadman.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: tx_in.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: tx_out.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: tx_pool.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txgraph.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txorphan.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txrequest.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: utxo_snapshot.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: utxo_total_supply.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: validation_load_mempool.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: vecdeque.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: versionbits.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coincontrol.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coinselection.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: crypter.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: scriptpubkeyman.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: spend.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: wallet_bdb_parser.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: descriptor.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: mempool.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: threadinterrupt.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: fuzz.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: util.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: check_globals.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: addresstype.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: base58.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: chainparams.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coins.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bloom.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: messages.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: signmessage.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: compressor.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: core_io.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: deploymentinfo.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: musig.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: netbase.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: outputtype.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: policy.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: request.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: sign.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: signingprovider.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: solver.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bip32.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: bytevectorhash.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: hasher.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: moneystr.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: strencodings.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: time.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: streams.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: dump.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: migrate.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: wallet.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: walletdb.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: walletutil.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: db.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: interfaces.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: load.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: receive.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: sqlite.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: feebumper.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: addresses.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: backup.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: encrypt.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: transactions.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: mining.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: setup_common.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: transaction_utils.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txmempool.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: validation.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: addrdb.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: blockencodings.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: tx_verify.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: dbwrapper.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: httpserver.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: init.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: checks.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coinstats.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: context.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: mapport.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: net_processing.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: netgroup.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: blockmanager_args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: blockstorage.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: caches.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: chainstate.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: chainstatemanager_args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coins_view_args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: database_args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: eviction.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: kernel_notifications.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: mempool_args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: mempool_persist.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: mempool_persist_args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: miner.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: peerman_args.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txdownloadman_impl.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txorphanage.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txreconciliation.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: block_policy_estimator.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: packages.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: settings.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: private_broadcast.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: rest.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: blockchain.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: node.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: output_script.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: rawtransaction.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: server.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: server_util.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txoutproof.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: sigcache.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txdb.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: validationinterface.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: httprpc.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: base.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: blockfilterindex.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coinstatsindex.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txindex.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: txospenderindex.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: disconnected_transactions.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: coin.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: ephemeral_policy.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: truc_policy.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: netif.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: external_signer.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: net_types.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: rawtransaction_util.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: arith_uint256.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: tx_check.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: hash.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: pubkey.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: interpreter.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: uint256.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
Unexecuted instantiation: siphash.cpp:(anonymous namespace)::IntIdentity::operator()(int) const
223
};
224
225
} // namespace
226
227
/** Convert from one power-of-2 number base to another. */
228
template<int frombits, int tobits, bool pad, typename O, typename It, typename I = IntIdentity>
229
0
bool ConvertBits(O outfn, It it, It end, I infn = {}) {
230
0
    size_t acc = 0;
231
0
    size_t bits = 0;
232
0
    constexpr size_t maxv = (1 << tobits) - 1;
233
0
    constexpr size_t max_acc = (1 << (frombits + tobits - 1)) - 1;
234
0
    while (it != end) {
235
0
        int v = infn(*it);
236
0
        if (v < 0) return false;
237
0
        acc = ((acc << frombits) | v) & max_acc;
238
0
        bits += frombits;
239
0
        while (bits >= tobits) {
240
0
            bits -= tobits;
241
0
            outfn((acc >> bits) & maxv);
242
0
        }
243
0
        ++it;
244
0
    }
245
0
    if (pad) {
246
0
        if (bits) outfn((acc << (tobits - bits)) & maxv);
247
0
    } else if (bits >= frombits || ((acc << (tobits - bits)) & maxv)) {
248
0
        return false;
249
0
    }
250
0
    return true;
251
0
}
Unexecuted instantiation: bech32.cpp:bool ConvertBits<8, 5, true, bech32_roundtrip_fuzz_target(std::span<unsigned char const, 18446744073709551615ul>)::$_0, __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >, (anonymous namespace)::IntIdentity>(bech32_roundtrip_fuzz_target(std::span<unsigned char const, 18446744073709551615ul>)::$_0, __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: key_io.cpp:bool ConvertBits<8, 5, true, (anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessV0ScriptHash const&) const::'lambda'(unsigned char), unsigned char const*, (anonymous namespace)::IntIdentity>((anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessV0ScriptHash const&) const::'lambda'(unsigned char), unsigned char const*, unsigned char const*, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: key_io.cpp:bool ConvertBits<8, 5, true, (anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessV0KeyHash const&) const::'lambda'(unsigned char), unsigned char const*, (anonymous namespace)::IntIdentity>((anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessV0KeyHash const&) const::'lambda'(unsigned char), unsigned char const*, unsigned char const*, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: key_io.cpp:bool ConvertBits<8, 5, true, (anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessV1Taproot const&) const::'lambda'(unsigned char), unsigned char const*, (anonymous namespace)::IntIdentity>((anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessV1Taproot const&) const::'lambda'(unsigned char), unsigned char const*, unsigned char const*, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: key_io.cpp:bool ConvertBits<8, 5, true, (anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessUnknown const&) const::'lambda'(unsigned char), __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >, (anonymous namespace)::IntIdentity>((anonymous namespace)::DestinationEncoder::operator()[abi:cxx11](WitnessUnknown const&) const::'lambda'(unsigned char), __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: key_io.cpp:bool ConvertBits<5, 8, false, (anonymous namespace)::DecodeDestination(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CChainParams const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::vector<int, std::allocator<int> >*)::$_0, __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >, (anonymous namespace)::IntIdentity>((anonymous namespace)::DecodeDestination(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CChainParams const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::vector<int, std::allocator<int> >*)::$_0, __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: strencodings.cpp:bool ConvertBits<8, 6, true, EncodeBase64[abi:cxx11](std::span<unsigned char const, 18446744073709551615ul>)::$_0, __gnu_cxx::__normal_iterator<unsigned char const*, std::span<unsigned char const, 18446744073709551615ul> >, (anonymous namespace)::IntIdentity>(EncodeBase64[abi:cxx11](std::span<unsigned char const, 18446744073709551615ul>)::$_0, __gnu_cxx::__normal_iterator<unsigned char const*, std::span<unsigned char const, 18446744073709551615ul> >, __gnu_cxx::__normal_iterator<unsigned char const*, std::span<unsigned char const, 18446744073709551615ul> >, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: strencodings.cpp:bool ConvertBits<6, 8, false, DecodeBase64(std::basic_string_view<char, std::char_traits<char> >)::$_0, char const*, DecodeBase64(std::basic_string_view<char, std::char_traits<char> >)::$_1>(DecodeBase64(std::basic_string_view<char, std::char_traits<char> >)::$_0, char const*, char const*, DecodeBase64(std::basic_string_view<char, std::char_traits<char> >)::$_1)
Unexecuted instantiation: strencodings.cpp:bool ConvertBits<8, 5, true, EncodeBase32[abi:cxx11](std::span<unsigned char const, 18446744073709551615ul>, bool)::$_0, __gnu_cxx::__normal_iterator<unsigned char const*, std::span<unsigned char const, 18446744073709551615ul> >, (anonymous namespace)::IntIdentity>(EncodeBase32[abi:cxx11](std::span<unsigned char const, 18446744073709551615ul>, bool)::$_0, __gnu_cxx::__normal_iterator<unsigned char const*, std::span<unsigned char const, 18446744073709551615ul> >, __gnu_cxx::__normal_iterator<unsigned char const*, std::span<unsigned char const, 18446744073709551615ul> >, (anonymous namespace)::IntIdentity)
Unexecuted instantiation: strencodings.cpp:bool ConvertBits<5, 8, false, DecodeBase32(std::basic_string_view<char, std::char_traits<char> >)::$_0, char const*, DecodeBase32(std::basic_string_view<char, std::char_traits<char> >)::$_1>(DecodeBase32(std::basic_string_view<char, std::char_traits<char> >)::$_0, char const*, char const*, DecodeBase32(std::basic_string_view<char, std::char_traits<char> >)::$_1)
252
253
/**
254
 * Converts the given character to its lowercase equivalent.
255
 * This function is locale independent. It only converts uppercase
256
 * characters in the standard 7-bit ASCII range.
257
 * This is a feature, not a limitation.
258
 *
259
 * @param[in] c     the character to convert to lowercase.
260
 * @return          the lowercase equivalent of c; or the argument
261
 *                  if no conversion is possible.
262
 */
263
constexpr char ToLower(char c)
264
0
{
265
0
    return (c >= 'A' && c <= 'Z' ? (c - 'A') + 'a' : c);
266
0
}
267
268
/**
269
 * Returns the lowercase equivalent of the given string.
270
 * This function is locale independent. It only converts uppercase
271
 * characters in the standard 7-bit ASCII range.
272
 * This is a feature, not a limitation.
273
 *
274
 * @param[in] str   the string to convert to lowercase.
275
 * @returns         lowercased equivalent of str
276
 */
277
std::string ToLower(std::string_view str);
278
279
/**
280
 * Converts the given character to its uppercase equivalent.
281
 * This function is locale independent. It only converts lowercase
282
 * characters in the standard 7-bit ASCII range.
283
 * This is a feature, not a limitation.
284
 *
285
 * @param[in] c     the character to convert to uppercase.
286
 * @return          the uppercase equivalent of c; or the argument
287
 *                  if no conversion is possible.
288
 */
289
constexpr char ToUpper(char c)
290
0
{
291
0
    return (c >= 'a' && c <= 'z' ? (c - 'a') + 'A' : c);
292
0
}
293
294
/**
295
 * Returns the uppercase equivalent of the given string.
296
 * This function is locale independent. It only converts lowercase
297
 * characters in the standard 7-bit ASCII range.
298
 * This is a feature, not a limitation.
299
 *
300
 * @param[in] str   the string to convert to uppercase.
301
 * @returns         UPPERCASED EQUIVALENT OF str
302
 */
303
std::string ToUpper(std::string_view str);
304
305
/**
306
 * Capitalizes the first character of the given string.
307
 * This function is locale independent. It only converts lowercase
308
 * characters in the standard 7-bit ASCII range.
309
 * This is a feature, not a limitation.
310
 *
311
 * @param[in] str   the string to capitalize.
312
 * @returns         string with the first letter capitalized.
313
 */
314
std::string Capitalize(std::string str);
315
316
/**
317
 * Parse a string with suffix unit [k|K|m|M|g|G|t|T].
318
 * Must be a whole integer, fractions not allowed (0.5t), no whitespace or +-
319
 * Lowercase units are 1000 base. Uppercase units are 1024 base.
320
 * Examples: 2m,27M,19g,41T
321
 *
322
 * @param[in] str                  the string to convert into bytes
323
 * @param[in] default_multiplier   if no unit is found in str use this unit
324
 * @returns                        optional uint64_t bytes from str or nullopt
325
 *                                 if ToIntegral is false, str is empty, trailing whitespace or overflow
326
 */
327
std::optional<uint64_t> ParseByteUnits(std::string_view str, ByteUnit default_multiplier);
328
329
/**
330
 *  Locale-independent, ASCII-only comparator
331
 *  @param[in] s1 a string to compare
332
 *  @param[in] s2 another string to compare
333
 *  @returns true if s1 == s2 when both strings are converted to lowercase
334
 */
335
bool CaseInsensitiveEqual(std::string_view s1, std::string_view s2);
336
337
namespace util {
338
/** consteval version of HexDigit() without the lookup table. */
339
consteval uint8_t ConstevalHexDigit(const char c)
340
{
341
    if (c >= '0' && c <= '9') return c - '0';
342
    if (c >= 'a' && c <= 'f') return c - 'a' + 0xa;
343
344
    throw "Only lowercase hex digits are allowed, for consistency";
345
}
346
347
namespace detail {
348
template <size_t N>
349
struct Hex {
350
    std::array<std::byte, N / 2> bytes{};
351
    consteval Hex(const char (&hex_str)[N])
352
        // 2 hex digits required per byte + implicit null terminator
353
        requires(N % 2 == 1)
354
    {
355
        if (hex_str[N - 1]) throw "null terminator required";
356
        for (std::size_t i = 0; i < bytes.size(); ++i) {
357
            bytes[i] = static_cast<std::byte>(
358
                (ConstevalHexDigit(hex_str[2 * i]) << 4) |
359
                 ConstevalHexDigit(hex_str[2 * i + 1]));
360
        }
361
    }
362
};
363
} // namespace detail
364
365
/**
366
 * ""_hex is a compile-time user-defined literal returning a
367
 * `std::array<std::byte>`, equivalent to ParseHex(). Variants provided:
368
 *
369
 * - ""_hex_v: Returns `std::vector<std::byte>`, useful for heap allocation or
370
 *   variable-length serialization.
371
 *
372
 * - ""_hex_u8: Returns `std::array<uint8_t>`, for cases where `std::byte` is
373
 *   incompatible.
374
 *
375
 * - ""_hex_v_u8: Returns `std::vector<uint8_t>`, combining heap allocation with
376
 *   `uint8_t`.
377
 *
378
 * @warning It could be necessary to use vector instead of array variants when
379
 *   serializing, or vice versa, because vectors are assumed to be variable-
380
 *   length and serialized with a size prefix, while arrays are considered fixed
381
 *   length and serialized with no prefix.
382
 *
383
 * @warning It may be preferable to use vector variants to save stack space when
384
 *   declaring local variables if hex strings are large. Alternatively variables
385
 *   could be declared constexpr to avoid using stack space.
386
 *
387
 * @warning Avoid `uint8_t` variants when not necessary, as the codebase
388
 *   migrates to use `std::byte` instead of `unsigned char` and `uint8_t`.
389
 *
390
 * @note One reason ""_hex uses `std::array` instead of `std::vector` like
391
 *   ParseHex() does is because heap-based containers cannot cross the compile-
392
 *   time/runtime barrier.
393
 */
394
inline namespace hex_literals {
395
396
template <util::detail::Hex str>
397
0
constexpr auto operator""_hex() { return str.bytes; }
Unexecuted instantiation: _ZN4util12hex_literalsli4_hexITnNS_6detail3HexEXtlNS3_ILm131EEEtlSt5arrayISt4byteLm65EEtlA65_S6_LS6_4ELS6_103ELS6_138ELS6_253ELS6_176ELS6_254ELS6_85ELS6_72ELS6_39ELS6_25ELS6_103ELS6_241ELS6_166ELS6_113ELS6_48ELS6_183ELS6_16ELS6_92ELS6_214ELS6_168ELS6_40ELS6_224ELS6_57ELS6_9ELS6_166ELS6_121ELS6_98ELS6_224ELS6_234ELS6_31ELS6_97ELS6_222ELS6_182ELS6_73ELS6_246ELS6_188ELS6_63ELS6_76ELS6_239ELS6_56ELS6_196ELS6_243ELS6_85ELS6_4ELS6_229ELS6_30ELS6_193ELS6_18ELS6_222ELS6_92ELS6_56ELS6_77ELS6_247ELS6_186ELS6_11ELS6_141ELS6_87ELS6_138ELS6_76ELS6_112ELS6_43ELS6_107ELS6_241ELS6_29ELS6_95EEEEEEEDav
Unexecuted instantiation: _ZN4util12hex_literalsli4_hexITnNS_6detail3HexEXtlNS3_ILm67EEEEEEEDav
Unexecuted instantiation: _ZN4util12hex_literalsli4_hexITnNS_6detail3HexEXtlNS3_ILm6109EEEtlSt5arrayISt4byteLm3054EEtlA3054_S6_LS6_1ELS6_0ELS6_0ELS6_0ELS6_144ELS6_240ELS6_169ELS6_241ELS6_16ELS6_112ELS6_47ELS6_128ELS6_130ELS6_25ELS6_235ELS6_234ELS6_17ELS6_115ELS6_5ELS6_96ELS6_66ELS6_167ELS6_20ELS6_186ELS6_213ELS6_27ELS6_145ELS6_108ELS6_182ELS6_128ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_82ELS6_117ELS6_40ELS6_149ELS6_88ELS6_245ELS6_28ELS6_153ELS6_102ELS6_105ELS6_148ELS6_4ELS6_174ELS6_34ELS6_148ELS6_115ELS6_12ELS6_60ELS6_159ELS6_155ELS6_218ELS6_83ELS6_82ELS6_60ELS6_229ELS6_14ELS6_155ELS6_149ELS6_229ELS6_88ELS6_218ELS6_47ELS6_219ELS6_38ELS6_27ELS6_77ELS6_76ELS6_134ELS6_4ELS6_27ELS6_26ELS6_177ELS6_191ELS6_147ELS6_9ELS6_1ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_255ELS6_255ELS6_255ELS6_255ELS6_7ELS6_4ELS6_76ELS6_134ELS6_4ELS6_27ELS6_1ELS6_70ELS6_255ELS6_255ELS6_255ELS6_255ELS6_1ELS6_0ELS6_242ELS6_5ELS6_42ELS6_1ELS6_0ELS6_0ELS6_0ELS6_67ELS6_65ELS6_4ELS6_225ELS6_143ELS6_122ELS6_251ELS6_228ELS6_114ELS6_21ELS6_128ELS6_232ELS6_30ELS6_132ELS6_20ELS6_252ELS6_140ELS6_36ELS6_215ELS6_207ELS6_172ELS6_242ELS6_84ELS6_187ELS6_92ELS6_123ELS6_148ELS6_148ELS6_80ELS6_195ELS6_233ELS6_151ELS6_194ELS6_220ELS6_18ELS6_66ELS6_72ELS6_122ELS6_129ELS6_105ELS6_80ELS6_123ELS6_99ELS6_30ELS6_179ELS6_119ELS6_31ELS6_43ELS6_66ELS6_84ELS6_131ELS6_251ELS6_19ELS6_16ELS6_44ELS6_78ELS6_181ELS6_216ELS6_88ELS6_238ELS6_242ELS6_96ELS6_254ELS6_112ELS6_251ELS6_250ELS6_224ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_1ELS6_150ELS6_96ELS6_140ELS6_203ELS6_175ELS6_161ELS6_106ELS6_186ELS6_218ELS6_144ELS6_39ELS6_128ELS6_218ELS6_77ELS6_195ELS6_93ELS6_175ELS6_215ELS6_175ELS6_5ELS6_250ELS6_13ELS6_160ELS6_140ELS6_248ELS6_51ELS6_87ELS6_95ELS6_140ELS6_249ELS6_232ELS6_54ELS6_0ELS6_0ELS6_0ELS6_0ELS6_74ELS6_73ELS6_48ELS6_70ELS6_2ELS6_33ELS6_0ELS6_218ELS6_178ELS6_72ELS6_137ELS6_33ELS6_60ELS6_175ELS6_67ELS6_174ELS6_106ELS6_220ELS6_65ELS6_207ELS6_28ELS6_147ELS6_150ELS6_192ELS6_130ELS6_64ELS6_193ELS6_153ELS6_245ELS6_34ELS6_90ELS6_207ELS6_69ELS6_65ELS6_99ELS6_48ELS6_253ELS6_125ELS6_189ELS6_2ELS6_33ELS6_0ELS6_254ELS6_55ELS6_144ELS6_14ELS6_6ELS6_68ELS6_191ELS6_87ELS6_68ELS6_147ELS6_160ELS6_127ELS6_197ELS6_237ELS6_186ELS6_6ELS6_219ELS6_192ELS6_124ELS6_49ELS6_27ELS6_148ELS6_117ELS6_32ELS6_194ELS6_213ELS6_20ELS6_188ELS6_87ELS6_37ELS6_220ELS6_180ELS6_1ELS6_255ELS6_255ELS6_255ELS6_255ELS6_1ELS6_0ELS6_242ELS6_5ELS6_42ELS6_1ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_241ELS6_93ELS6_25ELS6_33ELS6_245ELS6_46ELS6_64ELS6_7ELS6_177ELS6_70ELS6_223ELS6_166ELS6_15ELS6_54ELS6_158ELS6_210ELS6_252ELS6_57ELS6_60ELS6_226ELS6_136ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_1ELS6_251ELS6_118ELS6_108ELS6_18ELS6_136ELS6_69ELS6_140ELS6_43ELS6_175ELS6_207ELS6_236ELS6_129ELS6_228ELS6_139ELS6_36ELS6_217ELS6_142ELS6_199ELS6_6ELS6_222ELS6_107ELS6_138ELS6_247ELS6_196ELS6_227ELS6_194ELS6_148ELS6_25ELS6_191ELS6_172ELS6_181ELS6_109ELS6_0ELS6_0ELS6_0ELS6_0ELS6_140ELS6_73ELS6_48ELS6_70ELS6_2ELS6_33ELS6_0ELS6_242ELS6_104ELS6_186ELS6_22ELS6_92ELS6_224ELS6_173ELS6_46ELS6_109ELS6_147ELS6_240ELS6_137ELS6_207ELS6_205ELS6_55ELS6_133ELS6_222ELS6_92ELS6_150ELS6_59ELS6_181ELS6_234ELS6_107ELS6_140ELS6_27ELS6_35ELS6_241ELS6_206ELS6_62ELS6_81ELS6_123ELS6_159ELS6_2ELS6_33ELS6_0ELS6_218ELS6_124ELS6_15ELS6_33ELS6_173ELS6_198ELS6_196ELS6_1ELS6_136ELS6_127ELS6_43ELS6_253ELS6_25ELS6_34ELS6_241ELS6_29ELS6_118ELS6_21ELS6_156ELS6_188ELS6_89ELS6_127ELS6_189ELS6_117ELS6_106ELS6_35ELS6_220ELS6_187ELS6_0ELS6_244ELS6_215ELS6_41ELS6_1ELS6_65ELS6_4ELS6_43ELS6_78ELS6_134ELS6_37ELS6_169ELS6_97ELS6_39ELS6_130ELS6_105ELS6_21ELS6_165ELS6_177ELS6_9ELS6_133ELS6_38ELS6_54ELS6_173ELS6_13ELS6_167ELS6_83ELS6_201ELS6_225ELS6_213ELS6_96ELS6_106ELS6_80ELS6_72ELS6_12ELS6_208ELS6_196ELS6_15ELS6_31ELS6_139ELS6_141ELS6_137ELS6_130ELS6_53ELS6_229ELS6_113ELS6_254ELS6_147ELS6_87ELS6_217ELS6_236ELS6_132ELS6_43ELS6_196ELS6_187ELS6_161ELS6_130ELS6_125ELS6_170ELS6_244ELS6_222ELS6_6ELS6_215ELS6_24ELS6_68ELS6_208ELS6_5ELS6_119ELS6_7ELS6_150ELS6_106ELS6_255ELS6_255ELS6_255ELS6_255ELS6_2ELS6_128ELS6_150ELS6_152ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_105ELS6_99ELS6_144ELS6_117ELS6_49ELS6_219ELS6_114ELS6_208ELS6_237ELS6_26ELS6_12ELS6_251ELS6_71ELS6_28ELS6_203ELS6_99ELS6_146ELS6_52ELS6_70ELS6_243ELS6_136ELS6_172ELS6_128ELS6_214ELS6_227ELS6_76ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_240ELS6_104ELS6_139ELS6_161ELS6_192ELS6_209ELS6_206ELS6_24ELS6_44ELS6_122ELS6_246ELS6_116ELS6_30ELS6_2ELS6_101ELS6_140ELS6_125ELS6_77ELS6_252ELS6_211ELS6_136ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_2ELS6_196ELS6_2ELS6_151ELS6_247ELS6_48ELS6_221ELS6_123ELS6_90ELS6_153ELS6_86ELS6_126ELS6_184ELS6_210ELS6_123ELS6_120ELS6_117ELS6_143ELS6_96ELS6_117ELS6_7ELS6_197ELS6_34ELS6_146ELS6_208ELS6_45ELS6_64ELS6_49ELS6_137ELS6_91ELS6_82ELS6_242ELS6_255ELS6_1ELS6_0ELS6_0ELS6_0ELS6_139ELS6_72ELS6_48ELS6_69ELS6_2ELS6_33ELS6_0ELS6_247ELS6_237ELS6_253ELS6_75ELS6_10ELS6_172ELS6_64ELS6_78ELS6_91ELS6_171ELS6_79ELS6_211ELS6_136ELS6_158ELS6_12ELS6_108ELS6_65ELS6_170ELS6_141ELS6_14ELS6_111ELS6_161ELS6_34ELS6_49ELS6_111ELS6_104ELS6_237ELS6_221ELS6_10ELS6_101ELS6_1ELS6_57ELS6_2ELS6_32ELS6_91ELS6_9ELS6_204ELS6_139ELS6_45ELS6_86ELS6_225ELS6_205ELS6_31ELS6_127ELS6_47ELS6_175ELS6_214ELS6_10ELS6_18ELS6_158ELS6_217ELS6_69ELS6_4ELS6_196ELS6_172ELS6_123ELS6_220ELS6_103ELS6_181ELS6_111ELS6_230ELS6_117ELS6_18ELS6_101ELS6_139ELS6_62ELS6_1ELS6_65ELS6_4ELS6_115ELS6_32ELS6_18ELS6_203ELS6_150ELS6_42ELS6_250ELS6_144ELS6_211ELS6_27ELS6_37ELS6_216ELS6_251ELS6_14ELS6_50ELS6_201ELS6_78ELS6_81ELS6_58ELS6_183ELS6_161ELS6_120ELS6_5ELS6_193ELS6_76ELS6_164ELS6_195ELS6_66ELS6_62ELS6_24ELS6_180ELS6_251ELS6_93ELS6_14ELS6_103ELS6_104ELS6_65ELS6_115ELS6_60ELS6_184ELS6_58ELS6_186ELS6_249ELS6_117ELS6_132ELS6_92ELS6_159ELS6_111ELS6_42ELS6_128ELS6_151ELS6_183ELS6_208ELS6_79ELS6_73ELS6_8ELS6_177ELS6_131ELS6_104ELS6_214ELS6_252ELS6_45ELS6_104ELS6_236ELS6_255ELS6_255ELS6_255ELS6_255ELS6_202ELS6_80ELS6_101ELS6_255ELS6_150ELS6_23ELS6_203ELS6_203ELS6_164ELS6_94ELS6_178ELS6_55ELS6_38ELS6_223ELS6_100ELS6_152ELS6_169ELS6_185ELS6_202ELS6_254ELS6_212ELS6_245ELS6_76ELS6_186ELS6_185ELS6_210ELS6_39ELS6_176ELS6_3ELS6_93ELS6_222ELS6_251ELS6_0ELS6_0ELS6_0ELS6_0ELS6_138ELS6_71ELS6_48ELS6_68ELS6_2ELS6_32ELS6_104ELS6_1ELS6_3ELS6_98ELS6_161ELS6_60ELS6_127ELS6_153ELS6_25ELS6_250ELS6_131ELS6_43ELS6_45ELS6_238ELS6_78ELS6_120ELS6_143ELS6_97ELS6_246ELS6_245ELS6_211ELS6_68ELS6_167ELS6_194ELS6_160ELS6_218ELS6_106ELS6_231ELS6_64ELS6_96ELS6_86ELS6_88ELS6_2ELS6_32ELS6_6ELS6_209ELS6_175ELS6_82ELS6_91ELS6_154ELS6_20ELS6_163ELS6_92ELS6_0ELS6_59ELS6_120ELS6_183ELS6_43ELS6_213ELS6_151ELS6_56ELS6_205ELS6_103ELS6_111ELS6_132ELS6_93ELS6_31ELS6_243ELS6_252ELS6_37ELS6_4ELS6_158ELS6_1ELS6_0ELS6_54ELS6_20ELS6_1ELS6_65ELS6_4ELS6_115ELS6_32ELS6_18ELS6_203ELS6_150ELS6_42ELS6_250ELS6_144ELS6_211ELS6_27ELS6_37ELS6_216ELS6_251ELS6_14ELS6_50ELS6_201ELS6_78ELS6_81ELS6_58ELS6_183ELS6_161ELS6_120ELS6_5ELS6_193ELS6_76ELS6_164ELS6_195ELS6_66ELS6_62ELS6_24ELS6_180ELS6_251ELS6_93ELS6_14ELS6_103ELS6_104ELS6_65ELS6_115ELS6_60ELS6_184ELS6_58ELS6_186ELS6_249ELS6_117ELS6_132ELS6_92ELS6_159ELS6_111ELS6_42ELS6_128ELS6_151ELS6_183ELS6_208ELS6_79ELS6_73ELS6_8ELS6_177ELS6_131ELS6_104ELS6_214ELS6_252ELS6_45ELS6_104ELS6_236ELS6_255ELS6_255ELS6_255ELS6_255ELS6_1ELS6_0ELS6_30ELS6_196ELS6_17ELS6_2ELS6_0ELS6_0ELS6_0ELS6_67ELS6_65ELS6_4ELS6_105ELS6_171ELS6_65ELS6_129ELS6_236ELS6_235ELS6_40ELS6_152ELS6_91ELS6_155ELS6_78ELS6_137ELS6_92ELS6_19ELS6_250ELS6_94ELS6_104ELS6_216ELS6_87ELS6_97ELS6_183ELS6_238ELS6_227ELS6_17ELS6_219ELS6_90ELS6_221ELS6_239ELS6_118ELS6_250ELS6_134ELS6_33ELS6_134ELS6_81ELS6_52ELS6_162ELS6_33ELS6_189ELS6_1ELS6_242ELS6_142ELS6_201ELS6_153ELS6_158ELS6_227ELS6_224ELS6_33ELS6_230ELS6_7ELS6_102ELS6_233ELS6_209ELS6_243ELS6_69ELS6_140ELS6_17ELS6_95ELS6_178ELS6_134ELS6_80ELS6_96ELS6_95ELS6_17ELS6_201ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_1ELS6_205ELS6_175ELS6_47ELS6_117ELS6_142ELS6_145ELS6_197ELS6_20ELS6_101ELS6_94ELS6_45ELS6_197ELS6_6ELS6_51ELS6_209ELS6_228ELS6_200ELS6_73ELS6_137ELS6_248ELS6_170ELS6_144ELS6_160ELS6_219ELS6_200ELS6_131ELS6_240ELS6_210ELS6_62ELS6_213ELS6_194ELS6_250ELS6_1ELS6_0ELS6_0ELS6_0ELS6_139ELS6_72ELS6_48ELS6_69ELS6_2ELS6_32ELS6_122ELS6_181ELS6_27ELS6_230ELS6_241ELS6_42ELS6_25ELS6_98ELS6_186ELS6_10ELS6_170ELS6_242ELS6_74ELS6_32ELS6_224ELS6_182ELS6_155ELS6_39ELS6_169ELS6_79ELS6_172ELS6_90ELS6_223ELS6_69ELS6_170ELS6_125ELS6_45ELS6_24ELS6_255ELS6_217ELS6_35ELS6_97ELS6_2ELS6_33ELS6_0ELS6_134ELS6_174ELS6_114ELS6_139ELS6_55ELS6_14ELS6_83ELS6_41ELS6_238ELS6_173ELS6_154ELS6_204ELS6_216ELS6_128ELS6_208ELS6_203ELS6_7ELS6_10ELS6_234ELS6_12ELS6_150ELS6_37ELS6_95ELS6_174ELS6_108ELS6_79ELS6_29ELS6_220ELS6_206ELS6_31ELS6_213ELS6_110ELS6_1ELS6_65ELS6_4ELS6_70ELS6_46ELS6_118ELS6_253ELS6_64ELS6_103ELS6_179ELS6_160ELS6_170ELS6_66ELS6_7ELS6_0ELS6_130ELS6_220ELS6_176ELS6_191ELS6_47ELS6_56ELS6_139ELS6_100ELS6_149ELS6_207ELS6_51ELS6_215ELS6_137ELS6_144ELS6_79ELS6_7ELS6_208ELS6_245ELS6_92ELS6_64ELS6_251ELS6_212ELS6_184ELS6_41ELS6_99ELS6_198ELS6_155ELS6_61ELS6_195ELS6_24ELS6_149ELS6_208ELS6_199ELS6_114ELS6_200ELS6_18ELS6_177ELS6_213ELS6_251ELS6_202ELS6_222ELS6_21ELS6_49ELS6_46ELS6_241ELS6_192ELS6_232ELS6_235ELS6_187ELS6_18ELS6_220ELS6_212ELS6_255ELS6_255ELS6_255ELS6_255ELS6_2ELS6_64ELS6_75ELS6_76ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_43ELS6_107ELS6_167ELS6_201ELS6_215ELS6_150ELS6_183ELS6_94ELS6_239ELS6_121ELS6_66ELS6_252ELS6_146ELS6_136ELS6_237ELS6_211ELS6_124ELS6_50ELS6_245ELS6_195ELS6_136ELS6_172ELS6_0ELS6_45ELS6_49ELS6_1ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_27ELS6_239ELS6_186ELS6_12ELS6_220ELS6_26ELS6_213ELS6_101ELS6_41ELS6_55ELS6_24ELS6_100ELS6_217ELS6_246ELS6_203ELS6_4ELS6_47ELS6_170ELS6_6ELS6_181ELS6_136ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_1ELS6_180ELS6_164ELS6_118ELS6_3ELS6_231ELS6_27ELS6_97ELS6_188ELS6_51ELS6_38ELS6_239ELS6_217ELS6_1ELS6_17ELS6_191ELS6_2ELS6_210ELS6_245ELS6_73ELS6_176ELS6_103ELS6_244ELS6_196ELS6_168ELS6_250ELS6_24ELS6_59ELS6_87ELS6_160ELS6_248ELS6_0ELS6_203ELS6_1ELS6_0ELS6_0ELS6_0ELS6_138ELS6_71ELS6_48ELS6_68ELS6_2ELS6_32ELS6_23ELS6_124ELS6_55ELS6_249ELS6_165ELS6_5ELS6_195ELS6_241ELS6_161ELS6_240ELS6_206ELS6_45ELS6_167ELS6_119ELS6_195ELS6_57ELS6_189ELS6_131ELS6_57ELS6_255ELS6_160ELS6_44ELS6_124ELS6_180ELS6_31ELS6_10ELS6_88ELS6_4ELS6_244ELS6_115ELS6_201ELS6_35ELS6_2ELS6_32ELS6_88ELS6_91ELS6_37ELS6_162ELS6_238ELS6_128ELS6_235ELS6_89ELS6_41ELS6_46ELS6_82ELS6_185ELS6_135ELS6_218ELS6_217ELS6_42ELS6_203ELS6_12ELS6_100ELS6_236ELS6_237ELS6_146ELS6_237ELS6_158ELS6_225ELS6_5ELS6_173ELS6_21ELS6_60ELS6_219ELS6_18ELS6_208ELS6_1ELS6_65ELS6_4ELS6_67ELS6_189ELS6_68ELS6_246ELS6_131ELS6_70ELS6_126ELS6_84ELS6_157ELS6_174ELS6_125ELS6_32ELS6_209ELS6_215ELS6_156ELS6_189ELS6_182ELS6_223ELS6_152ELS6_92ELS6_110ELS6_156ELS6_2ELS6_156ELS6_141ELS6_12ELS6_108ELS6_180ELS6_108ELS6_193ELS6_164ELS6_211ELS6_207ELS6_121ELS6_35ELS6_197ELS6_2ELS6_27ELS6_39ELS6_247ELS6_160ELS6_181ELS6_98ELS6_173ELS6_161ELS6_19ELS6_188ELS6_133ELS6_213ELS6_253ELS6_165ELS6_161ELS6_180ELS6_30ELS6_135ELS6_254ELS6_110ELS6_136ELS6_2ELS6_129ELS6_124ELS6_246ELS6_153ELS6_150ELS6_255ELS6_255ELS6_255ELS6_255ELS6_2ELS6_128ELS6_101ELS6_20ELS6_6ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_85ELS6_5ELS6_97ELS6_72ELS6_89ELS6_100ELS6_58ELS6_183ELS6_181ELS6_71ELS6_205ELS6_127ELS6_31ELS6_94ELS6_126ELS6_42ELS6_18ELS6_50ELS6_45ELS6_55ELS6_136ELS6_172ELS6_0ELS6_170ELS6_2ELS6_113ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_234ELS6_71ELS6_32ELS6_167ELS6_165ELS6_47ELS6_193ELS6_102ELS6_197ELS6_95ELS6_242ELS6_41ELS6_142ELS6_7ELS6_186ELS6_247ELS6_10ELS6_230ELS6_126ELS6_27ELS6_136ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_5ELS6_134ELS6_198ELS6_44ELS6_214ELS6_2ELS6_210ELS6_25ELS6_187ELS6_96ELS6_237ELS6_177ELS6_74ELS6_62ELS6_32ELS6_77ELS6_224ELS6_112ELS6_81ELS6_118ELS6_249ELS6_2ELS6_47ELS6_228ELS6_154ELS6_83ELS6_128ELS6_84ELS6_251ELS6_20ELS6_171ELS6_180ELS6_158ELS6_1ELS6_0ELS6_0ELS6_0ELS6_140ELS6_73ELS6_48ELS6_70ELS6_2ELS6_33ELS6_0ELS6_242ELS6_188ELS6_42ELS6_186ELS6_37ELS6_52ELS6_190ELS6_203ELS6_223ELS6_6ELS6_46ELS6_185ELS6_147ELS6_133ELS6_58ELS6_66ELS6_187ELS6_188ELS6_40ELS6_32ELS6_131ELS6_208ELS6_218ELS6_249ELS6_180ELS6_181ELS6_133ELS6_189ELS6_64ELS6_26ELS6_168ELS6_201ELS6_2ELS6_33ELS6_0ELS6_177ELS6_215ELS6_253ELS6_126ELS6_224ELS6_185ELS6_86ELS6_0ELS6_219ELS6_133ELS6_53ELS6_187ELS6_243ELS6_49ELS6_177ELS6_158ELS6_237ELS6_141ELS6_150ELS6_31ELS6_122ELS6_142ELS6_84ELS6_21ELS6_156ELS6_83ELS6_103ELS6_93ELS6_95ELS6_105ELS6_223ELS6_140ELS6_1ELS6_65ELS6_4ELS6_70ELS6_46ELS6_118ELS6_253ELS6_64ELS6_103ELS6_179ELS6_160ELS6_170ELS6_66ELS6_7ELS6_0ELS6_130ELS6_220ELS6_176ELS6_191ELS6_47ELS6_56ELS6_139ELS6_100ELS6_149ELS6_207ELS6_51ELS6_215ELS6_137ELS6_144ELS6_79ELS6_7ELS6_208ELS6_245ELS6_92ELS6_64ELS6_251ELS6_212ELS6_184ELS6_41ELS6_99ELS6_198ELS6_155ELS6_61ELS6_195ELS6_24ELS6_149ELS6_208ELS6_199ELS6_114ELS6_200ELS6_18ELS6_177ELS6_213ELS6_251ELS6_202ELS6_222ELS6_21ELS6_49ELS6_46ELS6_241ELS6_192ELS6_232ELS6_235ELS6_187ELS6_18ELS6_220ELS6_212ELS6_255ELS6_255ELS6_255ELS6_255ELS6_3ELS6_173ELS6_14ELS6_88ELS6_204ELS6_218ELS6_195ELS6_223ELS6_157ELS6_194ELS6_138ELS6_33ELS6_139ELS6_207ELS6_111ELS6_25ELS6_151ELS6_176ELS6_169ELS6_51ELS6_6ELS6_250ELS6_170ELS6_75ELS6_58ELS6_40ELS6_174ELS6_131ELS6_68ELS6_123ELS6_33ELS6_121ELS6_1ELS6_0ELS6_0ELS6_0ELS6_139ELS6_72ELS6_48ELS6_69ELS6_2ELS6_33ELS6_0ELS6_190ELS6_18ELS6_178ELS6_147ELS6_113ELS6_121ELS6_218ELS6_136ELS6_89ELS6_158ELS6_39ELS6_187ELS6_49ELS6_195ELS6_82ELS6_80ELS6_151ELS6_160ELS6_124ELS6_219ELS6_82ELS6_66ELS6_45ELS6_22ELS6_91ELS6_60ELS6_162ELS6_242ELS6_2ELS6_15ELS6_252ELS6_247ELS6_2ELS6_32ELS6_9ELS6_113ELS6_181ELS6_31ELS6_133ELS6_58ELS6_83ELS6_214ELS6_68ELS6_235ELS6_174ELS6_158ELS6_200ELS6_243ELS6_81ELS6_46ELS6_68ELS6_43ELS6_27ELS6_203ELS6_108ELS6_49ELS6_90ELS6_91ELS6_73ELS6_29ELS6_17ELS6_157ELS6_16ELS6_98ELS6_76ELS6_131ELS6_1ELS6_65ELS6_4ELS6_70ELS6_46ELS6_118ELS6_253ELS6_64ELS6_103ELS6_179ELS6_160ELS6_170ELS6_66ELS6_7ELS6_0ELS6_130ELS6_220ELS6_176ELS6_191ELS6_47ELS6_56ELS6_139ELS6_100ELS6_149ELS6_207ELS6_51ELS6_215ELS6_137ELS6_144ELS6_79ELS6_7ELS6_208ELS6_245ELS6_92ELS6_64ELS6_251ELS6_212ELS6_184ELS6_41ELS6_99ELS6_198ELS6_155ELS6_61ELS6_195ELS6_24ELS6_149ELS6_208ELS6_199ELS6_114ELS6_200ELS6_18ELS6_177ELS6_213ELS6_251ELS6_202ELS6_222ELS6_21ELS6_49ELS6_46ELS6_241ELS6_192ELS6_232ELS6_235ELS6_187ELS6_18ELS6_220ELS6_212ELS6_255ELS6_255ELS6_255ELS6_255ELS6_42ELS6_207ELS6_202ELS6_182ELS6_41ELS6_187ELS6_200ELS6_104ELS6_87ELS6_146ELS6_96ELS6_55ELS6_98ELS6_201ELS6_33ELS6_88ELS6_0ELS6_48ELS6_186ELS6_20ELS6_74ELS6_245ELS6_83ELS6_210ELS6_113ELS6_113ELS6_106ELS6_149ELS6_8ELS6_158ELS6_16ELS6_123ELS6_1ELS6_0ELS6_0ELS6_0ELS6_139ELS6_72ELS6_48ELS6_69ELS6_2ELS6_33ELS6_0ELS6_250ELS6_87ELS6_154ELS6_132ELS6_10ELS6_194ELS6_88ELS6_135ELS6_19ELS6_101ELS6_221ELS6_72ELS6_205ELS6_117ELS6_82ELS6_249ELS6_108ELS6_142ELS6_234ELS6_105ELS6_189ELS6_0ELS6_216ELS6_79ELS6_5ELS6_178ELS6_131ELS6_160ELS6_218ELS6_179ELS6_17ELS6_225ELS6_2ELS6_32ELS6_126ELS6_60ELS6_14ELS6_233ELS6_35ELS6_72ELS6_20ELS6_207ELS6_187ELS6_27ELS6_101ELS6_155ELS6_131ELS6_103ELS6_22ELS6_24ELS6_244ELS6_90ELS6_188ELS6_19ELS6_38ELS6_185ELS6_237ELS6_204ELS6_119ELS6_213ELS6_82ELS6_164ELS6_242ELS6_168ELS6_5ELS6_192ELS6_1ELS6_65ELS6_4ELS6_70ELS6_46ELS6_118ELS6_253ELS6_64ELS6_103ELS6_179ELS6_160ELS6_170ELS6_66ELS6_7ELS6_0ELS6_130ELS6_220ELS6_176ELS6_191ELS6_47ELS6_56ELS6_139ELS6_100ELS6_149ELS6_207ELS6_51ELS6_215ELS6_137ELS6_144ELS6_79ELS6_7ELS6_208ELS6_245ELS6_92ELS6_64ELS6_251ELS6_212ELS6_184ELS6_41ELS6_99ELS6_198ELS6_155ELS6_61ELS6_195ELS6_24ELS6_149ELS6_208ELS6_199ELS6_114ELS6_200ELS6_18ELS6_177ELS6_213ELS6_251ELS6_202ELS6_222ELS6_21ELS6_49ELS6_46ELS6_241ELS6_192ELS6_232ELS6_235ELS6_187ELS6_18ELS6_220ELS6_212ELS6_255ELS6_255ELS6_255ELS6_255ELS6_220ELS6_220ELS6_96ELS6_35ELS6_187ELS6_201ELS6_148ELS6_74ELS6_101ELS6_141ELS6_220ELS6_88ELS6_142ELS6_97ELS6_234ELS6_203ELS6_115ELS6_125ELS6_223ELS6_10ELS6_60ELS6_210ELS6_79ELS6_17ELS6_59ELS6_90ELS6_134ELS6_52ELS6_197ELS6_23ELS6_252ELS6_210ELS6_0ELS6_0ELS6_0ELS6_0ELS6_139ELS6_72ELS6_48ELS6_69ELS6_2ELS6_33ELS6_0ELS6_141ELS6_109ELS6_247ELS6_49ELS6_223ELS6_93ELS6_50ELS6_38ELS6_121ELS6_84ELS6_189ELS6_125ELS6_45ELS6_218ELS6_35ELS6_2ELS6_183ELS6_76ELS6_108ELS6_42ELS6_106ELS6_165ELS6_192ELS6_202ELS6_100ELS6_236ELS6_186ELS6_188ELS6_26ELS6_240ELS6_60ELS6_117ELS6_2ELS6_32ELS6_16ELS6_229ELS6_92ELS6_87ELS6_29ELS6_101ELS6_218ELS6_119ELS6_1ELS6_174ELS6_45ELS6_161ELS6_149ELS6_108ELS6_68ELS6_45ELS6_248ELS6_27ELS6_191ELS6_7ELS6_108ELS6_219ELS6_172ELS6_37ELS6_19ELS6_63ELS6_153ELS6_217ELS6_138ELS6_158ELS6_211ELS6_76ELS6_1ELS6_65ELS6_4ELS6_70ELS6_46ELS6_118ELS6_253ELS6_64ELS6_103ELS6_179ELS6_160ELS6_170ELS6_66ELS6_7ELS6_0ELS6_130ELS6_220ELS6_176ELS6_191ELS6_47ELS6_56ELS6_139ELS6_100ELS6_149ELS6_207ELS6_51ELS6_215ELS6_137ELS6_144ELS6_79ELS6_7ELS6_208ELS6_245ELS6_92ELS6_64ELS6_251ELS6_212ELS6_184ELS6_41ELS6_99ELS6_198ELS6_155ELS6_61ELS6_195ELS6_24ELS6_149ELS6_208ELS6_199ELS6_114ELS6_200ELS6_18ELS6_177ELS6_213ELS6_251ELS6_202ELS6_222ELS6_21ELS6_49ELS6_46ELS6_241ELS6_192ELS6_232ELS6_235ELS6_187ELS6_18ELS6_220ELS6_212ELS6_255ELS6_255ELS6_255ELS6_255ELS6_225ELS6_85ELS6_87ELS6_205ELS6_92ELS6_226ELS6_88ELS6_244ELS6_121ELS6_223ELS6_214ELS6_220ELS6_101ELS6_20ELS6_237ELS6_246ELS6_215ELS6_237ELS6_91ELS6_33ELS6_252ELS6_250ELS6_74ELS6_3ELS6_143ELS6_214ELS6_159ELS6_6ELS6_184ELS6_58ELS6_199ELS6_110ELS6_1ELS6_0ELS6_0ELS6_0ELS6_139ELS6_72ELS6_48ELS6_69ELS6_2ELS6_32ELS6_35ELS6_179ELS6_224ELS6_171ELS6_7ELS6_30ELS6_177ELS6_29ELS6_226ELS6_235ELS6_28ELS6_195ELS6_166ELS6_114ELS6_97ELS6_184ELS6_102ELS6_248ELS6_107ELS6_246ELS6_134ELS6_125ELS6_69ELS6_88ELS6_22ELS6_95ELS6_124ELS6_140ELS6_138ELS6_202ELS6_45ELS6_134ELS6_2ELS6_33ELS6_0ELS6_220ELS6_110ELS6_31ELS6_83ELS6_169ELS6_29ELS6_227ELS6_239ELS6_232ELS6_246ELS6_53ELS6_18ELS6_133ELS6_8ELS6_17ELS6_242ELS6_98ELS6_132ELS6_182ELS6_47ELS6_133ELS6_12ELS6_112ELS6_202ELS6_115ELS6_237ELS6_93ELS6_232ELS6_119ELS6_31ELS6_180ELS6_81ELS6_1ELS6_65ELS6_4ELS6_70ELS6_46ELS6_118ELS6_253ELS6_64ELS6_103ELS6_179ELS6_160ELS6_170ELS6_66ELS6_7ELS6_0ELS6_130ELS6_220ELS6_176ELS6_191ELS6_47ELS6_56ELS6_139ELS6_100ELS6_149ELS6_207ELS6_51ELS6_215ELS6_137ELS6_144ELS6_79ELS6_7ELS6_208ELS6_245ELS6_92ELS6_64ELS6_251ELS6_212ELS6_184ELS6_41ELS6_99ELS6_198ELS6_155ELS6_61ELS6_195ELS6_24ELS6_149ELS6_208ELS6_199ELS6_114ELS6_200ELS6_18ELS6_177ELS6_213ELS6_251ELS6_202ELS6_222ELS6_21ELS6_49ELS6_46ELS6_241ELS6_192ELS6_232ELS6_235ELS6_187ELS6_18ELS6_220ELS6_212ELS6_255ELS6_255ELS6_255ELS6_255ELS6_1ELS6_64ELS6_75ELS6_76ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_43ELS6_107ELS6_167ELS6_201ELS6_215ELS6_150ELS6_183ELS6_94ELS6_239ELS6_121ELS6_66ELS6_252ELS6_146ELS6_136ELS6_237ELS6_211ELS6_124ELS6_50ELS6_245ELS6_195ELS6_136ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_1ELS6_102ELS6_215ELS6_87ELS6_113ELS6_99ELS6_201ELS6_50ELS6_180ELS6_249ELS6_105ELS6_12ELS6_166ELS6_168ELS6_11ELS6_110ELS6_78ELS6_176ELS6_1ELS6_240ELS6_162ELS6_250ELS6_144ELS6_35ELS6_223ELS6_85ELS6_149ELS6_96ELS6_42ELS6_174ELS6_150ELS6_237ELS6_141ELS6_0ELS6_0ELS6_0ELS6_0ELS6_138ELS6_71ELS6_48ELS6_68ELS6_2ELS6_32ELS6_38ELS6_43ELS6_66ELS6_84ELS6_99ELS6_2ELS6_223ELS6_182ELS6_84ELS6_162ELS6_41ELS6_206ELS6_252ELS6_134ELS6_67ELS6_43ELS6_137ELS6_98ELS6_143ELS6_242ELS6_89ELS6_220ELS6_135ELS6_237ELS6_209ELS6_21ELS6_69ELS6_53ELS6_177ELS6_106ELS6_103ELS6_225ELS6_2ELS6_32ELS6_123ELS6_70ELS6_52ELS6_192ELS6_32ELS6_169ELS6_124ELS6_62ELS6_123ELS6_189ELS6_13ELS6_77ELS6_25ELS6_218ELS6_106ELS6_162ELS6_38ELS6_154ELS6_217ELS6_221ELS6_237ELS6_64ELS6_38ELS6_232ELS6_150ELS6_178ELS6_19ELS6_215ELS6_60ELS6_164ELS6_182ELS6_63ELS6_1ELS6_65ELS6_4ELS6_151ELS6_155ELS6_130ELS6_208ELS6_34ELS6_38ELS6_179ELS6_164ELS6_89ELS6_117ELS6_35ELS6_132ELS6_87ELS6_84ELS6_212ELS6_79ELS6_19ELS6_99ELS6_158ELS6_59ELS6_242ELS6_223ELS6_94ELS6_130ELS6_198ELS6_170ELS6_178ELS6_189ELS6_199ELS6_150ELS6_135ELS6_54ELS6_139ELS6_1ELS6_177ELS6_171ELS6_139ELS6_25ELS6_135ELS6_90ELS6_227ELS6_201ELS6_13ELS6_102ELS6_26ELS6_61ELS6_10ELS6_51ELS6_22ELS6_29ELS6_171ELS6_41ELS6_147ELS6_78ELS6_222ELS6_179ELS6_106ELS6_160ELS6_25ELS6_118ELS6_190ELS6_59ELS6_175ELS6_138ELS6_255ELS6_255ELS6_255ELS6_255ELS6_2ELS6_64ELS6_75ELS6_76ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_72ELS6_84ELS6_230ELS6_149ELS6_160ELS6_42ELS6_240ELS6_174ELS6_172ELS6_184ELS6_35ELS6_204ELS6_188ELS6_39ELS6_33ELS6_52ELS6_86ELS6_30ELS6_10ELS6_22ELS6_136ELS6_172ELS6_64ELS6_66ELS6_15ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_171ELS6_238ELS6_147ELS6_55ELS6_109ELS6_107ELS6_55ELS6_181ELS6_194ELS6_148ELS6_6ELS6_85ELS6_166ELS6_252ELS6_175ELS6_28ELS6_142ELS6_116ELS6_35ELS6_121ELS6_136ELS6_172ELS6_0ELS6_0ELS6_0ELS6_0ELS6_1ELS6_0ELS6_0ELS6_0ELS6_1ELS6_78ELS6_63ELS6_142ELS6_242ELS6_233ELS6_19ELS6_73ELS6_169ELS6_5ELS6_156ELS6_180ELS6_240ELS6_30ELS6_84ELS6_171ELS6_37ELS6_151ELS6_193ELS6_56ELS6_113ELS6_97ELS6_211ELS6_218ELS6_137ELS6_145ELS6_159ELS6_126ELS6_166ELS6_172ELS6_219ELS6_179ELS6_113ELS6_1ELS6_0ELS6_0ELS6_0ELS6_140ELS6_73ELS6_48ELS6_70ELS6_2ELS6_33ELS6_0ELS6_129ELS6_243ELS6_24ELS6_52ELS6_113ELS6_165ELS6_202ELS6_34ELS6_48ELS6_124ELS6_8ELS6_0ELS6_34ELS6_111ELS6_62ELS6_249ELS6_195ELS6_83ELS6_6ELS6_158ELS6_7ELS6_115ELS6_172ELS6_118ELS6_187ELS6_88ELS6_6ELS6_84ELS6_213ELS6_106ELS6_165ELS6_35ELS6_2ELS6_33ELS6_0ELS6_212ELS6_197ELS6_100ELS6_101ELS6_189ELS6_192ELS6_105ELS6_6ELS6_8ELS6_70ELS6_244ELS6_251ELS6_242ELS6_246ELS6_178ELS6_5ELS6_32ELS6_178ELS6_168ELS6_11ELS6_8ELS6_177ELS6_104ELS6_179ELS6_30ELS6_102ELS6_221ELS6_185ELS6_198ELS6_148ELS6_226ELS6_64ELS6_1ELS6_65ELS6_4ELS6_151ELS6_108ELS6_121ELS6_132ELS6_142ELS6_24ELS6_37ELS6_22ELS6_18ELS6_248ELS6_148ELS6_8ELS6_117ELS6_178ELS6_176ELS6_141ELS6_6ELS6_230ELS6_220ELS6_115ELS6_185ELS6_132ELS6_14ELS6_136ELS6_96ELS6_192ELS6_102ELS6_183ELS6_232ELS6_116ELS6_50ELS6_196ELS6_119ELS6_233ELS6_165ELS6_154ELS6_69ELS6_62ELS6_113ELS6_230ELS6_215ELS6_109ELS6_95ELS6_227ELS6_64ELS6_88ELS6_184ELS6_0ELS6_160ELS6_152ELS6_252ELS6_23ELS6_64ELS6_206ELS6_48ELS6_18ELS6_232ELS6_252ELS6_138ELS6_0ELS6_201ELS6_106ELS6_249ELS6_102ELS6_255ELS6_255ELS6_255ELS6_255ELS6_2ELS6_192ELS6_225ELS6_228ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_65ELS6_52ELS6_231ELS6_90ELS6_111ELS6_203ELS6_96ELS6_66ELS6_3ELS6_74ELS6_171ELS6_94ELS6_24ELS6_87ELS6_12ELS6_241ELS6_248ELS6_68ELS6_245ELS6_71ELS6_136ELS6_172ELS6_64ELS6_75ELS6_76ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_25ELS6_118ELS6_169ELS6_20ELS6_43ELS6_107ELS6_167ELS6_201ELS6_215ELS6_150ELS6_183ELS6_94ELS6_239ELS6_121ELS6_66ELS6_252ELS6_146ELS6_136ELS6_237ELS6_211ELS6_124ELS6_50ELS6_245ELS6_195ELS6_136ELS6_172EEEEEEEDav
Unexecuted instantiation: _ZN4util12hex_literalsli4_hexITnNS_6detail3HexEXtlNS3_ILm337EEEtlSt5arrayISt4byteLm168EEtlA168_S6_LS6_96ELS6_1ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_0ELS6_255ELS6_255ELS6_255ELS6_127ELS6_0ELS6_0ELS6_0ELS6_0ELS6_255ELS6_255ELS6_255ELS6_127ELS6_254ELS6_255ELS6_255ELS6_127ELS6_1ELS6_255ELS6_255ELS6_255ELS6_127ELS6_0ELS6_0ELS6_0ELS6_0ELS6_255ELS6_255ELS6_255ELS6_127ELS6_0ELS6_255ELS6_255ELS6_255ELS6_127ELS6_0ELS6_47ELS6_85ELS6_82ELS6_71ELS6_69ELS6_78ELS6_84ELS6_58ELS6_32ELS6_65ELS6_108ELS6_101ELS6_114ELS6_116ELS6_32ELS6_107ELS6_101ELS6_121ELS6_32ELS6_99ELS6_111ELS6_109ELS6_112ELS6_114ELS6_111ELS6_109ELS6_105ELS6_115ELS6_101ELS6_100ELS6_44ELS6_32ELS6_117ELS6_112ELS6_103ELS6_114ELS6_97ELS6_100ELS6_101ELS6_32ELS6_114ELS6_101ELS6_113ELS6_117ELS6_105ELS6_114ELS6_101ELS6_100ELS6_0ELS6_70ELS6_48ELS6_68ELS6_2ELS6_32ELS6_101ELS6_63ELS6_235ELS6_214ELS6_65ELS6_15ELS6_71ELS6_15ELS6_107ELS6_174ELS6_17ELS6_202ELS6_209ELS6_156ELS6_72ELS6_65ELS6_59ELS6_236ELS6_177ELS6_172ELS6_44ELS6_23ELS6_249ELS6_8ELS6_253ELS6_15ELS6_213ELS6_59ELS6_220ELS6_58ELS6_189ELS6_82ELS6_2ELS6_32ELS6_109ELS6_14ELS6_156ELS6_150ELS6_254ELS6_136ELS6_212ELS6_160ELS6_240ELS6_30ELS6_217ELS6_222ELS6_218ELS6_226ELS6_182ELS6_249ELS6_224ELS6_13ELS6_169ELS6_76ELS6_173ELS6_15ELS6_236ELS6_170ELS6_230ELS6_110ELS6_207ELS6_104ELS6_155ELS6_247ELS6_27ELS6_80EEEEEEEDav
398
399
template <util::detail::Hex str>
400
0
constexpr auto operator""_hex_u8() { return std::bit_cast<std::array<uint8_t, str.bytes.size()>>(str.bytes); }
Unexecuted instantiation: _ZN4util12hex_literalsli7_hex_u8ITnNS_6detail3HexEXtlNS3_ILm65EEEtlSt5arrayISt4byteLm32EEtlA32_S6_LS6_134ELS6_128ELS6_135ELS6_202ELS6_2ELS6_166ELS6_249ELS6_116ELS6_196ELS6_89ELS6_137ELS6_36ELS6_195ELS6_107ELS6_87ELS6_118ELS6_45ELS6_50ELS6_203ELS6_69ELS6_113ELS6_113ELS6_103ELS6_227ELS6_0ELS6_98ELS6_44ELS6_113ELS6_103ELS6_227ELS6_137ELS6_101EEEEEEEDav
Unexecuted instantiation: _ZN4util12hex_literalsli7_hex_u8ITnNS_6detail3HexEXtlNS3_ILm65EEEtlSt5arrayISt4byteLm32EEtlA32_S6_LS6_80ELS6_146ELS6_155ELS6_116ELS6_193ELS6_160ELS6_73ELS6_84ELS6_183ELS6_139ELS6_75ELS6_96ELS6_53ELS6_233ELS6_122ELS6_94ELS6_7ELS6_138ELS6_90ELS6_15ELS6_40ELS6_236ELS6_150ELS6_213ELS6_71ELS6_191ELS6_238ELS6_154ELS6_206ELS6_128ELS6_58ELS6_192EEEEEEEDav
401
402
template <util::detail::Hex str>
403
0
constexpr auto operator""_hex_v() { return std::vector<std::byte>{str.bytes.begin(), str.bytes.end()}; }
404
405
template <util::detail::Hex str>
406
0
inline auto operator""_hex_v_u8() { return std::vector<uint8_t>{UCharCast(str.bytes.data()), UCharCast(str.bytes.data() + str.bytes.size())}; }
407
408
} // inline namespace hex_literals
409
} // namespace util
410
411
#endif // BITCOIN_UTIL_STRENCODINGS_H