boost: Update to version 1_92_0
Commit Message
- Update from version 1_90_0 to 1_92_0
- Update of rootfiles for all architectures
- Changelog
1_92_0
General Notes
In previous releases, Windows .dll files were installed by b2 install into the
library directory (<PREFIX>/lib by default), except on Cygwin, where they
were installed into the binary directory (<PREFIX>/bin by default.)
This has been changed to consistently install .dll files into the binary
directory, which is the behavior most users want.
For compatibility, a new command line option, --dlldir, has been added to b2
install so that the directory can be overridden, and if needed, pointed to
<PREFIX>/lib.
The CMake configuration file installed by b2 install has been updated to support
requesting header-only libraries as find_package components.
That is, something like find_package(Boost REQUIRED COMPONENTS mp11) works now
(and defines the target Boost::mp11), whereas previously it did not (only
compiled libraries were considered components).
This matches the behavior of the CMake configuration files installed by building
Boost with CMake, making it possible to consume Boost in the same way
regardless of how it was built and installed.
As part of this regularization, the little used feature of requesting
COMPONENTS ALL has been removed. It’s not supported by the CMake Boost
build, and was never supported by FindBoost.
Updated Libraries
Asio
Added a "scheduler" / "assume_continuation" configuration parameter, which
allows posted handlers to be added to a fast thread-local queue.
Added "reactor" configuration parameters for tuning the io_uring backend:
io_uring_ring_count, io_uring_ring_size, io_uring_submit_batch_size
and io_uring_iowait.
Added the ability to configure ssl::stream<>'s internal buffer sizes.
Added a forward declarations header boost/asio/fwd.hpp to safely forward
declare Asio class names when using the versioned namespace.
Added an example for using cancel_after with coroutines.
Added support for co_composed under BOOST_ASIO_NO_EXCEPTIONS.
Added a missing optimisation for concurrency_hint == 1 in
io_context::poll_one().
Changed all exception classes to use inline implementations, to fix an
undefined symbol error on some platforms when using separate
compilation.
Changed constants and CPOs to use external linkage for C++17 and later.
Changed "slim" mutexes to use futexes on Linux.
Changed the reactor to use MSG_DONTWAIT, if supported, rather than setting
the socket to be non-blocking.
Fixed two co_composed crashes on MSVC, one when using multiple completion
signatures, and one due to insufficient alignment.
Fixed the return type on one cancel_after overload.
Fixed an integer truncation issue in basic_streambuf::commit/consume.
Fixed a buffer invalidation error triggered when SSL streams are moved, and
clarified the buffer invalidation semantics.
Fixed a compilation error, seen on some compilers, that occurs when using
post, dispatch or defer with a completion handler.
Fixed parallel_group handling of non-terminal cancellation requests.
Fixed some thread sanitizer warnings due to atomic thread fences, and added
extra thread sanitizer instrumentation.
Fixed a signed/unsigned warning in basic_resolver_results, and suppressed
some case fall-through warnings.
Fixed experimental::channel compilation with older versions of MSVC.
Fixed the multicast::enable_loopback socket option size on NetBSD and OpenBSD.
Fixed standard library coroutine detection when using clang-cl.
Improved cross-referencing within the documentation.
Consult the Revision History for further details.
Assert:
Fix BOOST_VERIFY in the rare case of both BOOST_ENABLE_ASSERT_HANDLER and
BOOST_ENABLE_ASSERT_DEBUG_HANDLER being defined.
Beast:
websocket::stream accepts close code 1014 (bad gateway).
http::basic_parser ignores connection and framing fields in trailers.
http::parser drops framing and connection-control fields carried in trailers.
http::basic_parser rejects chunked transfer-encoding in HTTP/1.0 requests.
http::basic_parser rejects Content-Length with Transfer-Encoding regardless
of field order.
http::basic_parser rejects requests with a Transfer-Encoding that does not
end in chunked.
http::basic_parser validates quoted-strings in chunk extensions.
http::message::prepare_payload rejects 1xx responses with a body.
websocket::stream rejects 64-bit frame lengths with the high bit set.
File operations clear the error_code on success.
The server-flex-awaitable example dispatches cancellation to the task’s strand.
Removed dependency on Boost.Functional.
Charconv:
Added CUDA support allowing both to_chars and from_chars for integers to be
used in CUDA kernels
Fixed support for Clang on PPC64LE as it keeps long double and __float128 as
distinct types which was previously considered invalid via
static_assert
ContainerHash:
Hashing a valueless std::variant instance no longer throws.
Container:
Added new boost::container::hub container designed by Joaquín M. López Muñoz.
See the Hub Container chapter in the Container documentation for more
information.
Fixed bugs/issues:
Wrong overload resolution protection in implementation of P2363R5 (#334).
Compile error with erase and small_vector<std::string> (#336).
uses_allocator_construction.hpp: missing #include …/config_end.hpp (#338).
Added unchecked_emplace_back and unchecked_push_back to
boost::container::vector, boost::container::static_vector, and
boost::container::small_vector.
Implemented C++23 P1518 change: modified allocator-extended constructors
for all containers so that the deduction guides for containers are
not overconstrained.
Conversion:
C++20 Module boost.conversion was implemented. Many thanks to Fedor Osetrov
for the PR (PR#43)!
Decimal:
Added initial CUDA support allowing decimal32_t, decimal64_t, and
decimal128_t to be used in CUDA kernels
Added decompose function which returns the significand, exponent, and sign
without normalization (i.e. in their current cohort)
DLL:
Fixed smart_library constructors from shared_library (PR#114). Many thanks
to R. Savchenko for the PR!
C++20 Module boost.dll was implemented. Many thanks to Fedor Osetrov for the
PRs (PR#110, PR#111, PR#112)!
Filesystem:
Marked templated versions of initial_path as deprecated and removed from v4.
Use the non-templated versions instead.
Use readdir instead of readdir_r on more POSIX platforms, specifically on
Mac OS and other Apple operating systems, FreeBSD, OpenBSD,
DragonFly BSD, NetBSD, QNX 6.0 and later, Solaris 10 and later and
Illumos-based systems. Solaris users with gcc are recommended to
define SunOS_5_x macros according to their target Solaris version
(e.g. SunOS_5_11) when building Boost. (#349)
Support for platforms with non-thread-safe readdir is deprecated and will be
removed in a future release. Although not required until
POSIX.1-2024, on modern systems readdir is thread-safe when used
with separate DIR objects in different threads and on some systems
readdir_r is marked as deprecated. POSIX.1-2024 has been updated
accordingly and also marked readdir_r as obsolescent, with a planned
removal in a future version of the specification.
On POSIX platforms, handle EINTR error code returned from opendir, readdir
and equivalents. Although not documented, this error code,
reportedly, may be returned on Apple operating systems and some BSD
systems.
Geometry:
Improvements (geometry):
Drop varray implementation in favor of Boost.Container static_vector
(PR#1458).
Refactor/reduce misc boost dependencies (PR#1459).
Improve short-distance accuracy of Andoyer inverse (PR#1461).
Solved issues (geometry):
Unit test index_rtree_exceptions_rst fails (#1399).
Performance regression on GCC (#1452).
Missing citation guidelines (#714).
Two almost identical rectangles have no intersection (#1471).
Various fixes of errors and warnings.
Graph:
Added a Louvain community detection algorithm for modularity-based
clustering (PR#453).
Removed the dependency on Boost.StaticAssert (PR#450).
Fixed bugs and correctness issues:
Corrected the types used in adjacency_list serialization (PR#443).
Initialized edge_property_type in adjacency_list.hpp (PR#505).
Fixed a wrong accessor return type (PR#504).
Modernized types and hygiene:
Added missing const qualifiers and replaced typedef with using in
several headers (PR#508).
Removed narrowing conversions in random.hpp, bandwidth.hpp, and
king_ordering.hpp (PR#497, PR#498, PR#499).
Replaced deprecated std::random_shuffle with std::shuffle (PR#513).
Silenced -Wunused-* warnings and removed dead test variables (PR#510,
PR#511, PR#512).
Cleared GCC -Wsign-compare warnings (PR#514).
Documentation: updated the entire documentation and migrated to a new
visual design (PR#469, PR#491, PR#509, PR#517, PR#519).
Hash2:
Added built-in support for std::optional
Added built-in support for std::variant, std::monostate
Heap:
This release is the last to support C++14. Future releases will require C++17.
ICL:
Starting with version 22, libc++ has changed some lookup algorithms of its
associative containers in a way that breaks ICL’s assumptions and
behavior. The library internals have been refactored to solve the
problem and make ICL robust against future decisions of the C++
committee regarding non-heterogeneous lookup for associative
containers (PR#54, LWG4752).
Fixed C++20-related problems with std::iter_value_t<element_iterator> and
GCC 10-12’s handling of rewritten relational operators (PR#54).
Fixed a GCC 10-11 codegen bug (PR#54).
Interprocess:
Fixed bugs:
AIX build fix: fix return type in get_invalid_systemwide_thread_id (PR#280).
Locks in message_queue_t cover more code than intended (#281).
Iterator:
Added is_*_iterator_v variable templates in C++14 and later, equivalent to
the corresponding iterator traits.
The distance and advance algorithms are now constrained by requiring
is_iterator to return true for the iterator arguments. (PR#96)
LexicalCast:
C++20 Module boost.lexical_cast was implemented. Many thanks to Fedor
Osetrov for the PR (PR#96)!
Lockfree:
This release is the last to support C++14. Future releases will require C++17.
Added new boost::lockfree::mpsc_weak_queue, a multi-producer,
single-consumer queue. While push and pop are individually
wait-free, the queue is not linearizable and a producer that stalls
between exchanging the tail and linking its node can permanently
break the queue, so it is not strictly lock-free.
Added new boost::lockfree::bounded_ticket_queue, a ringbuffer-based bounded
MPMC queue. The queue is linearizable and wait-free when configured
with a single producer and single consumer. In multi-producer or
multi-consumer configurations, a stalled thread that has claimed a
slot can block progress, so the queue is not strictly lock-free.
Math:
Added a degree of freedom finder to the Student’s T and Non-centeral F
disributions
Fixed CUDA compilation where host functions were invalidly being marked as
device during compilation
Increased testing coverage of distributions leading to several overflow fixes
Mp11:
Improved the performance of a number of algorithms (contributed by Jonathan
Poelen)
MQTT5:
mqtt_client::async_run now completes immediately with
client::error::already_running when the client is already running (#54).
Fixed several missing length checks when decoding packets received from the
broker. Malformed packets could previously cause out-of-bounds reads
or excessive memory allocation. Many thanks to Team-Atlanta for
reporting these issues.
MSM:
New features (backmp11):
Provide an observer API for logging support (#220)
Forward Kleene events to actions and guards without conversion (#229)
Ensure basic exception guarantee and propagate exceptions to the caller
(#221)
Provide a reflection API and serialization support for
Boost.Serialization, Boost.JSON and nlohmann/json (#197)
Rework terminate and interrupt state handling and provide a
machine_state enum (#244)
Configurable event pool and inline storage (#239)
API reference and examples are now available
Bug fixes (backmp11):
State machine processes events although it is not running (#198)
Breaking changes (backmp11):
Events in process_event(…) are not enqueued automatically anymore to
reduce memory footprint, use enqueue_event(…) in actions (#178)
The back-end does not forward constructor arguments to the front-end
anymore, it must be default-constructible. To use custom
constructors, define them in the back-end (#232)
The deprecated APIs process_queued_events() and
process_single_queued_event() are removed, use process_event_pool(…)
instead
The default active state switch policy is set to "after source exit" in
compliance to the UML specification. The other options are not
UML-compliant and will be removed (#222)
The back-end uses its own process_result type with new enum values
instead of aliasing the enum of the back namespace. The old enum
values are deprecated (#242) and will be removed
fix(back, back11): Infinite recursion with event deferral in orthogonal
regions (regression from 1.78) (#184)
MultiIndex:
Fancy pointer support has been extended so that multi_index_container
iterators now store references to the elements through the
allocator’s pointer type. In particular, this means that iterators
can now be placed in shared memory using Boost.Interprocess allocators.
Fixed a performance issue with hashed indices when rehashing at very large
container sizes (PR#94). Contributed by Daniel Král.
Multiprecision:
Added data() member function to float128 to match the rest of the library
Fixed issue blocking compilation of constexpr expression templates with Clang
MySQL:
Added a way to configure which character set the server uses by default, to
make tracking more intelligent. This can be used to avoid redundant
SET NAMES statements. See pool_params::charset_strategy and
connect_params::server_default_charset (PR#511).
Reduces `pool_params::ping_interval’s default from 1h to 10s. This improves
the detection of broken connections (PR#512).
The read buffer has been optimized by reducing the frequency of data
rotations when incomplete messages are received (PR#501).
Contributed by @vsoulgard.
TLS certificates for CI testing are now generated dynamically, rather than
being committed into the repository. This cleans up reports raised
by vulnerability scanners (PR#505).
PFR:
C++20 Module boost.pfr is now also tested with and without import std. Many
thanks to Fedor Osetrov for the PR (PR#233)!
PolyCollection:
Made variant_collection_value_type_impl<Ts...>'s relational operators
available only when the corresponding relational operator is
available for all Ts..., in accordance with WG21 paper P2944R3.
Fixed incompatibility problem with libc++ v21 or higher (PR#34).
Redis:
Fixed a case of undefined behavior within connection when attempting to
cancel a request that has completed, but whose handler hasn’t been
called yet. This happened due to an incorrect erase-remove use with
a std::deque (PR#428). Contributed by @L0rentz.
Optimized buffer rotations to reduce CPU consumption when many small
messages arrive in a single network packet (PR#415).
Added initializers to all members in the config struct. This allows using
designated initializers to create config objects (PR#424).
Removed the standalone workflow from the CMake. This was an undocumented way
of consuming Boost.Redis with CMake aimed to internal development
(PR#409).
Stacktrace:
C++20 Modules were implemented:
boost.stacktrace_dump module for safe_dump interface
boost.stacktrace_<backend> module for each unwind/collect implementation
method
boost.stacktrace module exposing best available backend implementation.
Many thanks to Fedor Osetrov for the PRs (PR#230, PR#227)!
C++20 Module boost.stacktrace is now also tested with and without import
std. Many thanks to Fedor Osetrov for the PR (PR#231)!
Fixed Boost::from_exception link on MinGW. Many thanks to Orgad Shaneh for
the PR (PR#225)!
System:
Fix unwrap_and_invoke for functions returning void.
TypeIndex:
C++20 Module boost.type_index is now also tested with and without import
std. Many thanks to Fedor Osetrov for the PR (PR#47)!
Unordered:
Added interoperability with C++20 ranges to all the containers in the
library: insert_range (plus insert_range_(or|and)_[c]visit for
concurrent containers), std::from_range construction and associated
CTAD deduction guides. The boost::unordered::from_range construction
tag is provided as an alternative to C++23 std::from_range or when
this is not available.
Fixed a performance issue with closed-addressing containers when rehashing
at very large container sizes (PR#348). Contributed by Daniel Král.
URL:
Fixed a heap buffer overflow in normalize_path for authority-less URLs whose
normalized path begins with // (PR#995).
Fixed an uninitialized read in ipv6_address_rule when an embedded IPv4
address has no preceding h16, e.g. https://[::. (PR#994).
Fixed unsigned-integer-overflow sanitizer findings in case-insensitive
comparisons, hashing, and format (PR#994).
Fixed decoded query-size tracking in url_base::edit_params (PR#990).
Third-round security review fixes: url_view copy from a null source, two
incorrect noexcept specifiers, and decoded-length tracking when
iterating segments in reverse (PR#988).
Wave:
Introduce digit separators (C++14), module keyword (C++20), and size_t
literals (C++23).
Fixed bugs.
find_include_file incorrectly accepts directories as include files (#243).
Predefined macros (__FILE__, __LINE__, __INCLUDE_LEVEL__) are expanded
twice when expanding_object_like_macro returns true (#246).
Updated Tools
B2:
Includes release of B2 version 5.5.3.
Compilers Tested
Boost’s primary test compilers are:
Linux:
Clang, C++03: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 12.0.0, 13.0.0, 14.0.0, 15.0.0
Clang, C++11: 3.4, 11.0.0, 13.0.0, 14.0.0, 15.0.0
Clang, C++14: 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 5.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
Clang, C++17: 6.0.1, 7.0.0, 8.0.0, 9.0.0, 10.0.0, 11.0.0, 12.0.0, 13.0.0,
14.0.0, 15.0.0
Clang, C++20: 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
GCC, C++03: 4.6.3, 11, 12
GCC, C++11: 4.7.3, 4.8.5, 11, 12
GCC, C++14: 5.4.0, 6.4.0, 7.3.0, 8.0.1, 9.1.0, 11, 12
GCC, C++17: 7.3.0, 8.0.1, 9.1.0, 11, 12
GCC, C++20: 8.0.1, 9.1.0, 10, 11, 12
OS X:
Apple Clang, C++03: 11.0.3
Apple Clang, C++11: 11.0.3
Apple Clang, C++14: 11.0.3
Apple Clang, C++17: 11.0.3
Apple Clang, C++20: 11.0.3
Windows:
Visual C++: 10.0, 11.0, 12.0, 14.0, 14.1, 14.2, 14.3
1_91_0
General Notes
StaticAssert has been merged into Config. This includes code, tests and
documentation. For backward compatibility git submodule, CMake and b2
targets of StaticAssert are still available; the targets simply introduce a
dependency on Config. Eventually, the submodule and targets will be removed.
Users are recommended to update their dependencies on StaticAssert to
replace it with Config. No C++ code modifications are necessary. Most Boost
libraries have been updated accordingly.
New Libraries
Decimal:
An implementation of IEEE754 Decimal Floating Point Numbers, from Matt
Borland and Christopher Kormanyos.
Updated Libraries
Any:
Fixed import std detection in CMake.
Simplified implementation of boost::anys::basic_any.
Asio
Added optional binary versioning via an inline namespace, allowing multiple
Asio versions to coexist in the same process without symbol conflicts.
Changed the default Windows mutex implementation from CRITICAL_SECTION to
SRWLOCK.
Added a "slim" mutex implementation based on std::atomic, reducing state
size for strands, sockets, and other descriptors.
Added support for compilation under Cygwin64, including without
__USE_W32_SOCKETS.
Added the ability to override BOOST_ASIO_DECL before including Asio headers.
Fixed MSG_NOSIGNAL handling on NetBSD.
Fixed the build with recent Boost versions that no longer support linking
against boost_system.
Fixed compatibility with musl libc on older Android.
Fixed detection of std::aligned_alloc on older Apple platforms.
Fixed a warning in serial_port_base::character_size::store with MSVC.
Clarified the IPv4 vs IPv6 semantics of ip::multicast::outbound_interface in
the documentation.
Updated TLS v1.3 context initialisation to correctly detect LibreSSL support.
Fixed compatibility with recent OpenSSL API changes around X509 constness.
Consult the Revision History for further details.
Atomic:
Fixed compilation of thread_pause on PowerPC with Apple compilers. (#79)
Beast:
Fixed typecast warnings in inflate_with_eb.
Enforced 8KB sanity limit on chunk headers.
Made OpenSSL an optional dependency for tests.
Removed dependency on Boost.StaticAssert.
Added HTTP2-Settings to HTTP field enum.
Charconv:
Fixed overflow in to_chars of negative 128-bit integers whose absolute value
is less than 2^64
Core:
The header boost/is_placeholder.hpp has been moved from Bind to Core. (#90)
Describe:
Under C++20, described nested enums now work when the enclosing class is
still incomplete. (Thanks to Julien Blanc.)
Made enum_to_string constexpr. (Thanks to Julien Blanc.)
DynamicBitset:
Added a missing friend declaration for operator-(
const bit_iterator_base< Iter > & lhs,
const bit_iterator_base< Iter > & rhs ).
Fixed compilation with standard library implementations which use raw
pointers as iterators.
Fixed from_block_range() to prevent it from setting any bit in the unused
part of the bitset.
Exception:
Added customizable serialization API, built-in support for Boost.JSON and
nlohmann/json.
Filesystem:
Boost.Filesystem now defines and uses its own platform macros
BOOST_FILESYSTEM_POSIX_API and BOOST_FILESYSTEM_WINDOWS_API. The
old BOOST_POSIX_API and BOOST_WINDOWS_API macros are still defined
by Boost.System. Boost.Filesystem will check that the two sets of
macros are in sync and by default will fail to compile if not. The
compilation error can be reduced to a warning by defining
BOOST_FILESYSTEM_ALLOW_SYSTEM_API_MISMATCH to 1 or disabled entirely
by defining it to 2. Note that in this case the error code values
reported by Boost.Filesystem will not match the error category.
On POSIX platforms not supporting openat and related APIs, fixed an error
reported by recursive_directory_iterator increment when the iterator
encounters a dangling symlink and following symlinks is disabled.
Breaking change for Cygwin users. The library now treats Cygwin as a POSIX
platform. This has several user-facing consequences, in particular:
The path::value_type type has changed from wchar_t to char. As on other
POSIX platforms, wide character paths will be converted to the
narrow character encoding using the locale set by path::imbue. Note
that since Cygwin is running on top of Windows, it will also perform
character code conversion internally. It is important that locale in
the Cygwin environment is configured correctly.
Path syntax now follows POSIX conventions, Windows-specific paths (e.g.
UNC paths, drive names and path prefixes) are not supported.
Certain Windows-specific parts of the API will become inaccessible.
Since reparse points are a Windows-only feature,
file_type::reparse_file will not be reported for files. Reparse
point handling is dependent on Cygwin runtime behavior.
Cygwin has its own implementation of symlinks that is incompatible with
native Windows symlinks. Boost.Filesystem will now create and
operate on Cygwin symlinks.
Error codes reported by Boost.Filesystem will now use POSIX errno values.
On DragonFly BSD, NetBSD and Solaris, Boost.Filesystem default path locale
now uses UTF-8 for path character encoding.
On Linux, use read/write loop implementation of copy_file and copy for
configfs, securityfs, cgroup and cgroup2 filesystems, in addition to
the previously blacklisted filesystems.
JSON:
Changed value construction from std::initializer_list to use value_from.
LEAF:
Added customizable serialization API, built-in support for Boost.JSON and
nlohmann/json.
Added support for using LEAF error objects across DLL boundaries on Windows
(off by default).
Refinements in the internal TLS API (e.g. Win32, embedded).
Improvements in the diagnostics system and in the on_error implementation.
Implementation quality improvements (e.g. more precise use of noexcept).
Removed the deprecated verbose_diagnostic_info (replaced by diagnostic_details).
LexicalCast:
Implemented initial version of C++20 module boost.lexical_cast.
Log:
Enabled building interprocess communication support on Cygwin by default.
Math:
Added find_non_centrality finding function for non_central_f_distribution
Added parameter finding function for non_central_t_distribution
Added function for the log of the incomplete gamma function, lgamma_q
Added function for the log of the lower incomplete gamma function, lgamma_p
Added domain() function for pchip
Fixed broken CUDA support in the logistic distribution
Fixed incorrect floating point traits for Windows on ARM64
Fixed incorrect result ibeta for large arguments
Fixed incorrect ellint_2 for N * PI / 2 for phi argument.
Require user to explicitly enable CUDA rather than assuming based off
presence of NVCC
MultiIndex:
Breaking change: All type lists accepted or provided by the library
(indexed_by, tag, nested typedefs index_specifier_type_list,
index_type_list, iterator_type_list and const_iterator_type_list)
are no longer based on Boost.MPL but instead they are now Boost.Mp11
lists. As a result, Boost.MultiIndex doesn’t depend anymore on
Boost.MPL. It is expected that most user code won’t be impacted by
this change, but the previous behavior may be restored, however, by
globally defining the macro BOOST_MULTI_INDEX_ENABLE_MPL_SUPPORT.
Legacy support for Boost.MPL may be eventually deprecated and
removed in the future.
Breaking change: composite_key and associated class templates
(composite_key_equal_to, composite_key_compare, composite_key_hash)
have been made variadic (previously the maximum number of template
arguments was limited by
BOOST_MULTI_INDEX_LIMIT_COMPOSITE_KEY_SIZE). This change should be
transparent to users, with the exception that
composite_key::key_extractors returns a std::tuple instead of a
boost::tuple (and similarly for the rest of affected class templates).
Removed internal workarounds and fallbacks to support pre-C++11 compilers.
MSM:
New features (backmp11):
Improve support for the deferred_events property in hierarchical state
machines (#173)
Support conditional deferral with the deferred_events property (#155)
Simplified functor signatures (#175)
Merge queued and deferred events into a single event pool (#168)
Small object optimization for events in the event pool (#172)
Improve runtime performance with a flat_fold dispatch strategy (#180)
Further optimize compilation, with up to 25% faster compile times and
lower RAM consumption compared to version 1.90
Bug fixes (backmp11):
Incorrect FSM type in calls to on_entry(…) and on_exit(…) (#167)
Completion events fire too often (#166)
Transitions in hierarchical state machines are not selected correctly
(favor_compile_time) (#200)
state_machine cannot be moved (#205)
Breaking change (backmp11): Direct access to the event pool is changed from
public to protected, because manipulating it outside of the library
code can lead to undefined behavior.
OpenMethod:
Inter-operation with boost::intrusive_ptr.
Optional:
For compilers with full C++11 support (including "unrestricted unions" and
ref-qualifiers) changed the implementation from aligned storage to
union storage. This enables the gradual constexpr support:
In C++11, some constructors and const-qualified accessors become usable
in compile-time contexts (are core constant expressions) for types
satisfying certain constraints.
In C++14 even some mutating operations become core constant expressions
(those that do not require changing the state of optional from not
having a value to having a value), for co-operating types.
In C++17 all constructors (including copy and move) become core constant
expressions for co-operating types.
This addresses issues #132 and #143.
Breaking change. Abandoned the mechanism for customizing swap. Hardly anyone
knows about this mechanism and it was never documented.
Applied a couple of small changes to get closer to the interface of
std::optional:
Enabled syntax o = {} for putting optional objects to no-value state.
Enabled syntax o.value_or({}), which uses a default-constructed T.
Construct o = u, where o is of type optional<T> and u is of type U
convertible to T, does not create a temporary T.
Added a conversion from optional<T>& to optional<T&>. This addresses #142.
none_t is now std::equality_comparable, which means that none_t and
optional<T> model concept std::equality_comparable_with (for
std::equality_comparable T), which means that you can
std::ranges::find(rng, boost::none) for a range of optional objects.
Warning. In the future releases we intend to introduce the range interface
in optional, so that std::ranges::range<optional<T>> will be true.
This will affect the overload resolution in programs in certain
cases that make decisions based on predicates such as
std::ranges::range. For instance, the following code will start
behaving differently:
template <typename T>
void serialize(T const& v)
{
if constexpr (std::ranges::range<T>)
serialize_as_range(v);
else if constexpr (custom::is_optional_like<T>)
serialize_as_optional(v);
else
serialize_as_value(v);
}
PFR:
Added experimental C++26 Reflection based implementation. Define
BOOST_PFR_USE_CPP26_REFLECTION macro to 1 to enable.
boost::pfr::for_each_field*() functions now work well with stateful visitors.
Random:
Fixed unsigned types in binomial_distribution being inadvertently unsupported.
Redis:
Added built-in support for Sentinel deployments, which can be configured
using config::sentinel. The library handles master/replica
discovery, error detection, and reconnection automatically (PR#345,
PR#391, #237).
Added generic_flat_response, a high-performance replacement for
flat_response that uses contiguous memory and performs zero
allocations in steady state. Many thanks to Nikolai Vladimirov for
the PR (PR#340, PR#356, PR#358, PR#378, PR#383, #263).
General improvements to server push handling:
Added support for subscription tracking, which restores active
subscriptions after each reconnection. Can be accessed using
request::subscribe, request::psubscribe, request::unsubscribe and
request::punsubscribe (PR#375, #367).
Added push_parser, a view that facilitates parsing PubSub-related
messages (PR#390, #349).
connection::async_receive and connection::receive are now deprecated.
Users should prefer async_receive2, which allows for faster batch
processing (PR#381, PR#340, #331).
consume_one is now deprecated. Users should prefer
generic_flat_response::clear, instead. See the PubSub examples for
more details.
Improved the documentation and examples.
config::username, config::password, config::client_name and
config::database_index are now deprecated. Users should prefer
config::setup, instead. Added request::hello and
request::hello_setname to simplify composing setup requests (PR#392).
Log message levels have been adjusted to be more relevant: level::error for
configuration and network errors, level::info for successful
connection attempts, and level::debug for verbose output (PR#389, #395).
Added request::append() to concatenate request objects (PR#342, #341).
Fixed a problem causing request::push_range to generate invalid commands
when passed a range with std::tuple elements (PR#363, #360).
Removed <ostream> from public headers to make them more lightweight
(PR#364, #361).
Stacktrace:
Removed the compile time check for a possibly incompatible runtime. As a
result there are no false positives and the from_exception
functionality just works out-of-the-box. Rare cases of
incompatible/leaking runtimes are now reported at runtime.
Disable from_exception on cygwin (PR#219). Many thanks to David McFarland
for the PR!
Removed the has_addr2line link with C Standard Library to simplify builds
with non system-default `libstdc.so`
System:
The return type of operator|(result<T&>, U) has been changed to non-reference.
Pointers to members in r & f are now supported (by using boost::compat::invoke).
A CMake config file is now installed, even though the library is
header-only. This avoids breaking third-party CMakeLists.txt files
that contain find_package(Boost COMPONENTS system …).
error_code is now even more constexpr under C++20 and later.
Added unsafe_value to result.
Changed result<>::operator* and result<>::operator-> to throw when
!has_value(), instead of having that as a precondition. The old
behavior is now spelled unsafe_value().
Added boost/system/unwrap_and_invoke.hpp.
Test:
Add friend operators for proper comparisons of std::optional with GCC < 10
TypeIndex:
Optimized CTTI type comparisons starting from C++20.
ctti_type_index::name() now returns pretty value by default in C+\+14 and
more modern C\+\+ standards. Reduced the size of library binaries.
Unordered:
Fixed the returned value of range insertion in concurrent containers (PR#344).
UUID:
Added from_chars to boost/uuid/uuid_io.hpp.
Added a noexcept operator() overload to string_generator.
string_generator now supports the Unicode character types in addition to
char and wchar_t.
Most uuid accessors, operations, and to_chars are now constexpr when
possible (on C++14 and higher and on recent compilers).
Added SIMD implementation of to_chars, which can offer up to 5.5x
performance improvement in UUID formatting. (Andrey Semashev)
Added SIMD implementation of from_chars, which can offer up to 13x
performance improvement in UUID parsing. (Andrey Semashev)
Added uuid_from_string to boost/uuid/uuid_io.hpp.
Added a dedicated invalid_uuid exception class, derived from
std::runtime_error for backward compatibility.
URL:
Features:
All parse functions are now constexpr under C++20, enabling compile-time
URL parsing and validation (PR#976).
Added get_or for query containers, returning a default value when a key
is not present (PR#953).
Added standalone decode and decoded_size free functions (PR#952).
Added user-provided RangeRule support for grammar::range, allowing
custom grammar rules (PR#950).
Specialized std::ranges::enable_borrowed_range for all view types (PR#966).
Added EBO and default construction for token_rule_t (PR#964).
Added natvis visualizers for segments (PR#962).
Performance:
Internal URL offsets changed from size_t to uint32_t, reducing object
size on 64-bit platforms (PR#969).
Fixes:
normalize_path ambiguity from dot-dot cancellation (PR#986).
parse_query guard for empty string_view inputs (PR#949).
params_iter_impl::decrement() decoded size for values containing = (PR#978).
decode_view::remove_prefix/remove_suffix assertion (PR#978).
decode_view completeness for pct_string_view::operator*() (PR#963).
Example router is now move-only (PR#959).
GCC false-positive -Wmaybe-uninitialized in tuple_rule (PR#981).
Security review by Laurel Lye Systems Engineering: three rounds of
assessment, 21 confirmed fixes, public interface boundary tests and
fuzz tests added (PR#982, PR#988).
Documentation:
Added design rationale page (PR#987).
Documented plus scheme convention (PR#970).
Removed legacy QuickBook documentation.
Variant2:
holds_alternative<T> and get<T> have been relaxed to no longer require T to
occur exactly once in the list of alternatives. It now must occur at
least once.
Compilers Tested
Boost’s primary test compilers are:
Linux:
Clang, C++03: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 12.0.0, 13.0.0, 14.0.0, 15.0.0
Clang, C++11: 3.4, 11.0.0, 13.0.0, 14.0.0, 15.0.0
Clang, C++14: 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 5.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
Clang, C++17: 6.0.1, 7.0.0, 8.0.0, 9.0.0, 10.0.0, 11.0.0, 12.0.0, 13.0.0,
14.0.0, 15.0.0
Clang, C++20: 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
GCC, C++03: 4.6.3, 11, 12
GCC, C++11: 4.7.3, 4.8.5, 11, 12
GCC, C++14: 5.4.0, 6.4.0, 7.3.0, 8.0.1, 9.1.0, 11, 12
GCC, C++17: 7.3.0, 8.0.1, 9.1.0, 11, 12
GCC, C++20: 8.0.1, 9.1.0, 10, 11, 12
OS X:
Apple Clang, C++03: 11.0.3
Apple Clang, C++11: 11.0.3
Apple Clang, C++14: 11.0.3
Apple Clang, C++17: 11.0.3
Apple Clang, C++20: 11.0.3
Windows:
Visual C++: 10.0, 11.0, 12.0, 14.0, 14.1, 14.2, 14.3
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/common/aarch64/boost | 1097 ++++++++++++++++++------
config/rootfiles/common/riscv64/boost | 1097 ++++++++++++++++++------
config/rootfiles/common/x86_64/boost | 1121 ++++++++++++++++++-------
lfs/boost | 9 +-
4 files changed, 2521 insertions(+), 803 deletions(-)
Comments
Hello Adolf,
Thanks for the patch. Is there any particular reason why you reverted my changes from here?
https://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff;h=3312715cc11e51af73cbd7dc8d57b1bde6168ad7#patch3
-Michael
> On 17 Sep 2026, at 14:01, Adolf Belka <adolf.belka@ipfire.org> wrote:
>
> - Update from version 1_90_0 to 1_92_0
> - Update of rootfiles for all architectures
> - Changelog
> 1_92_0
> General Notes
> In previous releases, Windows .dll files were installed by b2 install into the
> library directory (<PREFIX>/lib by default), except on Cygwin, where they
> were installed into the binary directory (<PREFIX>/bin by default.)
> This has been changed to consistently install .dll files into the binary
> directory, which is the behavior most users want.
> For compatibility, a new command line option, --dlldir, has been added to b2
> install so that the directory can be overridden, and if needed, pointed to
> <PREFIX>/lib.
> The CMake configuration file installed by b2 install has been updated to support
> requesting header-only libraries as find_package components.
> That is, something like find_package(Boost REQUIRED COMPONENTS mp11) works now
> (and defines the target Boost::mp11), whereas previously it did not (only
> compiled libraries were considered components).
> This matches the behavior of the CMake configuration files installed by building
> Boost with CMake, making it possible to consume Boost in the same way
> regardless of how it was built and installed.
> As part of this regularization, the little used feature of requesting
> COMPONENTS ALL has been removed. It’s not supported by the CMake Boost
> build, and was never supported by FindBoost.
> Updated Libraries
> Asio
> Added a "scheduler" / "assume_continuation" configuration parameter, which
> allows posted handlers to be added to a fast thread-local queue.
> Added "reactor" configuration parameters for tuning the io_uring backend:
> io_uring_ring_count, io_uring_ring_size, io_uring_submit_batch_size
> and io_uring_iowait.
> Added the ability to configure ssl::stream<>'s internal buffer sizes.
> Added a forward declarations header boost/asio/fwd.hpp to safely forward
> declare Asio class names when using the versioned namespace.
> Added an example for using cancel_after with coroutines.
> Added support for co_composed under BOOST_ASIO_NO_EXCEPTIONS.
> Added a missing optimisation for concurrency_hint == 1 in
> io_context::poll_one().
> Changed all exception classes to use inline implementations, to fix an
> undefined symbol error on some platforms when using separate
> compilation.
> Changed constants and CPOs to use external linkage for C++17 and later.
> Changed "slim" mutexes to use futexes on Linux.
> Changed the reactor to use MSG_DONTWAIT, if supported, rather than setting
> the socket to be non-blocking.
> Fixed two co_composed crashes on MSVC, one when using multiple completion
> signatures, and one due to insufficient alignment.
> Fixed the return type on one cancel_after overload.
> Fixed an integer truncation issue in basic_streambuf::commit/consume.
> Fixed a buffer invalidation error triggered when SSL streams are moved, and
> clarified the buffer invalidation semantics.
> Fixed a compilation error, seen on some compilers, that occurs when using
> post, dispatch or defer with a completion handler.
> Fixed parallel_group handling of non-terminal cancellation requests.
> Fixed some thread sanitizer warnings due to atomic thread fences, and added
> extra thread sanitizer instrumentation.
> Fixed a signed/unsigned warning in basic_resolver_results, and suppressed
> some case fall-through warnings.
> Fixed experimental::channel compilation with older versions of MSVC.
> Fixed the multicast::enable_loopback socket option size on NetBSD and OpenBSD.
> Fixed standard library coroutine detection when using clang-cl.
> Improved cross-referencing within the documentation.
> Consult the Revision History for further details.
> Assert:
> Fix BOOST_VERIFY in the rare case of both BOOST_ENABLE_ASSERT_HANDLER and
> BOOST_ENABLE_ASSERT_DEBUG_HANDLER being defined.
> Beast:
> websocket::stream accepts close code 1014 (bad gateway).
> http::basic_parser ignores connection and framing fields in trailers.
> http::parser drops framing and connection-control fields carried in trailers.
> http::basic_parser rejects chunked transfer-encoding in HTTP/1.0 requests.
> http::basic_parser rejects Content-Length with Transfer-Encoding regardless
> of field order.
> http::basic_parser rejects requests with a Transfer-Encoding that does not
> end in chunked.
> http::basic_parser validates quoted-strings in chunk extensions.
> http::message::prepare_payload rejects 1xx responses with a body.
> websocket::stream rejects 64-bit frame lengths with the high bit set.
> File operations clear the error_code on success.
> The server-flex-awaitable example dispatches cancellation to the task’s strand.
> Removed dependency on Boost.Functional.
> Charconv:
> Added CUDA support allowing both to_chars and from_chars for integers to be
> used in CUDA kernels
> Fixed support for Clang on PPC64LE as it keeps long double and __float128 as
> distinct types which was previously considered invalid via
> static_assert
> ContainerHash:
> Hashing a valueless std::variant instance no longer throws.
> Container:
> Added new boost::container::hub container designed by Joaquín M. López Muñoz.
> See the Hub Container chapter in the Container documentation for more
> information.
> Fixed bugs/issues:
> Wrong overload resolution protection in implementation of P2363R5 (#334).
> Compile error with erase and small_vector<std::string> (#336).
> uses_allocator_construction.hpp: missing #include …/config_end.hpp (#338).
> Added unchecked_emplace_back and unchecked_push_back to
> boost::container::vector, boost::container::static_vector, and
> boost::container::small_vector.
> Implemented C++23 P1518 change: modified allocator-extended constructors
> for all containers so that the deduction guides for containers are
> not overconstrained.
> Conversion:
> C++20 Module boost.conversion was implemented. Many thanks to Fedor Osetrov
> for the PR (PR#43)!
> Decimal:
> Added initial CUDA support allowing decimal32_t, decimal64_t, and
> decimal128_t to be used in CUDA kernels
> Added decompose function which returns the significand, exponent, and sign
> without normalization (i.e. in their current cohort)
> DLL:
> Fixed smart_library constructors from shared_library (PR#114). Many thanks
> to R. Savchenko for the PR!
> C++20 Module boost.dll was implemented. Many thanks to Fedor Osetrov for the
> PRs (PR#110, PR#111, PR#112)!
> Filesystem:
> Marked templated versions of initial_path as deprecated and removed from v4.
> Use the non-templated versions instead.
> Use readdir instead of readdir_r on more POSIX platforms, specifically on
> Mac OS and other Apple operating systems, FreeBSD, OpenBSD,
> DragonFly BSD, NetBSD, QNX 6.0 and later, Solaris 10 and later and
> Illumos-based systems. Solaris users with gcc are recommended to
> define SunOS_5_x macros according to their target Solaris version
> (e.g. SunOS_5_11) when building Boost. (#349)
> Support for platforms with non-thread-safe readdir is deprecated and will be
> removed in a future release. Although not required until
> POSIX.1-2024, on modern systems readdir is thread-safe when used
> with separate DIR objects in different threads and on some systems
> readdir_r is marked as deprecated. POSIX.1-2024 has been updated
> accordingly and also marked readdir_r as obsolescent, with a planned
> removal in a future version of the specification.
> On POSIX platforms, handle EINTR error code returned from opendir, readdir
> and equivalents. Although not documented, this error code,
> reportedly, may be returned on Apple operating systems and some BSD
> systems.
> Geometry:
> Improvements (geometry):
> Drop varray implementation in favor of Boost.Container static_vector
> (PR#1458).
> Refactor/reduce misc boost dependencies (PR#1459).
> Improve short-distance accuracy of Andoyer inverse (PR#1461).
> Solved issues (geometry):
> Unit test index_rtree_exceptions_rst fails (#1399).
> Performance regression on GCC (#1452).
> Missing citation guidelines (#714).
> Two almost identical rectangles have no intersection (#1471).
> Various fixes of errors and warnings.
> Graph:
> Added a Louvain community detection algorithm for modularity-based
> clustering (PR#453).
> Removed the dependency on Boost.StaticAssert (PR#450).
> Fixed bugs and correctness issues:
> Corrected the types used in adjacency_list serialization (PR#443).
> Initialized edge_property_type in adjacency_list.hpp (PR#505).
> Fixed a wrong accessor return type (PR#504).
> Modernized types and hygiene:
> Added missing const qualifiers and replaced typedef with using in
> several headers (PR#508).
> Removed narrowing conversions in random.hpp, bandwidth.hpp, and
> king_ordering.hpp (PR#497, PR#498, PR#499).
> Replaced deprecated std::random_shuffle with std::shuffle (PR#513).
> Silenced -Wunused-* warnings and removed dead test variables (PR#510,
> PR#511, PR#512).
> Cleared GCC -Wsign-compare warnings (PR#514).
> Documentation: updated the entire documentation and migrated to a new
> visual design (PR#469, PR#491, PR#509, PR#517, PR#519).
> Hash2:
> Added built-in support for std::optional
> Added built-in support for std::variant, std::monostate
> Heap:
> This release is the last to support C++14. Future releases will require C++17.
> ICL:
> Starting with version 22, libc++ has changed some lookup algorithms of its
> associative containers in a way that breaks ICL’s assumptions and
> behavior. The library internals have been refactored to solve the
> problem and make ICL robust against future decisions of the C++
> committee regarding non-heterogeneous lookup for associative
> containers (PR#54, LWG4752).
> Fixed C++20-related problems with std::iter_value_t<element_iterator> and
> GCC 10-12’s handling of rewritten relational operators (PR#54).
> Fixed a GCC 10-11 codegen bug (PR#54).
> Interprocess:
> Fixed bugs:
> AIX build fix: fix return type in get_invalid_systemwide_thread_id (PR#280).
> Locks in message_queue_t cover more code than intended (#281).
> Iterator:
> Added is_*_iterator_v variable templates in C++14 and later, equivalent to
> the corresponding iterator traits.
> The distance and advance algorithms are now constrained by requiring
> is_iterator to return true for the iterator arguments. (PR#96)
> LexicalCast:
> C++20 Module boost.lexical_cast was implemented. Many thanks to Fedor
> Osetrov for the PR (PR#96)!
> Lockfree:
> This release is the last to support C++14. Future releases will require C++17.
> Added new boost::lockfree::mpsc_weak_queue, a multi-producer,
> single-consumer queue. While push and pop are individually
> wait-free, the queue is not linearizable and a producer that stalls
> between exchanging the tail and linking its node can permanently
> break the queue, so it is not strictly lock-free.
> Added new boost::lockfree::bounded_ticket_queue, a ringbuffer-based bounded
> MPMC queue. The queue is linearizable and wait-free when configured
> with a single producer and single consumer. In multi-producer or
> multi-consumer configurations, a stalled thread that has claimed a
> slot can block progress, so the queue is not strictly lock-free.
> Math:
> Added a degree of freedom finder to the Student’s T and Non-centeral F
> disributions
> Fixed CUDA compilation where host functions were invalidly being marked as
> device during compilation
> Increased testing coverage of distributions leading to several overflow fixes
> Mp11:
> Improved the performance of a number of algorithms (contributed by Jonathan
> Poelen)
> MQTT5:
> mqtt_client::async_run now completes immediately with
> client::error::already_running when the client is already running (#54).
> Fixed several missing length checks when decoding packets received from the
> broker. Malformed packets could previously cause out-of-bounds reads
> or excessive memory allocation. Many thanks to Team-Atlanta for
> reporting these issues.
> MSM:
> New features (backmp11):
> Provide an observer API for logging support (#220)
> Forward Kleene events to actions and guards without conversion (#229)
> Ensure basic exception guarantee and propagate exceptions to the caller
> (#221)
> Provide a reflection API and serialization support for
> Boost.Serialization, Boost.JSON and nlohmann/json (#197)
> Rework terminate and interrupt state handling and provide a
> machine_state enum (#244)
> Configurable event pool and inline storage (#239)
> API reference and examples are now available
> Bug fixes (backmp11):
> State machine processes events although it is not running (#198)
> Breaking changes (backmp11):
> Events in process_event(…) are not enqueued automatically anymore to
> reduce memory footprint, use enqueue_event(…) in actions (#178)
> The back-end does not forward constructor arguments to the front-end
> anymore, it must be default-constructible. To use custom
> constructors, define them in the back-end (#232)
> The deprecated APIs process_queued_events() and
> process_single_queued_event() are removed, use process_event_pool(…)
> instead
> The default active state switch policy is set to "after source exit" in
> compliance to the UML specification. The other options are not
> UML-compliant and will be removed (#222)
> The back-end uses its own process_result type with new enum values
> instead of aliasing the enum of the back namespace. The old enum
> values are deprecated (#242) and will be removed
> fix(back, back11): Infinite recursion with event deferral in orthogonal
> regions (regression from 1.78) (#184)
> MultiIndex:
> Fancy pointer support has been extended so that multi_index_container
> iterators now store references to the elements through the
> allocator’s pointer type. In particular, this means that iterators
> can now be placed in shared memory using Boost.Interprocess allocators.
> Fixed a performance issue with hashed indices when rehashing at very large
> container sizes (PR#94). Contributed by Daniel Král.
> Multiprecision:
> Added data() member function to float128 to match the rest of the library
> Fixed issue blocking compilation of constexpr expression templates with Clang
> MySQL:
> Added a way to configure which character set the server uses by default, to
> make tracking more intelligent. This can be used to avoid redundant
> SET NAMES statements. See pool_params::charset_strategy and
> connect_params::server_default_charset (PR#511).
> Reduces `pool_params::ping_interval’s default from 1h to 10s. This improves
> the detection of broken connections (PR#512).
> The read buffer has been optimized by reducing the frequency of data
> rotations when incomplete messages are received (PR#501).
> Contributed by @vsoulgard.
> TLS certificates for CI testing are now generated dynamically, rather than
> being committed into the repository. This cleans up reports raised
> by vulnerability scanners (PR#505).
> PFR:
> C++20 Module boost.pfr is now also tested with and without import std. Many
> thanks to Fedor Osetrov for the PR (PR#233)!
> PolyCollection:
> Made variant_collection_value_type_impl<Ts...>'s relational operators
> available only when the corresponding relational operator is
> available for all Ts..., in accordance with WG21 paper P2944R3.
> Fixed incompatibility problem with libc++ v21 or higher (PR#34).
> Redis:
> Fixed a case of undefined behavior within connection when attempting to
> cancel a request that has completed, but whose handler hasn’t been
> called yet. This happened due to an incorrect erase-remove use with
> a std::deque (PR#428). Contributed by @L0rentz.
> Optimized buffer rotations to reduce CPU consumption when many small
> messages arrive in a single network packet (PR#415).
> Added initializers to all members in the config struct. This allows using
> designated initializers to create config objects (PR#424).
> Removed the standalone workflow from the CMake. This was an undocumented way
> of consuming Boost.Redis with CMake aimed to internal development
> (PR#409).
> Stacktrace:
> C++20 Modules were implemented:
> boost.stacktrace_dump module for safe_dump interface
> boost.stacktrace_<backend> module for each unwind/collect implementation
> method
> boost.stacktrace module exposing best available backend implementation.
> Many thanks to Fedor Osetrov for the PRs (PR#230, PR#227)!
> C++20 Module boost.stacktrace is now also tested with and without import
> std. Many thanks to Fedor Osetrov for the PR (PR#231)!
> Fixed Boost::from_exception link on MinGW. Many thanks to Orgad Shaneh for
> the PR (PR#225)!
> System:
> Fix unwrap_and_invoke for functions returning void.
> TypeIndex:
> C++20 Module boost.type_index is now also tested with and without import
> std. Many thanks to Fedor Osetrov for the PR (PR#47)!
> Unordered:
> Added interoperability with C++20 ranges to all the containers in the
> library: insert_range (plus insert_range_(or|and)_[c]visit for
> concurrent containers), std::from_range construction and associated
> CTAD deduction guides. The boost::unordered::from_range construction
> tag is provided as an alternative to C++23 std::from_range or when
> this is not available.
> Fixed a performance issue with closed-addressing containers when rehashing
> at very large container sizes (PR#348). Contributed by Daniel Král.
> URL:
> Fixed a heap buffer overflow in normalize_path for authority-less URLs whose
> normalized path begins with // (PR#995).
> Fixed an uninitialized read in ipv6_address_rule when an embedded IPv4
> address has no preceding h16, e.g. https://[::. (PR#994).
> Fixed unsigned-integer-overflow sanitizer findings in case-insensitive
> comparisons, hashing, and format (PR#994).
> Fixed decoded query-size tracking in url_base::edit_params (PR#990).
> Third-round security review fixes: url_view copy from a null source, two
> incorrect noexcept specifiers, and decoded-length tracking when
> iterating segments in reverse (PR#988).
> Wave:
> Introduce digit separators (C++14), module keyword (C++20), and size_t
> literals (C++23).
> Fixed bugs.
> find_include_file incorrectly accepts directories as include files (#243).
> Predefined macros (__FILE__, __LINE__, __INCLUDE_LEVEL__) are expanded
> twice when expanding_object_like_macro returns true (#246).
> Updated Tools
> B2:
> Includes release of B2 version 5.5.3.
> Compilers Tested
> Boost’s primary test compilers are:
> Linux:
> Clang, C++03: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 12.0.0, 13.0.0, 14.0.0, 15.0.0
> Clang, C++11: 3.4, 11.0.0, 13.0.0, 14.0.0, 15.0.0
> Clang, C++14: 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 5.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
> Clang, C++17: 6.0.1, 7.0.0, 8.0.0, 9.0.0, 10.0.0, 11.0.0, 12.0.0, 13.0.0,
> 14.0.0, 15.0.0
> Clang, C++20: 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
> GCC, C++03: 4.6.3, 11, 12
> GCC, C++11: 4.7.3, 4.8.5, 11, 12
> GCC, C++14: 5.4.0, 6.4.0, 7.3.0, 8.0.1, 9.1.0, 11, 12
> GCC, C++17: 7.3.0, 8.0.1, 9.1.0, 11, 12
> GCC, C++20: 8.0.1, 9.1.0, 10, 11, 12
> OS X:
> Apple Clang, C++03: 11.0.3
> Apple Clang, C++11: 11.0.3
> Apple Clang, C++14: 11.0.3
> Apple Clang, C++17: 11.0.3
> Apple Clang, C++20: 11.0.3
> Windows:
> Visual C++: 10.0, 11.0, 12.0, 14.0, 14.1, 14.2, 14.3
> 1_91_0
> General Notes
> StaticAssert has been merged into Config. This includes code, tests and
> documentation. For backward compatibility git submodule, CMake and b2
> targets of StaticAssert are still available; the targets simply introduce a
> dependency on Config. Eventually, the submodule and targets will be removed.
> Users are recommended to update their dependencies on StaticAssert to
> replace it with Config. No C++ code modifications are necessary. Most Boost
> libraries have been updated accordingly.
> New Libraries
> Decimal:
> An implementation of IEEE754 Decimal Floating Point Numbers, from Matt
> Borland and Christopher Kormanyos.
> Updated Libraries
> Any:
> Fixed import std detection in CMake.
> Simplified implementation of boost::anys::basic_any.
> Asio
> Added optional binary versioning via an inline namespace, allowing multiple
> Asio versions to coexist in the same process without symbol conflicts.
> Changed the default Windows mutex implementation from CRITICAL_SECTION to
> SRWLOCK.
> Added a "slim" mutex implementation based on std::atomic, reducing state
> size for strands, sockets, and other descriptors.
> Added support for compilation under Cygwin64, including without
> __USE_W32_SOCKETS.
> Added the ability to override BOOST_ASIO_DECL before including Asio headers.
> Fixed MSG_NOSIGNAL handling on NetBSD.
> Fixed the build with recent Boost versions that no longer support linking
> against boost_system.
> Fixed compatibility with musl libc on older Android.
> Fixed detection of std::aligned_alloc on older Apple platforms.
> Fixed a warning in serial_port_base::character_size::store with MSVC.
> Clarified the IPv4 vs IPv6 semantics of ip::multicast::outbound_interface in
> the documentation.
> Updated TLS v1.3 context initialisation to correctly detect LibreSSL support.
> Fixed compatibility with recent OpenSSL API changes around X509 constness.
> Consult the Revision History for further details.
> Atomic:
> Fixed compilation of thread_pause on PowerPC with Apple compilers. (#79)
> Beast:
> Fixed typecast warnings in inflate_with_eb.
> Enforced 8KB sanity limit on chunk headers.
> Made OpenSSL an optional dependency for tests.
> Removed dependency on Boost.StaticAssert.
> Added HTTP2-Settings to HTTP field enum.
> Charconv:
> Fixed overflow in to_chars of negative 128-bit integers whose absolute value
> is less than 2^64
> Core:
> The header boost/is_placeholder.hpp has been moved from Bind to Core. (#90)
> Describe:
> Under C++20, described nested enums now work when the enclosing class is
> still incomplete. (Thanks to Julien Blanc.)
> Made enum_to_string constexpr. (Thanks to Julien Blanc.)
> DynamicBitset:
> Added a missing friend declaration for operator-(
> const bit_iterator_base< Iter > & lhs,
> const bit_iterator_base< Iter > & rhs ).
> Fixed compilation with standard library implementations which use raw
> pointers as iterators.
> Fixed from_block_range() to prevent it from setting any bit in the unused
> part of the bitset.
> Exception:
> Added customizable serialization API, built-in support for Boost.JSON and
> nlohmann/json.
> Filesystem:
> Boost.Filesystem now defines and uses its own platform macros
> BOOST_FILESYSTEM_POSIX_API and BOOST_FILESYSTEM_WINDOWS_API. The
> old BOOST_POSIX_API and BOOST_WINDOWS_API macros are still defined
> by Boost.System. Boost.Filesystem will check that the two sets of
> macros are in sync and by default will fail to compile if not. The
> compilation error can be reduced to a warning by defining
> BOOST_FILESYSTEM_ALLOW_SYSTEM_API_MISMATCH to 1 or disabled entirely
> by defining it to 2. Note that in this case the error code values
> reported by Boost.Filesystem will not match the error category.
> On POSIX platforms not supporting openat and related APIs, fixed an error
> reported by recursive_directory_iterator increment when the iterator
> encounters a dangling symlink and following symlinks is disabled.
> Breaking change for Cygwin users. The library now treats Cygwin as a POSIX
> platform. This has several user-facing consequences, in particular:
> The path::value_type type has changed from wchar_t to char. As on other
> POSIX platforms, wide character paths will be converted to the
> narrow character encoding using the locale set by path::imbue. Note
> that since Cygwin is running on top of Windows, it will also perform
> character code conversion internally. It is important that locale in
> the Cygwin environment is configured correctly.
> Path syntax now follows POSIX conventions, Windows-specific paths (e.g.
> UNC paths, drive names and path prefixes) are not supported.
> Certain Windows-specific parts of the API will become inaccessible.
> Since reparse points are a Windows-only feature,
> file_type::reparse_file will not be reported for files. Reparse
> point handling is dependent on Cygwin runtime behavior.
> Cygwin has its own implementation of symlinks that is incompatible with
> native Windows symlinks. Boost.Filesystem will now create and
> operate on Cygwin symlinks.
> Error codes reported by Boost.Filesystem will now use POSIX errno values.
> On DragonFly BSD, NetBSD and Solaris, Boost.Filesystem default path locale
> now uses UTF-8 for path character encoding.
> On Linux, use read/write loop implementation of copy_file and copy for
> configfs, securityfs, cgroup and cgroup2 filesystems, in addition to
> the previously blacklisted filesystems.
> JSON:
> Changed value construction from std::initializer_list to use value_from.
> LEAF:
> Added customizable serialization API, built-in support for Boost.JSON and
> nlohmann/json.
> Added support for using LEAF error objects across DLL boundaries on Windows
> (off by default).
> Refinements in the internal TLS API (e.g. Win32, embedded).
> Improvements in the diagnostics system and in the on_error implementation.
> Implementation quality improvements (e.g. more precise use of noexcept).
> Removed the deprecated verbose_diagnostic_info (replaced by diagnostic_details).
> LexicalCast:
> Implemented initial version of C++20 module boost.lexical_cast.
> Log:
> Enabled building interprocess communication support on Cygwin by default.
> Math:
> Added find_non_centrality finding function for non_central_f_distribution
> Added parameter finding function for non_central_t_distribution
> Added function for the log of the incomplete gamma function, lgamma_q
> Added function for the log of the lower incomplete gamma function, lgamma_p
> Added domain() function for pchip
> Fixed broken CUDA support in the logistic distribution
> Fixed incorrect floating point traits for Windows on ARM64
> Fixed incorrect result ibeta for large arguments
> Fixed incorrect ellint_2 for N * PI / 2 for phi argument.
> Require user to explicitly enable CUDA rather than assuming based off
> presence of NVCC
> MultiIndex:
> Breaking change: All type lists accepted or provided by the library
> (indexed_by, tag, nested typedefs index_specifier_type_list,
> index_type_list, iterator_type_list and const_iterator_type_list)
> are no longer based on Boost.MPL but instead they are now Boost.Mp11
> lists. As a result, Boost.MultiIndex doesn’t depend anymore on
> Boost.MPL. It is expected that most user code won’t be impacted by
> this change, but the previous behavior may be restored, however, by
> globally defining the macro BOOST_MULTI_INDEX_ENABLE_MPL_SUPPORT.
> Legacy support for Boost.MPL may be eventually deprecated and
> removed in the future.
> Breaking change: composite_key and associated class templates
> (composite_key_equal_to, composite_key_compare, composite_key_hash)
> have been made variadic (previously the maximum number of template
> arguments was limited by
> BOOST_MULTI_INDEX_LIMIT_COMPOSITE_KEY_SIZE). This change should be
> transparent to users, with the exception that
> composite_key::key_extractors returns a std::tuple instead of a
> boost::tuple (and similarly for the rest of affected class templates).
> Removed internal workarounds and fallbacks to support pre-C++11 compilers.
> MSM:
> New features (backmp11):
> Improve support for the deferred_events property in hierarchical state
> machines (#173)
> Support conditional deferral with the deferred_events property (#155)
> Simplified functor signatures (#175)
> Merge queued and deferred events into a single event pool (#168)
> Small object optimization for events in the event pool (#172)
> Improve runtime performance with a flat_fold dispatch strategy (#180)
> Further optimize compilation, with up to 25% faster compile times and
> lower RAM consumption compared to version 1.90
> Bug fixes (backmp11):
> Incorrect FSM type in calls to on_entry(…) and on_exit(…) (#167)
> Completion events fire too often (#166)
> Transitions in hierarchical state machines are not selected correctly
> (favor_compile_time) (#200)
> state_machine cannot be moved (#205)
> Breaking change (backmp11): Direct access to the event pool is changed from
> public to protected, because manipulating it outside of the library
> code can lead to undefined behavior.
> OpenMethod:
> Inter-operation with boost::intrusive_ptr.
> Optional:
> For compilers with full C++11 support (including "unrestricted unions" and
> ref-qualifiers) changed the implementation from aligned storage to
> union storage. This enables the gradual constexpr support:
> In C++11, some constructors and const-qualified accessors become usable
> in compile-time contexts (are core constant expressions) for types
> satisfying certain constraints.
> In C++14 even some mutating operations become core constant expressions
> (those that do not require changing the state of optional from not
> having a value to having a value), for co-operating types.
> In C++17 all constructors (including copy and move) become core constant
> expressions for co-operating types.
> This addresses issues #132 and #143.
> Breaking change. Abandoned the mechanism for customizing swap. Hardly anyone
> knows about this mechanism and it was never documented.
> Applied a couple of small changes to get closer to the interface of
> std::optional:
> Enabled syntax o = {} for putting optional objects to no-value state.
> Enabled syntax o.value_or({}), which uses a default-constructed T.
> Construct o = u, where o is of type optional<T> and u is of type U
> convertible to T, does not create a temporary T.
> Added a conversion from optional<T>& to optional<T&>. This addresses #142.
> none_t is now std::equality_comparable, which means that none_t and
> optional<T> model concept std::equality_comparable_with (for
> std::equality_comparable T), which means that you can
> std::ranges::find(rng, boost::none) for a range of optional objects.
> Warning. In the future releases we intend to introduce the range interface
> in optional, so that std::ranges::range<optional<T>> will be true.
> This will affect the overload resolution in programs in certain
> cases that make decisions based on predicates such as
> std::ranges::range. For instance, the following code will start
> behaving differently:
> template <typename T>
> void serialize(T const& v)
> {
> if constexpr (std::ranges::range<T>)
> serialize_as_range(v);
> else if constexpr (custom::is_optional_like<T>)
> serialize_as_optional(v);
> else
> serialize_as_value(v);
> }
> PFR:
> Added experimental C++26 Reflection based implementation. Define
> BOOST_PFR_USE_CPP26_REFLECTION macro to 1 to enable.
> boost::pfr::for_each_field*() functions now work well with stateful visitors.
> Random:
> Fixed unsigned types in binomial_distribution being inadvertently unsupported.
> Redis:
> Added built-in support for Sentinel deployments, which can be configured
> using config::sentinel. The library handles master/replica
> discovery, error detection, and reconnection automatically (PR#345,
> PR#391, #237).
> Added generic_flat_response, a high-performance replacement for
> flat_response that uses contiguous memory and performs zero
> allocations in steady state. Many thanks to Nikolai Vladimirov for
> the PR (PR#340, PR#356, PR#358, PR#378, PR#383, #263).
> General improvements to server push handling:
> Added support for subscription tracking, which restores active
> subscriptions after each reconnection. Can be accessed using
> request::subscribe, request::psubscribe, request::unsubscribe and
> request::punsubscribe (PR#375, #367).
> Added push_parser, a view that facilitates parsing PubSub-related
> messages (PR#390, #349).
> connection::async_receive and connection::receive are now deprecated.
> Users should prefer async_receive2, which allows for faster batch
> processing (PR#381, PR#340, #331).
> consume_one is now deprecated. Users should prefer
> generic_flat_response::clear, instead. See the PubSub examples for
> more details.
> Improved the documentation and examples.
> config::username, config::password, config::client_name and
> config::database_index are now deprecated. Users should prefer
> config::setup, instead. Added request::hello and
> request::hello_setname to simplify composing setup requests (PR#392).
> Log message levels have been adjusted to be more relevant: level::error for
> configuration and network errors, level::info for successful
> connection attempts, and level::debug for verbose output (PR#389, #395).
> Added request::append() to concatenate request objects (PR#342, #341).
> Fixed a problem causing request::push_range to generate invalid commands
> when passed a range with std::tuple elements (PR#363, #360).
> Removed <ostream> from public headers to make them more lightweight
> (PR#364, #361).
> Stacktrace:
> Removed the compile time check for a possibly incompatible runtime. As a
> result there are no false positives and the from_exception
> functionality just works out-of-the-box. Rare cases of
> incompatible/leaking runtimes are now reported at runtime.
> Disable from_exception on cygwin (PR#219). Many thanks to David McFarland
> for the PR!
> Removed the has_addr2line link with C Standard Library to simplify builds
> with non system-default `libstdc.so`
> System:
> The return type of operator|(result<T&>, U) has been changed to non-reference.
> Pointers to members in r & f are now supported (by using boost::compat::invoke).
> A CMake config file is now installed, even though the library is
> header-only. This avoids breaking third-party CMakeLists.txt files
> that contain find_package(Boost COMPONENTS system …).
> error_code is now even more constexpr under C++20 and later.
> Added unsafe_value to result.
> Changed result<>::operator* and result<>::operator-> to throw when
> !has_value(), instead of having that as a precondition. The old
> behavior is now spelled unsafe_value().
> Added boost/system/unwrap_and_invoke.hpp.
> Test:
> Add friend operators for proper comparisons of std::optional with GCC < 10
> TypeIndex:
> Optimized CTTI type comparisons starting from C++20.
> ctti_type_index::name() now returns pretty value by default in C+\+14 and
> more modern C\+\+ standards. Reduced the size of library binaries.
> Unordered:
> Fixed the returned value of range insertion in concurrent containers (PR#344).
> UUID:
> Added from_chars to boost/uuid/uuid_io.hpp.
> Added a noexcept operator() overload to string_generator.
> string_generator now supports the Unicode character types in addition to
> char and wchar_t.
> Most uuid accessors, operations, and to_chars are now constexpr when
> possible (on C++14 and higher and on recent compilers).
> Added SIMD implementation of to_chars, which can offer up to 5.5x
> performance improvement in UUID formatting. (Andrey Semashev)
> Added SIMD implementation of from_chars, which can offer up to 13x
> performance improvement in UUID parsing. (Andrey Semashev)
> Added uuid_from_string to boost/uuid/uuid_io.hpp.
> Added a dedicated invalid_uuid exception class, derived from
> std::runtime_error for backward compatibility.
> URL:
> Features:
> All parse functions are now constexpr under C++20, enabling compile-time
> URL parsing and validation (PR#976).
> Added get_or for query containers, returning a default value when a key
> is not present (PR#953).
> Added standalone decode and decoded_size free functions (PR#952).
> Added user-provided RangeRule support for grammar::range, allowing
> custom grammar rules (PR#950).
> Specialized std::ranges::enable_borrowed_range for all view types (PR#966).
> Added EBO and default construction for token_rule_t (PR#964).
> Added natvis visualizers for segments (PR#962).
> Performance:
> Internal URL offsets changed from size_t to uint32_t, reducing object
> size on 64-bit platforms (PR#969).
> Fixes:
> normalize_path ambiguity from dot-dot cancellation (PR#986).
> parse_query guard for empty string_view inputs (PR#949).
> params_iter_impl::decrement() decoded size for values containing = (PR#978).
> decode_view::remove_prefix/remove_suffix assertion (PR#978).
> decode_view completeness for pct_string_view::operator*() (PR#963).
> Example router is now move-only (PR#959).
> GCC false-positive -Wmaybe-uninitialized in tuple_rule (PR#981).
> Security review by Laurel Lye Systems Engineering: three rounds of
> assessment, 21 confirmed fixes, public interface boundary tests and
> fuzz tests added (PR#982, PR#988).
> Documentation:
> Added design rationale page (PR#987).
> Documented plus scheme convention (PR#970).
> Removed legacy QuickBook documentation.
> Variant2:
> holds_alternative<T> and get<T> have been relaxed to no longer require T to
> occur exactly once in the list of alternatives. It now must occur at
> least once.
> Compilers Tested
> Boost’s primary test compilers are:
> Linux:
> Clang, C++03: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 12.0.0, 13.0.0, 14.0.0, 15.0.0
> Clang, C++11: 3.4, 11.0.0, 13.0.0, 14.0.0, 15.0.0
> Clang, C++14: 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 5.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
> Clang, C++17: 6.0.1, 7.0.0, 8.0.0, 9.0.0, 10.0.0, 11.0.0, 12.0.0, 13.0.0,
> 14.0.0, 15.0.0
> Clang, C++20: 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
> GCC, C++03: 4.6.3, 11, 12
> GCC, C++11: 4.7.3, 4.8.5, 11, 12
> GCC, C++14: 5.4.0, 6.4.0, 7.3.0, 8.0.1, 9.1.0, 11, 12
> GCC, C++17: 7.3.0, 8.0.1, 9.1.0, 11, 12
> GCC, C++20: 8.0.1, 9.1.0, 10, 11, 12
> OS X:
> Apple Clang, C++03: 11.0.3
> Apple Clang, C++11: 11.0.3
> Apple Clang, C++14: 11.0.3
> Apple Clang, C++17: 11.0.3
> Apple Clang, C++20: 11.0.3
> Windows:
> Visual C++: 10.0, 11.0, 12.0, 14.0, 14.1, 14.2, 14.3
>
> Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
> ---
> config/rootfiles/common/aarch64/boost | 1097 ++++++++++++++++++------
> config/rootfiles/common/riscv64/boost | 1097 ++++++++++++++++++------
> config/rootfiles/common/x86_64/boost | 1121 ++++++++++++++++++-------
> lfs/boost | 9 +-
> 4 files changed, 2521 insertions(+), 803 deletions(-)
>
> diff --git a/config/rootfiles/common/aarch64/boost b/config/rootfiles/common/aarch64/boost
> index e592447a3..20cf81625 100644
> --- a/config/rootfiles/common/aarch64/boost
> +++ b/config/rootfiles/common/aarch64/boost
> @@ -439,6 +439,7 @@
> #usr/include/boost/asio/detail/array_fwd.hpp
> #usr/include/boost/asio/detail/assert.hpp
> #usr/include/boost/asio/detail/atomic_count.hpp
> +#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
> #usr/include/boost/asio/detail/base_from_cancellation_state.hpp
> #usr/include/boost/asio/detail/base_from_completion_cond.hpp
> #usr/include/boost/asio/detail/bind_handler.hpp
> @@ -477,6 +478,7 @@
> #usr/include/boost/asio/detail/fd_set_adapter.hpp
> #usr/include/boost/asio/detail/fenced_block.hpp
> #usr/include/boost/asio/detail/functional.hpp
> +#usr/include/boost/asio/detail/futex_slim_mutex.hpp
> #usr/include/boost/asio/detail/future.hpp
> #usr/include/boost/asio/detail/global.hpp
> #usr/include/boost/asio/detail/handler_alloc_helpers.hpp
> @@ -527,6 +529,7 @@
> #usr/include/boost/asio/detail/impl/thread_context.ipp
> #usr/include/boost/asio/detail/impl/throw_error.ipp
> #usr/include/boost/asio/detail/impl/timer_queue_set.ipp
> +#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_event.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
> @@ -534,7 +537,6 @@
> #usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
> -#usr/include/boost/asio/detail/impl/win_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
> #usr/include/boost/asio/detail/impl/win_static_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_thread.ipp
> @@ -641,6 +643,7 @@
> #usr/include/boost/asio/detail/signal_init.hpp
> #usr/include/boost/asio/detail/signal_op.hpp
> #usr/include/boost/asio/detail/signal_set_service.hpp
> +#usr/include/boost/asio/detail/slim_mutex.hpp
> #usr/include/boost/asio/detail/socket_holder.hpp
> #usr/include/boost/asio/detail/socket_ops.hpp
> #usr/include/boost/asio/detail/socket_option.hpp
> @@ -674,6 +677,7 @@
> #usr/include/boost/asio/detail/utility.hpp
> #usr/include/boost/asio/detail/wait_handler.hpp
> #usr/include/boost/asio/detail/wait_op.hpp
> +#usr/include/boost/asio/detail/win_critsec_mutex.hpp
> #usr/include/boost/asio/detail/win_event.hpp
> #usr/include/boost/asio/detail/win_fd_set_adapter.hpp
> #usr/include/boost/asio/detail/win_global.hpp
> @@ -731,8 +735,6 @@
> #usr/include/boost/asio/execution/context.hpp
> #usr/include/boost/asio/execution/context_as.hpp
> #usr/include/boost/asio/execution/executor.hpp
> -#usr/include/boost/asio/execution/impl
> -#usr/include/boost/asio/execution/impl/bad_executor.ipp
> #usr/include/boost/asio/execution/inline_exception_handling.hpp
> #usr/include/boost/asio/execution/invocable_archetype.hpp
> #usr/include/boost/asio/execution/mapping.hpp
> @@ -782,6 +784,7 @@
> #usr/include/boost/asio/experimental/use_coro.hpp
> #usr/include/boost/asio/experimental/use_promise.hpp
> #usr/include/boost/asio/file_base.hpp
> +#usr/include/boost/asio/fwd.hpp
> #usr/include/boost/asio/generic
> #usr/include/boost/asio/generic/basic_endpoint.hpp
> #usr/include/boost/asio/generic/datagram_protocol.hpp
> @@ -820,10 +823,8 @@
> #usr/include/boost/asio/impl/execution_context.hpp
> #usr/include/boost/asio/impl/execution_context.ipp
> #usr/include/boost/asio/impl/executor.hpp
> -#usr/include/boost/asio/impl/executor.ipp
> #usr/include/boost/asio/impl/io_context.hpp
> #usr/include/boost/asio/impl/io_context.ipp
> -#usr/include/boost/asio/impl/multiple_exceptions.ipp
> #usr/include/boost/asio/impl/prepend.hpp
> #usr/include/boost/asio/impl/read.hpp
> #usr/include/boost/asio/impl/read_at.hpp
> @@ -1511,6 +1512,7 @@
> #usr/include/boost/bimap/detail/map_view_base.hpp
> #usr/include/boost/bimap/detail/map_view_iterator.hpp
> #usr/include/boost/bimap/detail/modifier_adaptor.hpp
> +#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
> #usr/include/boost/bimap/detail/non_unique_views_helper.hpp
> #usr/include/boost/bimap/detail/set_view_base.hpp
> #usr/include/boost/bimap/detail/set_view_iterator.hpp
> @@ -2390,11 +2392,13 @@
> #usr/include/boost/container/detail/addressof.hpp
> #usr/include/boost/container/detail/advanced_insert_int.hpp
> #usr/include/boost/container/detail/algorithm.hpp
> +#usr/include/boost/container/detail/aligned_allocation.hpp
> #usr/include/boost/container/detail/alloc_helpers.hpp
> #usr/include/boost/container/detail/alloc_lib.h
> #usr/include/boost/container/detail/allocation_type.hpp
> #usr/include/boost/container/detail/allocator_version_traits.hpp
> #usr/include/boost/container/detail/auto_link.hpp
> +#usr/include/boost/container/detail/bit_utilities.hpp
> #usr/include/boost/container/detail/block_list.hpp
> #usr/include/boost/container/detail/block_slist.hpp
> #usr/include/boost/container/detail/compare_functors.hpp
> @@ -2404,12 +2408,14 @@
> #usr/include/boost/container/detail/container_or_allocator_rebind.hpp
> #usr/include/boost/container/detail/container_rebind.hpp
> #usr/include/boost/container/detail/copy_move_algo.hpp
> +#usr/include/boost/container/detail/deque_impl.hpp
> #usr/include/boost/container/detail/destroyers.hpp
> #usr/include/boost/container/detail/dispatch_uses_allocator.hpp
> #usr/include/boost/container/detail/dlmalloc.hpp
> #usr/include/boost/container/detail/flat_tree.hpp
> #usr/include/boost/container/detail/function_detector.hpp
> #usr/include/boost/container/detail/guards_dended.hpp
> +#usr/include/boost/container/detail/is_constructible.hpp
> #usr/include/boost/container/detail/is_container.hpp
> #usr/include/boost/container/detail/is_contiguous_container.hpp
> #usr/include/boost/container/detail/is_pair.hpp
> @@ -2434,6 +2440,7 @@
> #usr/include/boost/container/detail/pool_common.hpp
> #usr/include/boost/container/detail/pool_common_alloc.hpp
> #usr/include/boost/container/detail/pool_resource.hpp
> +#usr/include/boost/container/detail/range_utils.hpp
> #usr/include/boost/container/detail/singleton.hpp
> #usr/include/boost/container/detail/std_fwd.hpp
> #usr/include/boost/container/detail/thread_mutex.hpp
> @@ -2446,8 +2453,60 @@
> #usr/include/boost/container/detail/version_type.hpp
> #usr/include/boost/container/detail/workaround.hpp
> #usr/include/boost/container/devector.hpp
> +#usr/include/boost/container/experimental
> +#usr/include/boost/container/experimental/nest.hpp
> +#usr/include/boost/container/experimental/pmr
> +#usr/include/boost/container/experimental/pmr/nest.hpp
> +#usr/include/boost/container/experimental/segmented_all_of.hpp
> +#usr/include/boost/container/experimental/segmented_any_of.hpp
> +#usr/include/boost/container/experimental/segmented_copy.hpp
> +#usr/include/boost/container/experimental/segmented_copy_if.hpp
> +#usr/include/boost/container/experimental/segmented_copy_n.hpp
> +#usr/include/boost/container/experimental/segmented_count.hpp
> +#usr/include/boost/container/experimental/segmented_count_if.hpp
> +#usr/include/boost/container/experimental/segmented_equal.hpp
> +#usr/include/boost/container/experimental/segmented_fill.hpp
> +#usr/include/boost/container/experimental/segmented_fill_n.hpp
> +#usr/include/boost/container/experimental/segmented_find.hpp
> +#usr/include/boost/container/experimental/segmented_find_if.hpp
> +#usr/include/boost/container/experimental/segmented_find_if_not.hpp
> +#usr/include/boost/container/experimental/segmented_find_last.hpp
> +#usr/include/boost/container/experimental/segmented_find_last_if.hpp
> +#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
> +#usr/include/boost/container/experimental/segmented_for_each.hpp
> +#usr/include/boost/container/experimental/segmented_generate.hpp
> +#usr/include/boost/container/experimental/segmented_generate_n.hpp
> +#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
> +#usr/include/boost/container/experimental/segmented_is_sorted.hpp
> +#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
> +#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
> +#usr/include/boost/container/experimental/segmented_merge.hpp
> +#usr/include/boost/container/experimental/segmented_mismatch.hpp
> +#usr/include/boost/container/experimental/segmented_none_of.hpp
> +#usr/include/boost/container/experimental/segmented_partition.hpp
> +#usr/include/boost/container/experimental/segmented_partition_copy.hpp
> +#usr/include/boost/container/experimental/segmented_partition_point.hpp
> +#usr/include/boost/container/experimental/segmented_remove.hpp
> +#usr/include/boost/container/experimental/segmented_remove_copy.hpp
> +#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
> +#usr/include/boost/container/experimental/segmented_remove_if.hpp
> +#usr/include/boost/container/experimental/segmented_replace.hpp
> +#usr/include/boost/container/experimental/segmented_replace_if.hpp
> +#usr/include/boost/container/experimental/segmented_reverse.hpp
> +#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
> +#usr/include/boost/container/experimental/segmented_search.hpp
> +#usr/include/boost/container/experimental/segmented_search_n.hpp
> +#usr/include/boost/container/experimental/segmented_set_difference.hpp
> +#usr/include/boost/container/experimental/segmented_set_intersection.hpp
> +#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
> +#usr/include/boost/container/experimental/segmented_set_union.hpp
> +#usr/include/boost/container/experimental/segmented_stable_partition.hpp
> +#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
> +#usr/include/boost/container/experimental/segmented_transform.hpp
> +#usr/include/boost/container/experimental/wrapped_iterator.hpp
> #usr/include/boost/container/flat_map.hpp
> #usr/include/boost/container/flat_set.hpp
> +#usr/include/boost/container/hub.hpp
> #usr/include/boost/container/list.hpp
> #usr/include/boost/container/map.hpp
> #usr/include/boost/container/new_allocator.hpp
> @@ -2460,6 +2519,7 @@
> #usr/include/boost/container/pmr/flat_map.hpp
> #usr/include/boost/container/pmr/flat_set.hpp
> #usr/include/boost/container/pmr/global_resource.hpp
> +#usr/include/boost/container/pmr/hub.hpp
> #usr/include/boost/container/pmr/list.hpp
> #usr/include/boost/container/pmr/map.hpp
> #usr/include/boost/container/pmr/memory_resource.hpp
> @@ -2467,6 +2527,7 @@
> #usr/include/boost/container/pmr/polymorphic_allocator.hpp
> #usr/include/boost/container/pmr/pool_options.hpp
> #usr/include/boost/container/pmr/resource_adaptor.hpp
> +#usr/include/boost/container/pmr/segtor.hpp
> #usr/include/boost/container/pmr/set.hpp
> #usr/include/boost/container/pmr/slist.hpp
> #usr/include/boost/container/pmr/small_vector.hpp
> @@ -2477,6 +2538,7 @@
> #usr/include/boost/container/pmr/vector.hpp
> #usr/include/boost/container/scoped_allocator.hpp
> #usr/include/boost/container/scoped_allocator_fwd.hpp
> +#usr/include/boost/container/segtor.hpp
> #usr/include/boost/container/set.hpp
> #usr/include/boost/container/slist.hpp
> #usr/include/boost/container/small_vector.hpp
> @@ -2485,6 +2547,7 @@
> #usr/include/boost/container/string.hpp
> #usr/include/boost/container/throw_exception.hpp
> #usr/include/boost/container/uses_allocator.hpp
> +#usr/include/boost/container/uses_allocator_construction.hpp
> #usr/include/boost/container/uses_allocator_fwd.hpp
> #usr/include/boost/container/vector.hpp
> #usr/include/boost/container_hash
> @@ -2605,6 +2668,9 @@
> #usr/include/boost/contract/override.hpp
> #usr/include/boost/contract/public_function.hpp
> #usr/include/boost/contract_macro.hpp
> +#usr/include/boost/conversion
> +#usr/include/boost/conversion/detail
> +#usr/include/boost/conversion/detail/config.hpp
> #usr/include/boost/convert
> #usr/include/boost/convert.hpp
> #usr/include/boost/convert/base.hpp
> @@ -2865,6 +2931,211 @@
> #usr/include/boost/date_time/tz_db_base.hpp
> #usr/include/boost/date_time/wrapping_int.hpp
> #usr/include/boost/date_time/year_month_day.hpp
> +#usr/include/boost/decimal
> +#usr/include/boost/decimal.hpp
> +#usr/include/boost/decimal/bid_conversion.hpp
> +#usr/include/boost/decimal/cfenv.hpp
> +#usr/include/boost/decimal/cfloat.hpp
> +#usr/include/boost/decimal/charconv.hpp
> +#usr/include/boost/decimal/cmath.hpp
> +#usr/include/boost/decimal/cstdio.hpp
> +#usr/include/boost/decimal/cstdlib.hpp
> +#usr/include/boost/decimal/decimal128_t.hpp
> +#usr/include/boost/decimal/decimal32_t.hpp
> +#usr/include/boost/decimal/decimal64_t.hpp
> +#usr/include/boost/decimal/decimal_fast128_t.hpp
> +#usr/include/boost/decimal/decimal_fast32_t.hpp
> +#usr/include/boost/decimal/decimal_fast64_t.hpp
> +#usr/include/boost/decimal/detail
> +#usr/include/boost/decimal/detail/add_impl.hpp
> +#usr/include/boost/decimal/detail/apply_sign.hpp
> +#usr/include/boost/decimal/detail/attributes.hpp
> +#usr/include/boost/decimal/detail/bit_cast.hpp
> +#usr/include/boost/decimal/detail/bit_layouts.hpp
> +#usr/include/boost/decimal/detail/buffer_sizing.hpp
> +#usr/include/boost/decimal/detail/chars_format.hpp
> +#usr/include/boost/decimal/detail/check_non_finite.hpp
> +#usr/include/boost/decimal/detail/cmath
> +#usr/include/boost/decimal/detail/cmath/abs.hpp
> +#usr/include/boost/decimal/detail/cmath/acos.hpp
> +#usr/include/boost/decimal/detail/cmath/acosh.hpp
> +#usr/include/boost/decimal/detail/cmath/asin.hpp
> +#usr/include/boost/decimal/detail/cmath/asinh.hpp
> +#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
> +#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
> +#usr/include/boost/decimal/detail/cmath/atan.hpp
> +#usr/include/boost/decimal/detail/cmath/atan2.hpp
> +#usr/include/boost/decimal/detail/cmath/atanh.hpp
> +#usr/include/boost/decimal/detail/cmath/beta.hpp
> +#usr/include/boost/decimal/detail/cmath/cbrt.hpp
> +#usr/include/boost/decimal/detail/cmath/ceil.hpp
> +#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
> +#usr/include/boost/decimal/detail/cmath/cos.hpp
> +#usr/include/boost/decimal/detail/cmath/cosh.hpp
> +#usr/include/boost/decimal/detail/cmath/decompose.hpp
> +#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
> +#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
> +#usr/include/boost/decimal/detail/cmath/erf.hpp
> +#usr/include/boost/decimal/detail/cmath/exp.hpp
> +#usr/include/boost/decimal/detail/cmath/exp2.hpp
> +#usr/include/boost/decimal/detail/cmath/expm1.hpp
> +#usr/include/boost/decimal/detail/cmath/fabs.hpp
> +#usr/include/boost/decimal/detail/cmath/fdim.hpp
> +#usr/include/boost/decimal/detail/cmath/floor.hpp
> +#usr/include/boost/decimal/detail/cmath/fma.hpp
> +#usr/include/boost/decimal/detail/cmath/fmax.hpp
> +#usr/include/boost/decimal/detail/cmath/fmin.hpp
> +#usr/include/boost/decimal/detail/cmath/fmod.hpp
> +#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
> +#usr/include/boost/decimal/detail/cmath/frexp.hpp
> +#usr/include/boost/decimal/detail/cmath/frexp10.hpp
> +#usr/include/boost/decimal/detail/cmath/hermite.hpp
> +#usr/include/boost/decimal/detail/cmath/hypot.hpp
> +#usr/include/boost/decimal/detail/cmath/ilogb.hpp
> +#usr/include/boost/decimal/detail/cmath/impl
> +#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/isfinite.hpp
> +#usr/include/boost/decimal/detail/cmath/isgreater.hpp
> +#usr/include/boost/decimal/detail/cmath/isless.hpp
> +#usr/include/boost/decimal/detail/cmath/isunordered.hpp
> +#usr/include/boost/decimal/detail/cmath/laguerre.hpp
> +#usr/include/boost/decimal/detail/cmath/ldexp.hpp
> +#usr/include/boost/decimal/detail/cmath/legendre.hpp
> +#usr/include/boost/decimal/detail/cmath/lgamma.hpp
> +#usr/include/boost/decimal/detail/cmath/log.hpp
> +#usr/include/boost/decimal/detail/cmath/log10.hpp
> +#usr/include/boost/decimal/detail/cmath/log1p.hpp
> +#usr/include/boost/decimal/detail/cmath/log2.hpp
> +#usr/include/boost/decimal/detail/cmath/logb.hpp
> +#usr/include/boost/decimal/detail/cmath/modf.hpp
> +#usr/include/boost/decimal/detail/cmath/nan.hpp
> +#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
> +#usr/include/boost/decimal/detail/cmath/next.hpp
> +#usr/include/boost/decimal/detail/cmath/normalize.hpp
> +#usr/include/boost/decimal/detail/cmath/pow.hpp
> +#usr/include/boost/decimal/detail/cmath/remainder.hpp
> +#usr/include/boost/decimal/detail/cmath/remquo.hpp
> +#usr/include/boost/decimal/detail/cmath/rescale.hpp
> +#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
> +#usr/include/boost/decimal/detail/cmath/rint.hpp
> +#usr/include/boost/decimal/detail/cmath/round.hpp
> +#usr/include/boost/decimal/detail/cmath/sin.hpp
> +#usr/include/boost/decimal/detail/cmath/sinh.hpp
> +#usr/include/boost/decimal/detail/cmath/sqrt.hpp
> +#usr/include/boost/decimal/detail/cmath/tan.hpp
> +#usr/include/boost/decimal/detail/cmath/tanh.hpp
> +#usr/include/boost/decimal/detail/cmath/tgamma.hpp
> +#usr/include/boost/decimal/detail/cmath/trunc.hpp
> +#usr/include/boost/decimal/detail/comparison.hpp
> +#usr/include/boost/decimal/detail/components.hpp
> +#usr/include/boost/decimal/detail/concepts.hpp
> +#usr/include/boost/decimal/detail/config.hpp
> +#usr/include/boost/decimal/detail/construction_sign.hpp
> +#usr/include/boost/decimal/detail/countl.hpp
> +#usr/include/boost/decimal/detail/div_impl.hpp
> +#usr/include/boost/decimal/detail/fast_float
> +#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
> +#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
> +#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
> +#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
> +#usr/include/boost/decimal/detail/fenv_rounding.hpp
> +#usr/include/boost/decimal/detail/formatting_limits.hpp
> +#usr/include/boost/decimal/detail/from_chars_impl.hpp
> +#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
> +#usr/include/boost/decimal/detail/from_chars_result.hpp
> +#usr/include/boost/decimal/detail/fwd_log.hpp
> +#usr/include/boost/decimal/detail/i256.hpp
> +#usr/include/boost/decimal/detail/int128
> +#usr/include/boost/decimal/detail/int128.hpp
> +#usr/include/boost/decimal/detail/int128/bit.hpp
> +#usr/include/boost/decimal/detail/int128/climits.hpp
> +#usr/include/boost/decimal/detail/int128/cstdlib.hpp
> +#usr/include/boost/decimal/detail/int128/detail
> +#usr/include/boost/decimal/detail/int128/detail/clz.hpp
> +#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
> +#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
> +#usr/include/boost/decimal/detail/int128/detail/config.hpp
> +#usr/include/boost/decimal/detail/int128/detail/constants.hpp
> +#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
> +#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
> +#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
> +#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
> +#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
> +#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
> +#usr/include/boost/decimal/detail/int128/detail/traits.hpp
> +#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
> +#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
> +#usr/include/boost/decimal/detail/int128/fmt_format.hpp
> +#usr/include/boost/decimal/detail/int128/format.hpp
> +#usr/include/boost/decimal/detail/int128/int128.hpp
> +#usr/include/boost/decimal/detail/int128/iostream.hpp
> +#usr/include/boost/decimal/detail/int128/limits.hpp
> +#usr/include/boost/decimal/detail/int128/literals.hpp
> +#usr/include/boost/decimal/detail/int128/numeric.hpp
> +#usr/include/boost/decimal/detail/int128/random.hpp
> +#usr/include/boost/decimal/detail/int128/string.hpp
> +#usr/include/boost/decimal/detail/integer_search_trees.hpp
> +#usr/include/boost/decimal/detail/io.hpp
> +#usr/include/boost/decimal/detail/is_power_of_10.hpp
> +#usr/include/boost/decimal/detail/locale_conversion.hpp
> +#usr/include/boost/decimal/detail/memcpy.hpp
> +#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
> +#usr/include/boost/decimal/detail/mod_impl.hpp
> +#usr/include/boost/decimal/detail/mul_impl.hpp
> +#usr/include/boost/decimal/detail/normalize.hpp
> +#usr/include/boost/decimal/detail/parser.hpp
> +#usr/include/boost/decimal/detail/power_tables.hpp
> +#usr/include/boost/decimal/detail/promote_significand.hpp
> +#usr/include/boost/decimal/detail/promotion.hpp
> +#usr/include/boost/decimal/detail/quantize_impl.hpp
> +#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
> +#usr/include/boost/decimal/detail/ryu
> +#usr/include/boost/decimal/detail/ryu/generic_128.hpp
> +#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
> +#usr/include/boost/decimal/detail/shrink_significand.hpp
> +#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
> +#usr/include/boost/decimal/detail/to_chars_result.hpp
> +#usr/include/boost/decimal/detail/to_decimal.hpp
> +#usr/include/boost/decimal/detail/to_float.hpp
> +#usr/include/boost/decimal/detail/to_integral.hpp
> +#usr/include/boost/decimal/detail/type_traits.hpp
> +#usr/include/boost/decimal/detail/u256.hpp
> +#usr/include/boost/decimal/detail/utilities.hpp
> +#usr/include/boost/decimal/detail/write_payload.hpp
> +#usr/include/boost/decimal/dpd_conversion.hpp
> +#usr/include/boost/decimal/fmt_format.hpp
> +#usr/include/boost/decimal/format.hpp
> +#usr/include/boost/decimal/fwd.hpp
> +#usr/include/boost/decimal/hash.hpp
> +#usr/include/boost/decimal/iostream.hpp
> +#usr/include/boost/decimal/literals.hpp
> +#usr/include/boost/decimal/numbers.hpp
> +#usr/include/boost/decimal/string.hpp
> +#usr/include/boost/decimal/uint128_t.hpp
> #usr/include/boost/describe
> #usr/include/boost/describe.hpp
> #usr/include/boost/describe/bases.hpp
> @@ -2909,7 +3180,6 @@
> #usr/include/boost/detail/is_sorted.hpp
> #usr/include/boost/detail/is_xxx.hpp
> #usr/include/boost/detail/iterator.hpp
> -#usr/include/boost/detail/lcast_precision.hpp
> #usr/include/boost/detail/lightweight_main.hpp
> #usr/include/boost/detail/lightweight_mutex.hpp
> #usr/include/boost/detail/lightweight_test.hpp
> @@ -2993,6 +3263,7 @@
> #usr/include/boost/dll/config.hpp
> #usr/include/boost/dll/detail
> #usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
> +#usr/include/boost/dll/detail/config.hpp
> #usr/include/boost/dll/detail/ctor_dtor.hpp
> #usr/include/boost/dll/detail/demangling
> #usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
> @@ -3057,6 +3328,7 @@
> #usr/include/boost/exception/current_exception_cast.hpp
> #usr/include/boost/exception/detail
> #usr/include/boost/exception/detail/clone_current_exception.hpp
> +#usr/include/boost/exception/detail/encoder.hpp
> #usr/include/boost/exception/detail/error_info_impl.hpp
> #usr/include/boost/exception/detail/exception_ptr.hpp
> #usr/include/boost/exception/detail/is_output_streamable.hpp
> @@ -3080,6 +3352,9 @@
> #usr/include/boost/exception/get_error_info.hpp
> #usr/include/boost/exception/info.hpp
> #usr/include/boost/exception/info_tuple.hpp
> +#usr/include/boost/exception/serialization
> +#usr/include/boost/exception/serialization/boost_json_encoder.hpp
> +#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
> #usr/include/boost/exception/to_string.hpp
> #usr/include/boost/exception/to_string_stub.hpp
> #usr/include/boost/exception_ptr.hpp
> @@ -5091,8 +5366,6 @@
> #usr/include/boost/geometry/index/detail/tags.hpp
> #usr/include/boost/geometry/index/detail/translator.hpp
> #usr/include/boost/geometry/index/detail/utilities.hpp
> -#usr/include/boost/geometry/index/detail/varray.hpp
> -#usr/include/boost/geometry/index/detail/varray_detail.hpp
> #usr/include/boost/geometry/index/distance_predicates.hpp
> #usr/include/boost/geometry/index/equal_to.hpp
> #usr/include/boost/geometry/index/indexable.hpp
> @@ -6077,6 +6350,8 @@
> #usr/include/boost/graph/leda_graph.hpp
> #usr/include/boost/graph/lookup_edge.hpp
> #usr/include/boost/graph/loop_erased_random_walk.hpp
> +#usr/include/boost/graph/louvain_clustering.hpp
> +#usr/include/boost/graph/louvain_quality_functions.hpp
> #usr/include/boost/graph/make_biconnected_planar.hpp
> #usr/include/boost/graph/make_connected.hpp
> #usr/include/boost/graph/make_maximal_planar.hpp
> @@ -6679,6 +6954,7 @@
> #usr/include/boost/heap/detail
> #usr/include/boost/heap/detail/heap_comparison.hpp
> #usr/include/boost/heap/detail/heap_node.hpp
> +#usr/include/boost/heap/detail/heap_utils.hpp
> #usr/include/boost/heap/detail/ilog2.hpp
> #usr/include/boost/heap/detail/mutable_heap.hpp
> #usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
> @@ -6888,8 +7164,10 @@
> #usr/include/boost/icl/concept/set_value.hpp
> #usr/include/boost/icl/continuous_interval.hpp
> #usr/include/boost/icl/detail
> +#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
> #usr/include/boost/icl/detail/associated_value.hpp
> #usr/include/boost/icl/detail/boost_config.hpp
> +#usr/include/boost/icl/detail/co_equal_fwd.hpp
> #usr/include/boost/icl/detail/concept_check.hpp
> #usr/include/boost/icl/detail/design_config.hpp
> #usr/include/boost/icl/detail/element_comparer.hpp
> @@ -6899,12 +7177,14 @@
> #usr/include/boost/icl/detail/interval_morphism.hpp
> #usr/include/boost/icl/detail/interval_set_algo.hpp
> #usr/include/boost/icl/detail/interval_subset_comparer.hpp
> +#usr/include/boost/icl/detail/map_adaptor.hpp
> #usr/include/boost/icl/detail/map_algo.hpp
> #usr/include/boost/icl/detail/mapped_reference.hpp
> #usr/include/boost/icl/detail/notate.hpp
> #usr/include/boost/icl/detail/on_absorbtion.hpp
> #usr/include/boost/icl/detail/relation_state.hpp
> #usr/include/boost/icl/detail/requires_cxx11.hpp
> +#usr/include/boost/icl/detail/set_adaptor.hpp
> #usr/include/boost/icl/detail/set_algo.hpp
> #usr/include/boost/icl/detail/std_set.hpp
> #usr/include/boost/icl/detail/subset_comparer.hpp
> @@ -7585,6 +7865,7 @@
> #usr/include/boost/json/impl/value_ref.ipp
> #usr/include/boost/json/impl/value_stack.ipp
> #usr/include/boost/json/impl/visit.hpp
> +#usr/include/boost/json/impl/visit.ipp
> #usr/include/boost/json/is_deallocate_trivial.hpp
> #usr/include/boost/json/kind.hpp
> #usr/include/boost/json/monotonic_resource.hpp
> @@ -7660,15 +7941,20 @@
> #usr/include/boost/leaf/config/tls_cpp11.hpp
> #usr/include/boost/leaf/config/tls_freertos.hpp
> #usr/include/boost/leaf/config/tls_globals.hpp
> +#usr/include/boost/leaf/config/tls_win32.hpp
> +#usr/include/boost/leaf/config/visibility.hpp
> #usr/include/boost/leaf/context.hpp
> #usr/include/boost/leaf/detail
> #usr/include/boost/leaf/detail/all.hpp
> #usr/include/boost/leaf/detail/capture_list.hpp
> #usr/include/boost/leaf/detail/demangle.hpp
> +#usr/include/boost/leaf/detail/diagnostics_writer.hpp
> +#usr/include/boost/leaf/detail/encoder.hpp
> +#usr/include/boost/leaf/detail/exception_base.hpp
> #usr/include/boost/leaf/detail/function_traits.hpp
> #usr/include/boost/leaf/detail/mp11.hpp
> #usr/include/boost/leaf/detail/optional.hpp
> -#usr/include/boost/leaf/detail/print.hpp
> +#usr/include/boost/leaf/detail/type_name.hpp
> #usr/include/boost/leaf/diagnostics.hpp
> #usr/include/boost/leaf/error.hpp
> #usr/include/boost/leaf/exception.hpp
> @@ -7676,12 +7962,16 @@
> #usr/include/boost/leaf/on_error.hpp
> #usr/include/boost/leaf/pred.hpp
> #usr/include/boost/leaf/result.hpp
> +#usr/include/boost/leaf/serialization
> +#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
> +#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
> #usr/include/boost/leaf/to_variant.hpp
> #usr/include/boost/lexical_cast
> #usr/include/boost/lexical_cast.hpp
> #usr/include/boost/lexical_cast/bad_lexical_cast.hpp
> #usr/include/boost/lexical_cast/detail
> #usr/include/boost/lexical_cast/detail/buffer_view.hpp
> +#usr/include/boost/lexical_cast/detail/config.hpp
> #usr/include/boost/lexical_cast/detail/converter_lexical.hpp
> #usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
> #usr/include/boost/lexical_cast/detail/converter_numeric.hpp
> @@ -7689,6 +7979,7 @@
> #usr/include/boost/lexical_cast/detail/is_character.hpp
> #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
> #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
> +#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
> #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
> #usr/include/boost/lexical_cast/detail/type_traits.hpp
> #usr/include/boost/lexical_cast/detail/widest_char.hpp
> @@ -7798,17 +8089,20 @@
> #usr/include/boost/locale/util/locale_data.hpp
> #usr/include/boost/locale/util/string.hpp
> #usr/include/boost/lockfree
> +#usr/include/boost/lockfree/bounded_ticket_queue.hpp
> #usr/include/boost/lockfree/detail
> #usr/include/boost/lockfree/detail/atomic.hpp
> #usr/include/boost/lockfree/detail/copy_payload.hpp
> #usr/include/boost/lockfree/detail/freelist.hpp
> #usr/include/boost/lockfree/detail/parameter.hpp
> +#usr/include/boost/lockfree/detail/power_of_two.hpp
> #usr/include/boost/lockfree/detail/prefix.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
> #usr/include/boost/lockfree/detail/uses_optional.hpp
> #usr/include/boost/lockfree/lockfree_forward.hpp
> +#usr/include/boost/lockfree/mpsc_weak_queue.hpp
> #usr/include/boost/lockfree/policies.hpp
> #usr/include/boost/lockfree/queue.hpp
> #usr/include/boost/lockfree/spsc_queue.hpp
> @@ -8283,8 +8577,17 @@
> #usr/include/boost/math/optimization/cma_es.hpp
> #usr/include/boost/math/optimization/detail
> #usr/include/boost/math/optimization/detail/common.hpp
> +#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
> +#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
> +#usr/include/boost/math/optimization/detail/line_search_policies.hpp
> +#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
> #usr/include/boost/math/optimization/differential_evolution.hpp
> +#usr/include/boost/math/optimization/gradient_descent.hpp
> +#usr/include/boost/math/optimization/gradient_optimizers.hpp
> #usr/include/boost/math/optimization/jso.hpp
> +#usr/include/boost/math/optimization/lbfgs.hpp
> +#usr/include/boost/math/optimization/minimizer.hpp
> +#usr/include/boost/math/optimization/nesterov.hpp
> #usr/include/boost/math/optimization/random_search.hpp
> #usr/include/boost/math/policies
> #usr/include/boost/math/policies/error_handling.hpp
> @@ -10296,12 +10599,23 @@
> #usr/include/boost/msm/backmp11
> #usr/include/boost/msm/backmp11/common_types.hpp
> #usr/include/boost/msm/backmp11/detail
> -#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
> +#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
> +#usr/include/boost/msm/backmp11/detail/common.hpp
> +#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
> #usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
> #usr/include/boost/msm/backmp11/detail/history_impl.hpp
> #usr/include/boost/msm/backmp11/detail/metafunctions.hpp
> +#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
> +#usr/include/boost/msm/backmp11/detail/state_tags.hpp
> +#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
> +#usr/include/boost/msm/backmp11/detail/transition_table.hpp
> #usr/include/boost/msm/backmp11/event_traits.hpp
> #usr/include/boost/msm/backmp11/favor_compile_time.hpp
> +#usr/include/boost/msm/backmp11/observer.hpp
> +#usr/include/boost/msm/backmp11/serialization
> +#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
> +#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
> +#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
> #usr/include/boost/msm/backmp11/state_machine.hpp
> #usr/include/boost/msm/backmp11/state_machine_config.hpp
> #usr/include/boost/msm/common.hpp
> @@ -10312,6 +10626,7 @@
> #usr/include/boost/msm/front/detail
> #usr/include/boost/msm/front/detail/common_states.hpp
> #usr/include/boost/msm/front/detail/row2_helper.hpp
> +#usr/include/boost/msm/front/detail/state_tags.hpp
> #usr/include/boost/msm/front/euml
> #usr/include/boost/msm/front/euml/algorithm.hpp
> #usr/include/boost/msm/front/euml/common.hpp
> @@ -10373,11 +10688,10 @@
> #usr/include/boost/multi_index
> #usr/include/boost/multi_index/composite_key.hpp
> #usr/include/boost/multi_index/detail
> -#usr/include/boost/multi_index/detail/access_specifier.hpp
> #usr/include/boost/multi_index/detail/adl_swap.hpp
> -#usr/include/boost/multi_index/detail/allocator_traits.hpp
> #usr/include/boost/multi_index/detail/any_container_view.hpp
> #usr/include/boost/multi_index/detail/archive_constructed.hpp
> +#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
> #usr/include/boost/multi_index/detail/auto_space.hpp
> #usr/include/boost/multi_index/detail/bad_archive_exception.hpp
> #usr/include/boost/multi_index/detail/base_type.hpp
> @@ -10408,7 +10722,9 @@
> #usr/include/boost/multi_index/detail/is_transparent.hpp
> #usr/include/boost/multi_index/detail/iter_adaptor.hpp
> #usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
> +#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
> #usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
> +#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
> #usr/include/boost/multi_index/detail/node_handle.hpp
> #usr/include/boost/multi_index/detail/node_type.hpp
> #usr/include/boost/multi_index/detail/ord_index_args.hpp
> @@ -10431,11 +10747,11 @@
> #usr/include/boost/multi_index/detail/seq_index_node.hpp
> #usr/include/boost/multi_index/detail/seq_index_ops.hpp
> #usr/include/boost/multi_index/detail/serialization_version.hpp
> +#usr/include/boost/multi_index/detail/type_list.hpp
> #usr/include/boost/multi_index/detail/uintptr_type.hpp
> #usr/include/boost/multi_index/detail/unbounded.hpp
> #usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
> #usr/include/boost/multi_index/detail/value_compare.hpp
> -#usr/include/boost/multi_index/detail/vartempl_support.hpp
> #usr/include/boost/multi_index/global_fun.hpp
> #usr/include/boost/multi_index/hashed_index.hpp
> #usr/include/boost/multi_index/hashed_index_fwd.hpp
> @@ -10678,6 +10994,7 @@
> #usr/include/boost/mysql/impl/internal/error
> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
> +#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
> #usr/include/boost/mysql/impl/internal/protocol
> #usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
> #usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
> @@ -11176,6 +11493,7 @@
> #usr/include/boost/openmethod/initialize.hpp
> #usr/include/boost/openmethod/inplace_vptr.hpp
> #usr/include/boost/openmethod/interop
> +#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
> #usr/include/boost/openmethod/interop/std_shared_ptr.hpp
> #usr/include/boost/openmethod/interop/std_unique_ptr.hpp
> #usr/include/boost/openmethod/macros.hpp
> @@ -11197,14 +11515,17 @@
> #usr/include/boost/optional/detail
> #usr/include/boost/optional/detail/experimental_traits.hpp
> #usr/include/boost/optional/detail/optional_aligned_storage.hpp
> +#usr/include/boost/optional/detail/optional_common_defs.hpp
> #usr/include/boost/optional/detail/optional_config.hpp
> #usr/include/boost/optional/detail/optional_factory_support.hpp
> #usr/include/boost/optional/detail/optional_hash.hpp
> +#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
> #usr/include/boost/optional/detail/optional_reference_spec.hpp
> #usr/include/boost/optional/detail/optional_relops.hpp
> +#usr/include/boost/optional/detail/optional_select_implementation.hpp
> #usr/include/boost/optional/detail/optional_swap.hpp
> #usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
> -#usr/include/boost/optional/detail/optional_utility.hpp
> +#usr/include/boost/optional/detail/union_optional.hpp
> #usr/include/boost/optional/optional.hpp
> #usr/include/boost/optional/optional_fwd.hpp
> #usr/include/boost/optional/optional_io.hpp
> @@ -11489,9 +11810,11 @@
> #usr/include/boost/pfr/detail/core17.hpp
> #usr/include/boost/pfr/detail/core17_generated.hpp
> #usr/include/boost/pfr/detail/core26.hpp
> +#usr/include/boost/pfr/detail/core26_reflection.hpp
> #usr/include/boost/pfr/detail/core_name.hpp
> #usr/include/boost/pfr/detail/core_name14_disabled.hpp
> #usr/include/boost/pfr/detail/core_name20_static.hpp
> +#usr/include/boost/pfr/detail/core_name26_reflection.hpp
> #usr/include/boost/pfr/detail/detectors.hpp
> #usr/include/boost/pfr/detail/fake_object.hpp
> #usr/include/boost/pfr/detail/fields_count.hpp
> @@ -13245,6 +13568,7 @@
> #usr/include/boost/python/detail/pointee.hpp
> #usr/include/boost/python/detail/prefix.hpp
> #usr/include/boost/python/detail/preprocessor.hpp
> +#usr/include/boost/python/detail/pymutex.hpp
> #usr/include/boost/python/detail/python22_fixed.h
> #usr/include/boost/python/detail/python_type.hpp
> #usr/include/boost/python/detail/raw_pyobject.hpp
> @@ -13750,15 +14074,20 @@
> #usr/include/boost/redis/connection.hpp
> #usr/include/boost/redis/detail
> #usr/include/boost/redis/detail/connect_fsm.hpp
> +#usr/include/boost/redis/detail/connect_params.hpp
> #usr/include/boost/redis/detail/connection_state.hpp
> #usr/include/boost/redis/detail/coroutine.hpp
> #usr/include/boost/redis/detail/exec_fsm.hpp
> +#usr/include/boost/redis/detail/exec_one_fsm.hpp
> #usr/include/boost/redis/detail/multiplexer.hpp
> #usr/include/boost/redis/detail/read_buffer.hpp
> #usr/include/boost/redis/detail/reader_fsm.hpp
> +#usr/include/boost/redis/detail/receive_fsm.hpp
> #usr/include/boost/redis/detail/redis_stream.hpp
> #usr/include/boost/redis/detail/resp3_type_to_error.hpp
> #usr/include/boost/redis/detail/run_fsm.hpp
> +#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
> +#usr/include/boost/redis/detail/subscription_tracker.hpp
> #usr/include/boost/redis/detail/write.hpp
> #usr/include/boost/redis/detail/writer_fsm.hpp
> #usr/include/boost/redis/error.hpp
> @@ -13768,23 +14097,32 @@
> #usr/include/boost/redis/impl/connection.ipp
> #usr/include/boost/redis/impl/error.ipp
> #usr/include/boost/redis/impl/exec_fsm.ipp
> +#usr/include/boost/redis/impl/exec_one_fsm.ipp
> +#usr/include/boost/redis/impl/flat_tree.ipp
> #usr/include/boost/redis/impl/ignore.ipp
> #usr/include/boost/redis/impl/is_terminal_cancel.hpp
> #usr/include/boost/redis/impl/log_to_file.hpp
> #usr/include/boost/redis/impl/log_utils.hpp
> #usr/include/boost/redis/impl/logger.ipp
> #usr/include/boost/redis/impl/multiplexer.ipp
> +#usr/include/boost/redis/impl/push_parser.ipp
> #usr/include/boost/redis/impl/read_buffer.ipp
> #usr/include/boost/redis/impl/reader_fsm.ipp
> +#usr/include/boost/redis/impl/receive_fsm.ipp
> #usr/include/boost/redis/impl/request.ipp
> #usr/include/boost/redis/impl/response.ipp
> #usr/include/boost/redis/impl/run_fsm.ipp
> +#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
> +#usr/include/boost/redis/impl/sentinel_utils.hpp
> #usr/include/boost/redis/impl/setup_request_utils.hpp
> +#usr/include/boost/redis/impl/subscription_tracker.ipp
> #usr/include/boost/redis/impl/writer_fsm.ipp
> #usr/include/boost/redis/logger.hpp
> #usr/include/boost/redis/operation.hpp
> +#usr/include/boost/redis/push_parser.hpp
> #usr/include/boost/redis/request.hpp
> #usr/include/boost/redis/resp3
> +#usr/include/boost/redis/resp3/flat_tree.hpp
> #usr/include/boost/redis/resp3/impl
> #usr/include/boost/redis/resp3/impl/parser.ipp
> #usr/include/boost/redis/resp3/impl/serialization.ipp
> @@ -13792,6 +14130,7 @@
> #usr/include/boost/redis/resp3/node.hpp
> #usr/include/boost/redis/resp3/parser.hpp
> #usr/include/boost/redis/resp3/serialization.hpp
> +#usr/include/boost/redis/resp3/tree.hpp
> #usr/include/boost/redis/resp3/type.hpp
> #usr/include/boost/redis/response.hpp
> #usr/include/boost/redis/src.hpp
> @@ -15352,9 +15691,11 @@
> #usr/include/boost/stacktrace/detail/addr2line_impls.hpp
> #usr/include/boost/stacktrace/detail/addr_base.hpp
> #usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
> +#usr/include/boost/stacktrace/detail/backend_config.hpp
> #usr/include/boost/stacktrace/detail/collect_msvc.ipp
> #usr/include/boost/stacktrace/detail/collect_noop.ipp
> #usr/include/boost/stacktrace/detail/collect_unwind.ipp
> +#usr/include/boost/stacktrace/detail/config.hpp
> #usr/include/boost/stacktrace/detail/frame_decl.hpp
> #usr/include/boost/stacktrace/detail/frame_msvc.ipp
> #usr/include/boost/stacktrace/detail/frame_noop.ipp
> @@ -15408,7 +15749,10 @@
> #usr/include/boost/statechart/state_machine.hpp
> #usr/include/boost/statechart/termination.hpp
> #usr/include/boost/statechart/transition.hpp
> +#usr/include/boost/static_assert
> #usr/include/boost/static_assert.hpp
> +#usr/include/boost/static_assert/detail
> +#usr/include/boost/static_assert/detail/backward.hpp
> #usr/include/boost/static_string
> #usr/include/boost/static_string.hpp
> #usr/include/boost/static_string/config.hpp
> @@ -15442,6 +15786,7 @@
> #usr/include/boost/system/detail/generic_category.hpp
> #usr/include/boost/system/detail/generic_category_message.hpp
> #usr/include/boost/system/detail/interop_category.hpp
> +#usr/include/boost/system/detail/is_aggregate.hpp
> #usr/include/boost/system/detail/is_same.hpp
> #usr/include/boost/system/detail/mutex.hpp
> #usr/include/boost/system/detail/snprintf.hpp
> @@ -15464,6 +15809,7 @@
> #usr/include/boost/system/result.hpp
> #usr/include/boost/system/system_category.hpp
> #usr/include/boost/system/system_error.hpp
> +#usr/include/boost/system/unwrap_and_invoke.hpp
> #usr/include/boost/system/windows_error.hpp
> #usr/include/boost/test
> #usr/include/boost/test/auto_unit_test.hpp
> @@ -16595,6 +16941,7 @@
> #usr/include/boost/unordered/detail/narrow_cast.hpp
> #usr/include/boost/unordered/detail/opt_storage.hpp
> #usr/include/boost/unordered/detail/prime_fmod.hpp
> +#usr/include/boost/unordered/detail/ranges_support.hpp
> #usr/include/boost/unordered/detail/serialization_version.hpp
> #usr/include/boost/unordered/detail/serialize_container.hpp
> #usr/include/boost/unordered/detail/serialize_fca_container.hpp
> @@ -16623,19 +16970,33 @@
> #usr/include/boost/url
> #usr/include/boost/url.hpp
> #usr/include/boost/url/authority_view.hpp
> +#usr/include/boost/url/decode.hpp
> #usr/include/boost/url/decode_view.hpp
> #usr/include/boost/url/detail
> #usr/include/boost/url/detail/any_params_iter.hpp
> #usr/include/boost/url/detail/any_segments_iter.hpp
> #usr/include/boost/url/detail/config.hpp
> +#usr/include/boost/url/detail/decode.hpp
> #usr/include/boost/url/detail/encode.hpp
> #usr/include/boost/url/detail/except.hpp
> +#usr/include/boost/url/detail/fnv_1a.hpp
> #usr/include/boost/url/detail/format_args.hpp
> #usr/include/boost/url/detail/impl
> +#usr/include/boost/url/detail/impl/any_params_iter.hpp
> +#usr/include/boost/url/detail/impl/any_segments_iter.hpp
> #usr/include/boost/url/detail/impl/format_args.hpp
> +#usr/include/boost/url/detail/impl/params_iter_impl.hpp
> +#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
> +#usr/include/boost/url/detail/impl/url_impl.hpp
> +#usr/include/boost/url/detail/memcpy.hpp
> +#usr/include/boost/url/detail/move_chars.hpp
> +#usr/include/boost/url/detail/normalize.hpp
> #usr/include/boost/url/detail/optional_string.hpp
> +#usr/include/boost/url/detail/over_allocator.hpp
> #usr/include/boost/url/detail/params_iter_impl.hpp
> #usr/include/boost/url/detail/parts_base.hpp
> +#usr/include/boost/url/detail/path.hpp
> +#usr/include/boost/url/detail/print.hpp
> #usr/include/boost/url/detail/replacement_field_rule.hpp
> #usr/include/boost/url/detail/segments_iter_impl.hpp
> #usr/include/boost/url/detail/segments_range.hpp
> @@ -16659,13 +17020,17 @@
> #usr/include/boost/url/grammar/detail
> #usr/include/boost/url/grammar/detail/charset.hpp
> #usr/include/boost/url/grammar/detail/ci_string.hpp
> +#usr/include/boost/url/grammar/detail/range_rule.hpp
> #usr/include/boost/url/grammar/detail/recycled.hpp
> #usr/include/boost/url/grammar/detail/tuple.hpp
> #usr/include/boost/url/grammar/digit_chars.hpp
> #usr/include/boost/url/grammar/error.hpp
> #usr/include/boost/url/grammar/hexdig_chars.hpp
> #usr/include/boost/url/grammar/impl
> +#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
> +#usr/include/boost/url/grammar/impl/delim_rule.hpp
> #usr/include/boost/url/grammar/impl/error.hpp
> +#usr/include/boost/url/grammar/impl/literal_rule.hpp
> #usr/include/boost/url/grammar/impl/not_empty_rule.hpp
> #usr/include/boost/url/grammar/impl/optional_rule.hpp
> #usr/include/boost/url/grammar/impl/parse.hpp
> @@ -16693,17 +17058,30 @@
> #usr/include/boost/url/host_type.hpp
> #usr/include/boost/url/ignore_case.hpp
> #usr/include/boost/url/impl
> +#usr/include/boost/url/impl/authority_view.hpp
> +#usr/include/boost/url/impl/decode.hpp
> #usr/include/boost/url/impl/decode_view.hpp
> #usr/include/boost/url/impl/encode.hpp
> #usr/include/boost/url/impl/error.hpp
> #usr/include/boost/url/impl/params_base.hpp
> #usr/include/boost/url/impl/params_encoded_base.hpp
> #usr/include/boost/url/impl/params_encoded_ref.hpp
> +#usr/include/boost/url/impl/params_encoded_view.hpp
> #usr/include/boost/url/impl/params_ref.hpp
> +#usr/include/boost/url/impl/params_view.hpp
> +#usr/include/boost/url/impl/parse.hpp
> +#usr/include/boost/url/impl/scheme.hpp
> #usr/include/boost/url/impl/segments_base.hpp
> #usr/include/boost/url/impl/segments_encoded_base.hpp
> #usr/include/boost/url/impl/segments_encoded_ref.hpp
> +#usr/include/boost/url/impl/segments_encoded_view.hpp
> #usr/include/boost/url/impl/segments_ref.hpp
> +#usr/include/boost/url/impl/segments_view.hpp
> +#usr/include/boost/url/impl/static_url.hpp
> +#usr/include/boost/url/impl/url.hpp
> +#usr/include/boost/url/impl/url_base.hpp
> +#usr/include/boost/url/impl/url_view.hpp
> +#usr/include/boost/url/impl/url_view_base.hpp
> #usr/include/boost/url/ipv4_address.hpp
> #usr/include/boost/url/ipv6_address.hpp
> #usr/include/boost/url/optional.hpp
> @@ -16722,10 +17100,44 @@
> #usr/include/boost/url/rfc/absolute_uri_rule.hpp
> #usr/include/boost/url/rfc/authority_rule.hpp
> #usr/include/boost/url/rfc/detail
> +#usr/include/boost/url/rfc/detail/charsets.hpp
> +#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/h16_rule.hpp
> +#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/host_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl
> +#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
> +#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
> +#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
> +#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
> #usr/include/boost/url/rfc/detail/path_rules.hpp
> +#usr/include/boost/url/rfc/detail/port_rule.hpp
> +#usr/include/boost/url/rfc/detail/query_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
> +#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/scheme_rule.hpp
> +#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
> #usr/include/boost/url/rfc/gen_delim_chars.hpp
> #usr/include/boost/url/rfc/impl
> +#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
> +#usr/include/boost/url/rfc/impl/authority_rule.hpp
> +#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
> +#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
> +#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
> #usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
> +#usr/include/boost/url/rfc/impl/query_rule.hpp
> +#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
> +#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
> +#usr/include/boost/url/rfc/impl/uri_rule.hpp
> #usr/include/boost/url/rfc/ipv4_address_rule.hpp
> #usr/include/boost/url/rfc/ipv6_address_rule.hpp
> #usr/include/boost/url/rfc/origin_form_rule.hpp
> @@ -16788,21 +17200,33 @@
> #usr/include/boost/uuid/detail/basic_name_generator.hpp
> #usr/include/boost/uuid/detail/chacha20.hpp
> #usr/include/boost/uuid/detail/config.hpp
> +#usr/include/boost/uuid/detail/cstring.hpp
> #usr/include/boost/uuid/detail/endian.hpp
> +#usr/include/boost/uuid/detail/from_chars.hpp
> +#usr/include/boost/uuid/detail/from_chars_generic.hpp
> +#usr/include/boost/uuid/detail/from_chars_result.hpp
> +#usr/include/boost/uuid/detail/from_chars_x86.hpp
> #usr/include/boost/uuid/detail/hash_mix.hpp
> +#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
> #usr/include/boost/uuid/detail/md5.hpp
> #usr/include/boost/uuid/detail/nil_uuid.hpp
> #usr/include/boost/uuid/detail/numeric_cast.hpp
> #usr/include/boost/uuid/detail/random_device.hpp
> #usr/include/boost/uuid/detail/random_provider.hpp
> #usr/include/boost/uuid/detail/sha1.hpp
> +#usr/include/boost/uuid/detail/simd_vector.hpp
> #usr/include/boost/uuid/detail/static_assert.hpp
> +#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
> #usr/include/boost/uuid/detail/to_chars.hpp
> +#usr/include/boost/uuid/detail/to_chars_generic.hpp
> +#usr/include/boost/uuid/detail/to_chars_x86.hpp
> +#usr/include/boost/uuid/detail/uuid_from_string.hpp
> #usr/include/boost/uuid/detail/uuid_generic.ipp
> #usr/include/boost/uuid/detail/uuid_uint128.ipp
> #usr/include/boost/uuid/detail/uuid_x86.ipp
> #usr/include/boost/uuid/entropy_error.hpp
> #usr/include/boost/uuid/generators.hpp
> +#usr/include/boost/uuid/invalid_uuid.hpp
> #usr/include/boost/uuid/name_generator.hpp
> #usr/include/boost/uuid/name_generator_md5.hpp
> #usr/include/boost/uuid/name_generator_sha1.hpp
> @@ -17304,250 +17728,407 @@
> #usr/include/boost/yap/print.hpp
> #usr/include/boost/yap/user_macros.hpp
> #usr/include/boost/yap/yap.hpp
> -#usr/lib/cmake/Boost-1.90.0
> -#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
> -#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
> -#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0
> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0
> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0
> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
> -#usr/lib/cmake/boost_container-1.90.0
> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
> -#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
> -#usr/lib/cmake/boost_context-1.90.0
> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
> -#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
> -#usr/lib/cmake/boost_contract-1.90.0
> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
> -#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0
> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
> -#usr/lib/cmake/boost_exception-1.90.0
> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0
> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
> -#usr/lib/cmake/boost_graph-1.90.0
> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
> -#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
> -#usr/lib/cmake/boost_headers-1.90.0
> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0
> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
> -#usr/lib/cmake/boost_json-1.90.0
> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
> -#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
> -#usr/lib/cmake/boost_locale-1.90.0
> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
> -#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
> -#usr/lib/cmake/boost_log-1.90.0
> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
> -#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0
> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
> -#usr/lib/cmake/boost_math-1.90.0
> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0
> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0
> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0
> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0
> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0
> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
> -#usr/lib/cmake/boost_numpy-1.90.0
> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
> -#usr/lib/cmake/boost_process-1.90.0
> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
> -#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
> -#usr/lib/cmake/boost_python-1.90.0
> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
> -#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
> -#usr/lib/cmake/boost_random-1.90.0
> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
> -#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
> -#usr/lib/cmake/boost_regex-1.90.0
> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
> -#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0
> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
> -#usr/lib/cmake/boost_thread-1.90.0
> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
> -#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
> -#usr/lib/cmake/boost_timer-1.90.0
> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
> -#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0
> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
> -#usr/lib/cmake/boost_url-1.90.0
> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
> -#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
> -#usr/lib/cmake/boost_wave-1.90.0
> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
> -#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0
> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
> -#usr/lib/libboost_atomic.so
> -usr/lib/libboost_atomic.so.1.90.0
> -#usr/lib/libboost_charconv.so
> -usr/lib/libboost_charconv.so.1.90.0
> -#usr/lib/libboost_chrono.so
> -usr/lib/libboost_chrono.so.1.90.0
> -#usr/lib/libboost_container.so
> -usr/lib/libboost_container.so.1.90.0
> -#usr/lib/libboost_context.so
> -usr/lib/libboost_context.so.1.90.0
> -#usr/lib/libboost_contract.so
> -usr/lib/libboost_contract.so.1.90.0
> -#usr/lib/libboost_date_time.so
> -usr/lib/libboost_date_time.so.1.90.0
> -#usr/lib/libboost_exception.a
> -#usr/lib/libboost_filesystem.so
> -usr/lib/libboost_filesystem.so.1.90.0
> -#usr/lib/libboost_graph.so
> -usr/lib/libboost_graph.so.1.90.0
> -#usr/lib/libboost_iostreams.so
> -usr/lib/libboost_iostreams.so.1.90.0
> -#usr/lib/libboost_json.so
> -usr/lib/libboost_json.so.1.90.0
> -#usr/lib/libboost_locale.so
> -usr/lib/libboost_locale.so.1.90.0
> -#usr/lib/libboost_log.so
> -usr/lib/libboost_log.so.1.90.0
> -#usr/lib/libboost_log_setup.so
> -usr/lib/libboost_log_setup.so.1.90.0
> -#usr/lib/libboost_math_c99.so
> -usr/lib/libboost_math_c99.so.1.90.0
> -#usr/lib/libboost_math_c99f.so
> -usr/lib/libboost_math_c99f.so.1.90.0
> -#usr/lib/libboost_math_c99l.so
> -usr/lib/libboost_math_c99l.so.1.90.0
> -#usr/lib/libboost_math_tr1.so
> -usr/lib/libboost_math_tr1.so.1.90.0
> -#usr/lib/libboost_math_tr1f.so
> -usr/lib/libboost_math_tr1f.so.1.90.0
> -#usr/lib/libboost_math_tr1l.so
> -usr/lib/libboost_math_tr1l.so.1.90.0
> -#usr/lib/libboost_nowide.so
> -usr/lib/libboost_nowide.so.1.90.0
> -#usr/lib/libboost_prg_exec_monitor.so
> -usr/lib/libboost_prg_exec_monitor.so.1.90.0
> -#usr/lib/libboost_process.so
> -usr/lib/libboost_process.so.1.90.0
> -#usr/lib/libboost_python310.so
> -usr/lib/libboost_python310.so.1.90.0
> -#usr/lib/libboost_random.so
> -usr/lib/libboost_random.so.1.90.0
> -#usr/lib/libboost_regex.so
> -usr/lib/libboost_regex.so.1.90.0
> -#usr/lib/libboost_serialization.so
> -usr/lib/libboost_serialization.so.1.90.0
> -#usr/lib/libboost_stacktrace_addr2line.so
> -usr/lib/libboost_stacktrace_addr2line.so.1.90.0
> -#usr/lib/libboost_stacktrace_basic.so
> -usr/lib/libboost_stacktrace_basic.so.1.90.0
> -#usr/lib/libboost_stacktrace_noop.so
> -usr/lib/libboost_stacktrace_noop.so.1.90.0
> -#usr/lib/libboost_test_exec_monitor.a
> -#usr/lib/libboost_thread.so
> -usr/lib/libboost_thread.so.1.90.0
> -#usr/lib/libboost_timer.so
> -usr/lib/libboost_timer.so.1.90.0
> -#usr/lib/libboost_type_erasure.so
> -usr/lib/libboost_type_erasure.so.1.90.0
> -#usr/lib/libboost_unit_test_framework.so
> -usr/lib/libboost_unit_test_framework.so.1.90.0
> -#usr/lib/libboost_url.so
> -usr/lib/libboost_url.so.1.90.0
> -#usr/lib/libboost_wave.so
> -usr/lib/libboost_wave.so.1.90.0
> -#usr/lib/libboost_wserialization.so
> -usr/lib/libboost_wserialization.so.1.90.0
> +#usr/lib/cmake/Boost-1.92.0
> +#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
> +#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
> +#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0
> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0
> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0
> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0
> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_container-1.92.0
> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_context-1.92.0
> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_contract-1.92.0
> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0
> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_exception-1.92.0
> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0
> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_graph-1.92.0
> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_headers-1.92.0
> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0
> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_json-1.92.0
> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_locale-1.92.0
> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_log-1.92.0
> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0
> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_math-1.92.0
> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0
> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0
> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0
> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0
> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0
> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_numpy-1.92.0
> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_process-1.92.0
> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_python-1.92.0
> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-a64-shared-py3.10.cmake
> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-a64-shared-py3.10.cmake
> +#usr/lib/cmake/boost_random-1.92.0
> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_regex-1.92.0
> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0
> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0
> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_system-1.92.0
> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_thread-1.92.0
> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_timer-1.92.0
> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0
> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_url-1.92.0
> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_wave-1.92.0
> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-a64-shared.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0
> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-a64-shared.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-a64-shared.cmake
> +#usr/lib/libboost_atomic-mt-a64.so
> +usr/lib/libboost_atomic-mt-a64.so.1.92.0
> +#usr/lib/libboost_charconv-a64.so
> +usr/lib/libboost_charconv-a64.so.1.92.0
> +#usr/lib/libboost_charconv-mt-a64.so
> +usr/lib/libboost_charconv-mt-a64.so.1.92.0
> +#usr/lib/libboost_chrono-a64.so
> +usr/lib/libboost_chrono-a64.so.1.92.0
> +#usr/lib/libboost_chrono-mt-a64.so
> +usr/lib/libboost_chrono-mt-a64.so.1.92.0
> +#usr/lib/libboost_cobalt-a64.so
> +usr/lib/libboost_cobalt-a64.so.1.92.0
> +#usr/lib/libboost_cobalt-mt-a64.so
> +usr/lib/libboost_cobalt-mt-a64.so.1.92.0
> +#usr/lib/libboost_cobalt_io-a64.so
> +usr/lib/libboost_cobalt_io-a64.so.1.92.0
> +#usr/lib/libboost_cobalt_io-mt-a64.so
> +usr/lib/libboost_cobalt_io-mt-a64.so.1.92.0
> +#usr/lib/libboost_cobalt_io_ssl-a64.so
> +usr/lib/libboost_cobalt_io_ssl-a64.so.1.92.0
> +#usr/lib/libboost_cobalt_io_ssl-mt-a64.so
> +usr/lib/libboost_cobalt_io_ssl-mt-a64.so.1.92.0
> +#usr/lib/libboost_container-a64.so
> +usr/lib/libboost_container-a64.so.1.92.0
> +#usr/lib/libboost_container-mt-a64.so
> +usr/lib/libboost_container-mt-a64.so.1.92.0
> +#usr/lib/libboost_context-mt-a64.so
> +usr/lib/libboost_context-mt-a64.so.1.92.0
> +#usr/lib/libboost_contract-a64.so
> +usr/lib/libboost_contract-a64.so.1.92.0
> +#usr/lib/libboost_contract-mt-a64.so
> +usr/lib/libboost_contract-mt-a64.so.1.92.0
> +#usr/lib/libboost_date_time-a64.so
> +usr/lib/libboost_date_time-a64.so.1.92.0
> +#usr/lib/libboost_date_time-mt-a64.so
> +usr/lib/libboost_date_time-mt-a64.so.1.92.0
> +#usr/lib/libboost_exception-a64.a
> +#usr/lib/libboost_exception-mt-a64.a
> +#usr/lib/libboost_filesystem-a64.so
> +usr/lib/libboost_filesystem-a64.so.1.92.0
> +#usr/lib/libboost_filesystem-mt-a64.so
> +usr/lib/libboost_filesystem-mt-a64.so.1.92.0
> +#usr/lib/libboost_graph-a64.so
> +usr/lib/libboost_graph-a64.so.1.92.0
> +#usr/lib/libboost_graph-mt-a64.so
> +usr/lib/libboost_graph-mt-a64.so.1.92.0
> +#usr/lib/libboost_iostreams-a64.so
> +usr/lib/libboost_iostreams-a64.so.1.92.0
> +#usr/lib/libboost_iostreams-mt-a64.so
> +usr/lib/libboost_iostreams-mt-a64.so.1.92.0
> +#usr/lib/libboost_json-a64.so
> +usr/lib/libboost_json-a64.so.1.92.0
> +#usr/lib/libboost_json-mt-a64.so
> +usr/lib/libboost_json-mt-a64.so.1.92.0
> +#usr/lib/libboost_locale-mt-a64.so
> +usr/lib/libboost_locale-mt-a64.so.1.92.0
> +#usr/lib/libboost_log-a64.so
> +usr/lib/libboost_log-a64.so.1.92.0
> +#usr/lib/libboost_log-mt-a64.so
> +usr/lib/libboost_log-mt-a64.so.1.92.0
> +#usr/lib/libboost_log_setup-a64.so
> +usr/lib/libboost_log_setup-a64.so.1.92.0
> +#usr/lib/libboost_log_setup-mt-a64.so
> +usr/lib/libboost_log_setup-mt-a64.so.1.92.0
> +#usr/lib/libboost_math_c99-a64.so
> +usr/lib/libboost_math_c99-a64.so.1.92.0
> +#usr/lib/libboost_math_c99-mt-a64.so
> +usr/lib/libboost_math_c99-mt-a64.so.1.92.0
> +#usr/lib/libboost_math_c99f-a64.so
> +usr/lib/libboost_math_c99f-a64.so.1.92.0
> +#usr/lib/libboost_math_c99f-mt-a64.so
> +usr/lib/libboost_math_c99f-mt-a64.so.1.92.0
> +#usr/lib/libboost_math_c99l-a64.so
> +usr/lib/libboost_math_c99l-a64.so.1.92.0
> +#usr/lib/libboost_math_c99l-mt-a64.so
> +usr/lib/libboost_math_c99l-mt-a64.so.1.92.0
> +#usr/lib/libboost_math_tr1-a64.so
> +usr/lib/libboost_math_tr1-a64.so.1.92.0
> +#usr/lib/libboost_math_tr1-mt-a64.so
> +usr/lib/libboost_math_tr1-mt-a64.so.1.92.0
> +#usr/lib/libboost_math_tr1f-a64.so
> +usr/lib/libboost_math_tr1f-a64.so.1.92.0
> +#usr/lib/libboost_math_tr1f-mt-a64.so
> +usr/lib/libboost_math_tr1f-mt-a64.so.1.92.0
> +#usr/lib/libboost_math_tr1l-a64.so
> +usr/lib/libboost_math_tr1l-a64.so.1.92.0
> +#usr/lib/libboost_math_tr1l-mt-a64.so
> +usr/lib/libboost_math_tr1l-mt-a64.so.1.92.0
> +#usr/lib/libboost_nowide-a64.so
> +usr/lib/libboost_nowide-a64.so.1.92.0
> +#usr/lib/libboost_nowide-mt-a64.so
> +usr/lib/libboost_nowide-mt-a64.so.1.92.0
> +#usr/lib/libboost_prg_exec_monitor-a64.so
> +usr/lib/libboost_prg_exec_monitor-a64.so.1.92.0
> +#usr/lib/libboost_prg_exec_monitor-mt-a64.so
> +usr/lib/libboost_prg_exec_monitor-mt-a64.so.1.92.0
> +#usr/lib/libboost_process-a64.so
> +usr/lib/libboost_process-a64.so.1.92.0
> +#usr/lib/libboost_process-mt-a64.so
> +usr/lib/libboost_process-mt-a64.so.1.92.0
> +#usr/lib/libboost_python310-a64.so
> +usr/lib/libboost_python310-a64.so.1.92.0
> +#usr/lib/libboost_python310-mt-a64.so
> +usr/lib/libboost_python310-mt-a64.so.1.92.0
> +#usr/lib/libboost_random-a64.so
> +usr/lib/libboost_random-a64.so.1.92.0
> +#usr/lib/libboost_random-mt-a64.so
> +usr/lib/libboost_random-mt-a64.so.1.92.0
> +#usr/lib/libboost_regex-a64.so
> +usr/lib/libboost_regex-a64.so.1.92.0
> +#usr/lib/libboost_regex-mt-a64.so
> +usr/lib/libboost_regex-mt-a64.so.1.92.0
> +#usr/lib/libboost_serialization-a64.so
> +usr/lib/libboost_serialization-a64.so.1.92.0
> +#usr/lib/libboost_serialization-mt-a64.so
> +usr/lib/libboost_serialization-mt-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_addr2line-a64.so
> +usr/lib/libboost_stacktrace_addr2line-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_addr2line-mt-a64.so
> +usr/lib/libboost_stacktrace_addr2line-mt-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_basic-a64.so
> +usr/lib/libboost_stacktrace_basic-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_basic-mt-a64.so
> +usr/lib/libboost_stacktrace_basic-mt-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_dump-a64.so
> +usr/lib/libboost_stacktrace_dump-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_dump-mt-a64.so
> +usr/lib/libboost_stacktrace_dump-mt-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_from_exception-a64.so
> +usr/lib/libboost_stacktrace_from_exception-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_from_exception-mt-a64.so
> +usr/lib/libboost_stacktrace_from_exception-mt-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_noop-a64.so
> +usr/lib/libboost_stacktrace_noop-a64.so.1.92.0
> +#usr/lib/libboost_stacktrace_noop-mt-a64.so
> +usr/lib/libboost_stacktrace_noop-mt-a64.so.1.92.0
> +#usr/lib/libboost_test_exec_monitor-a64.a
> +#usr/lib/libboost_test_exec_monitor-mt-a64.a
> +#usr/lib/libboost_thread-mt-a64.so
> +usr/lib/libboost_thread-mt-a64.so.1.92.0
> +#usr/lib/libboost_timer-a64.so
> +usr/lib/libboost_timer-a64.so.1.92.0
> +#usr/lib/libboost_timer-mt-a64.so
> +usr/lib/libboost_timer-mt-a64.so.1.92.0
> +#usr/lib/libboost_type_erasure-a64.so
> +usr/lib/libboost_type_erasure-a64.so.1.92.0
> +#usr/lib/libboost_type_erasure-mt-a64.so
> +usr/lib/libboost_type_erasure-mt-a64.so.1.92.0
> +#usr/lib/libboost_unit_test_framework-a64.so
> +usr/lib/libboost_unit_test_framework-a64.so.1.92.0
> +#usr/lib/libboost_unit_test_framework-mt-a64.so
> +usr/lib/libboost_unit_test_framework-mt-a64.so.1.92.0
> +#usr/lib/libboost_url-a64.so
> +usr/lib/libboost_url-a64.so.1.92.0
> +#usr/lib/libboost_url-mt-a64.so
> +usr/lib/libboost_url-mt-a64.so.1.92.0
> +#usr/lib/libboost_wave-a64.so
> +usr/lib/libboost_wave-a64.so.1.92.0
> +#usr/lib/libboost_wave-mt-a64.so
> +usr/lib/libboost_wave-mt-a64.so.1.92.0
> +#usr/lib/libboost_wserialization-a64.so
> +usr/lib/libboost_wserialization-a64.so.1.92.0
> +#usr/lib/libboost_wserialization-mt-a64.so
> +usr/lib/libboost_wserialization-mt-a64.so.1.92.0
> #usr/share/boost_predef
> #usr/share/boost_predef/build.jam
> #usr/share/boost_predef/tools
> diff --git a/config/rootfiles/common/riscv64/boost b/config/rootfiles/common/riscv64/boost
> index e592447a3..1c115bc11 100644
> --- a/config/rootfiles/common/riscv64/boost
> +++ b/config/rootfiles/common/riscv64/boost
> @@ -439,6 +439,7 @@
> #usr/include/boost/asio/detail/array_fwd.hpp
> #usr/include/boost/asio/detail/assert.hpp
> #usr/include/boost/asio/detail/atomic_count.hpp
> +#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
> #usr/include/boost/asio/detail/base_from_cancellation_state.hpp
> #usr/include/boost/asio/detail/base_from_completion_cond.hpp
> #usr/include/boost/asio/detail/bind_handler.hpp
> @@ -477,6 +478,7 @@
> #usr/include/boost/asio/detail/fd_set_adapter.hpp
> #usr/include/boost/asio/detail/fenced_block.hpp
> #usr/include/boost/asio/detail/functional.hpp
> +#usr/include/boost/asio/detail/futex_slim_mutex.hpp
> #usr/include/boost/asio/detail/future.hpp
> #usr/include/boost/asio/detail/global.hpp
> #usr/include/boost/asio/detail/handler_alloc_helpers.hpp
> @@ -527,6 +529,7 @@
> #usr/include/boost/asio/detail/impl/thread_context.ipp
> #usr/include/boost/asio/detail/impl/throw_error.ipp
> #usr/include/boost/asio/detail/impl/timer_queue_set.ipp
> +#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_event.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
> @@ -534,7 +537,6 @@
> #usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
> -#usr/include/boost/asio/detail/impl/win_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
> #usr/include/boost/asio/detail/impl/win_static_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_thread.ipp
> @@ -641,6 +643,7 @@
> #usr/include/boost/asio/detail/signal_init.hpp
> #usr/include/boost/asio/detail/signal_op.hpp
> #usr/include/boost/asio/detail/signal_set_service.hpp
> +#usr/include/boost/asio/detail/slim_mutex.hpp
> #usr/include/boost/asio/detail/socket_holder.hpp
> #usr/include/boost/asio/detail/socket_ops.hpp
> #usr/include/boost/asio/detail/socket_option.hpp
> @@ -674,6 +677,7 @@
> #usr/include/boost/asio/detail/utility.hpp
> #usr/include/boost/asio/detail/wait_handler.hpp
> #usr/include/boost/asio/detail/wait_op.hpp
> +#usr/include/boost/asio/detail/win_critsec_mutex.hpp
> #usr/include/boost/asio/detail/win_event.hpp
> #usr/include/boost/asio/detail/win_fd_set_adapter.hpp
> #usr/include/boost/asio/detail/win_global.hpp
> @@ -731,8 +735,6 @@
> #usr/include/boost/asio/execution/context.hpp
> #usr/include/boost/asio/execution/context_as.hpp
> #usr/include/boost/asio/execution/executor.hpp
> -#usr/include/boost/asio/execution/impl
> -#usr/include/boost/asio/execution/impl/bad_executor.ipp
> #usr/include/boost/asio/execution/inline_exception_handling.hpp
> #usr/include/boost/asio/execution/invocable_archetype.hpp
> #usr/include/boost/asio/execution/mapping.hpp
> @@ -782,6 +784,7 @@
> #usr/include/boost/asio/experimental/use_coro.hpp
> #usr/include/boost/asio/experimental/use_promise.hpp
> #usr/include/boost/asio/file_base.hpp
> +#usr/include/boost/asio/fwd.hpp
> #usr/include/boost/asio/generic
> #usr/include/boost/asio/generic/basic_endpoint.hpp
> #usr/include/boost/asio/generic/datagram_protocol.hpp
> @@ -820,10 +823,8 @@
> #usr/include/boost/asio/impl/execution_context.hpp
> #usr/include/boost/asio/impl/execution_context.ipp
> #usr/include/boost/asio/impl/executor.hpp
> -#usr/include/boost/asio/impl/executor.ipp
> #usr/include/boost/asio/impl/io_context.hpp
> #usr/include/boost/asio/impl/io_context.ipp
> -#usr/include/boost/asio/impl/multiple_exceptions.ipp
> #usr/include/boost/asio/impl/prepend.hpp
> #usr/include/boost/asio/impl/read.hpp
> #usr/include/boost/asio/impl/read_at.hpp
> @@ -1511,6 +1512,7 @@
> #usr/include/boost/bimap/detail/map_view_base.hpp
> #usr/include/boost/bimap/detail/map_view_iterator.hpp
> #usr/include/boost/bimap/detail/modifier_adaptor.hpp
> +#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
> #usr/include/boost/bimap/detail/non_unique_views_helper.hpp
> #usr/include/boost/bimap/detail/set_view_base.hpp
> #usr/include/boost/bimap/detail/set_view_iterator.hpp
> @@ -2390,11 +2392,13 @@
> #usr/include/boost/container/detail/addressof.hpp
> #usr/include/boost/container/detail/advanced_insert_int.hpp
> #usr/include/boost/container/detail/algorithm.hpp
> +#usr/include/boost/container/detail/aligned_allocation.hpp
> #usr/include/boost/container/detail/alloc_helpers.hpp
> #usr/include/boost/container/detail/alloc_lib.h
> #usr/include/boost/container/detail/allocation_type.hpp
> #usr/include/boost/container/detail/allocator_version_traits.hpp
> #usr/include/boost/container/detail/auto_link.hpp
> +#usr/include/boost/container/detail/bit_utilities.hpp
> #usr/include/boost/container/detail/block_list.hpp
> #usr/include/boost/container/detail/block_slist.hpp
> #usr/include/boost/container/detail/compare_functors.hpp
> @@ -2404,12 +2408,14 @@
> #usr/include/boost/container/detail/container_or_allocator_rebind.hpp
> #usr/include/boost/container/detail/container_rebind.hpp
> #usr/include/boost/container/detail/copy_move_algo.hpp
> +#usr/include/boost/container/detail/deque_impl.hpp
> #usr/include/boost/container/detail/destroyers.hpp
> #usr/include/boost/container/detail/dispatch_uses_allocator.hpp
> #usr/include/boost/container/detail/dlmalloc.hpp
> #usr/include/boost/container/detail/flat_tree.hpp
> #usr/include/boost/container/detail/function_detector.hpp
> #usr/include/boost/container/detail/guards_dended.hpp
> +#usr/include/boost/container/detail/is_constructible.hpp
> #usr/include/boost/container/detail/is_container.hpp
> #usr/include/boost/container/detail/is_contiguous_container.hpp
> #usr/include/boost/container/detail/is_pair.hpp
> @@ -2434,6 +2440,7 @@
> #usr/include/boost/container/detail/pool_common.hpp
> #usr/include/boost/container/detail/pool_common_alloc.hpp
> #usr/include/boost/container/detail/pool_resource.hpp
> +#usr/include/boost/container/detail/range_utils.hpp
> #usr/include/boost/container/detail/singleton.hpp
> #usr/include/boost/container/detail/std_fwd.hpp
> #usr/include/boost/container/detail/thread_mutex.hpp
> @@ -2446,8 +2453,60 @@
> #usr/include/boost/container/detail/version_type.hpp
> #usr/include/boost/container/detail/workaround.hpp
> #usr/include/boost/container/devector.hpp
> +#usr/include/boost/container/experimental
> +#usr/include/boost/container/experimental/nest.hpp
> +#usr/include/boost/container/experimental/pmr
> +#usr/include/boost/container/experimental/pmr/nest.hpp
> +#usr/include/boost/container/experimental/segmented_all_of.hpp
> +#usr/include/boost/container/experimental/segmented_any_of.hpp
> +#usr/include/boost/container/experimental/segmented_copy.hpp
> +#usr/include/boost/container/experimental/segmented_copy_if.hpp
> +#usr/include/boost/container/experimental/segmented_copy_n.hpp
> +#usr/include/boost/container/experimental/segmented_count.hpp
> +#usr/include/boost/container/experimental/segmented_count_if.hpp
> +#usr/include/boost/container/experimental/segmented_equal.hpp
> +#usr/include/boost/container/experimental/segmented_fill.hpp
> +#usr/include/boost/container/experimental/segmented_fill_n.hpp
> +#usr/include/boost/container/experimental/segmented_find.hpp
> +#usr/include/boost/container/experimental/segmented_find_if.hpp
> +#usr/include/boost/container/experimental/segmented_find_if_not.hpp
> +#usr/include/boost/container/experimental/segmented_find_last.hpp
> +#usr/include/boost/container/experimental/segmented_find_last_if.hpp
> +#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
> +#usr/include/boost/container/experimental/segmented_for_each.hpp
> +#usr/include/boost/container/experimental/segmented_generate.hpp
> +#usr/include/boost/container/experimental/segmented_generate_n.hpp
> +#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
> +#usr/include/boost/container/experimental/segmented_is_sorted.hpp
> +#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
> +#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
> +#usr/include/boost/container/experimental/segmented_merge.hpp
> +#usr/include/boost/container/experimental/segmented_mismatch.hpp
> +#usr/include/boost/container/experimental/segmented_none_of.hpp
> +#usr/include/boost/container/experimental/segmented_partition.hpp
> +#usr/include/boost/container/experimental/segmented_partition_copy.hpp
> +#usr/include/boost/container/experimental/segmented_partition_point.hpp
> +#usr/include/boost/container/experimental/segmented_remove.hpp
> +#usr/include/boost/container/experimental/segmented_remove_copy.hpp
> +#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
> +#usr/include/boost/container/experimental/segmented_remove_if.hpp
> +#usr/include/boost/container/experimental/segmented_replace.hpp
> +#usr/include/boost/container/experimental/segmented_replace_if.hpp
> +#usr/include/boost/container/experimental/segmented_reverse.hpp
> +#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
> +#usr/include/boost/container/experimental/segmented_search.hpp
> +#usr/include/boost/container/experimental/segmented_search_n.hpp
> +#usr/include/boost/container/experimental/segmented_set_difference.hpp
> +#usr/include/boost/container/experimental/segmented_set_intersection.hpp
> +#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
> +#usr/include/boost/container/experimental/segmented_set_union.hpp
> +#usr/include/boost/container/experimental/segmented_stable_partition.hpp
> +#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
> +#usr/include/boost/container/experimental/segmented_transform.hpp
> +#usr/include/boost/container/experimental/wrapped_iterator.hpp
> #usr/include/boost/container/flat_map.hpp
> #usr/include/boost/container/flat_set.hpp
> +#usr/include/boost/container/hub.hpp
> #usr/include/boost/container/list.hpp
> #usr/include/boost/container/map.hpp
> #usr/include/boost/container/new_allocator.hpp
> @@ -2460,6 +2519,7 @@
> #usr/include/boost/container/pmr/flat_map.hpp
> #usr/include/boost/container/pmr/flat_set.hpp
> #usr/include/boost/container/pmr/global_resource.hpp
> +#usr/include/boost/container/pmr/hub.hpp
> #usr/include/boost/container/pmr/list.hpp
> #usr/include/boost/container/pmr/map.hpp
> #usr/include/boost/container/pmr/memory_resource.hpp
> @@ -2467,6 +2527,7 @@
> #usr/include/boost/container/pmr/polymorphic_allocator.hpp
> #usr/include/boost/container/pmr/pool_options.hpp
> #usr/include/boost/container/pmr/resource_adaptor.hpp
> +#usr/include/boost/container/pmr/segtor.hpp
> #usr/include/boost/container/pmr/set.hpp
> #usr/include/boost/container/pmr/slist.hpp
> #usr/include/boost/container/pmr/small_vector.hpp
> @@ -2477,6 +2538,7 @@
> #usr/include/boost/container/pmr/vector.hpp
> #usr/include/boost/container/scoped_allocator.hpp
> #usr/include/boost/container/scoped_allocator_fwd.hpp
> +#usr/include/boost/container/segtor.hpp
> #usr/include/boost/container/set.hpp
> #usr/include/boost/container/slist.hpp
> #usr/include/boost/container/small_vector.hpp
> @@ -2485,6 +2547,7 @@
> #usr/include/boost/container/string.hpp
> #usr/include/boost/container/throw_exception.hpp
> #usr/include/boost/container/uses_allocator.hpp
> +#usr/include/boost/container/uses_allocator_construction.hpp
> #usr/include/boost/container/uses_allocator_fwd.hpp
> #usr/include/boost/container/vector.hpp
> #usr/include/boost/container_hash
> @@ -2605,6 +2668,9 @@
> #usr/include/boost/contract/override.hpp
> #usr/include/boost/contract/public_function.hpp
> #usr/include/boost/contract_macro.hpp
> +#usr/include/boost/conversion
> +#usr/include/boost/conversion/detail
> +#usr/include/boost/conversion/detail/config.hpp
> #usr/include/boost/convert
> #usr/include/boost/convert.hpp
> #usr/include/boost/convert/base.hpp
> @@ -2865,6 +2931,211 @@
> #usr/include/boost/date_time/tz_db_base.hpp
> #usr/include/boost/date_time/wrapping_int.hpp
> #usr/include/boost/date_time/year_month_day.hpp
> +#usr/include/boost/decimal
> +#usr/include/boost/decimal.hpp
> +#usr/include/boost/decimal/bid_conversion.hpp
> +#usr/include/boost/decimal/cfenv.hpp
> +#usr/include/boost/decimal/cfloat.hpp
> +#usr/include/boost/decimal/charconv.hpp
> +#usr/include/boost/decimal/cmath.hpp
> +#usr/include/boost/decimal/cstdio.hpp
> +#usr/include/boost/decimal/cstdlib.hpp
> +#usr/include/boost/decimal/decimal128_t.hpp
> +#usr/include/boost/decimal/decimal32_t.hpp
> +#usr/include/boost/decimal/decimal64_t.hpp
> +#usr/include/boost/decimal/decimal_fast128_t.hpp
> +#usr/include/boost/decimal/decimal_fast32_t.hpp
> +#usr/include/boost/decimal/decimal_fast64_t.hpp
> +#usr/include/boost/decimal/detail
> +#usr/include/boost/decimal/detail/add_impl.hpp
> +#usr/include/boost/decimal/detail/apply_sign.hpp
> +#usr/include/boost/decimal/detail/attributes.hpp
> +#usr/include/boost/decimal/detail/bit_cast.hpp
> +#usr/include/boost/decimal/detail/bit_layouts.hpp
> +#usr/include/boost/decimal/detail/buffer_sizing.hpp
> +#usr/include/boost/decimal/detail/chars_format.hpp
> +#usr/include/boost/decimal/detail/check_non_finite.hpp
> +#usr/include/boost/decimal/detail/cmath
> +#usr/include/boost/decimal/detail/cmath/abs.hpp
> +#usr/include/boost/decimal/detail/cmath/acos.hpp
> +#usr/include/boost/decimal/detail/cmath/acosh.hpp
> +#usr/include/boost/decimal/detail/cmath/asin.hpp
> +#usr/include/boost/decimal/detail/cmath/asinh.hpp
> +#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
> +#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
> +#usr/include/boost/decimal/detail/cmath/atan.hpp
> +#usr/include/boost/decimal/detail/cmath/atan2.hpp
> +#usr/include/boost/decimal/detail/cmath/atanh.hpp
> +#usr/include/boost/decimal/detail/cmath/beta.hpp
> +#usr/include/boost/decimal/detail/cmath/cbrt.hpp
> +#usr/include/boost/decimal/detail/cmath/ceil.hpp
> +#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
> +#usr/include/boost/decimal/detail/cmath/cos.hpp
> +#usr/include/boost/decimal/detail/cmath/cosh.hpp
> +#usr/include/boost/decimal/detail/cmath/decompose.hpp
> +#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
> +#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
> +#usr/include/boost/decimal/detail/cmath/erf.hpp
> +#usr/include/boost/decimal/detail/cmath/exp.hpp
> +#usr/include/boost/decimal/detail/cmath/exp2.hpp
> +#usr/include/boost/decimal/detail/cmath/expm1.hpp
> +#usr/include/boost/decimal/detail/cmath/fabs.hpp
> +#usr/include/boost/decimal/detail/cmath/fdim.hpp
> +#usr/include/boost/decimal/detail/cmath/floor.hpp
> +#usr/include/boost/decimal/detail/cmath/fma.hpp
> +#usr/include/boost/decimal/detail/cmath/fmax.hpp
> +#usr/include/boost/decimal/detail/cmath/fmin.hpp
> +#usr/include/boost/decimal/detail/cmath/fmod.hpp
> +#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
> +#usr/include/boost/decimal/detail/cmath/frexp.hpp
> +#usr/include/boost/decimal/detail/cmath/frexp10.hpp
> +#usr/include/boost/decimal/detail/cmath/hermite.hpp
> +#usr/include/boost/decimal/detail/cmath/hypot.hpp
> +#usr/include/boost/decimal/detail/cmath/ilogb.hpp
> +#usr/include/boost/decimal/detail/cmath/impl
> +#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/isfinite.hpp
> +#usr/include/boost/decimal/detail/cmath/isgreater.hpp
> +#usr/include/boost/decimal/detail/cmath/isless.hpp
> +#usr/include/boost/decimal/detail/cmath/isunordered.hpp
> +#usr/include/boost/decimal/detail/cmath/laguerre.hpp
> +#usr/include/boost/decimal/detail/cmath/ldexp.hpp
> +#usr/include/boost/decimal/detail/cmath/legendre.hpp
> +#usr/include/boost/decimal/detail/cmath/lgamma.hpp
> +#usr/include/boost/decimal/detail/cmath/log.hpp
> +#usr/include/boost/decimal/detail/cmath/log10.hpp
> +#usr/include/boost/decimal/detail/cmath/log1p.hpp
> +#usr/include/boost/decimal/detail/cmath/log2.hpp
> +#usr/include/boost/decimal/detail/cmath/logb.hpp
> +#usr/include/boost/decimal/detail/cmath/modf.hpp
> +#usr/include/boost/decimal/detail/cmath/nan.hpp
> +#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
> +#usr/include/boost/decimal/detail/cmath/next.hpp
> +#usr/include/boost/decimal/detail/cmath/normalize.hpp
> +#usr/include/boost/decimal/detail/cmath/pow.hpp
> +#usr/include/boost/decimal/detail/cmath/remainder.hpp
> +#usr/include/boost/decimal/detail/cmath/remquo.hpp
> +#usr/include/boost/decimal/detail/cmath/rescale.hpp
> +#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
> +#usr/include/boost/decimal/detail/cmath/rint.hpp
> +#usr/include/boost/decimal/detail/cmath/round.hpp
> +#usr/include/boost/decimal/detail/cmath/sin.hpp
> +#usr/include/boost/decimal/detail/cmath/sinh.hpp
> +#usr/include/boost/decimal/detail/cmath/sqrt.hpp
> +#usr/include/boost/decimal/detail/cmath/tan.hpp
> +#usr/include/boost/decimal/detail/cmath/tanh.hpp
> +#usr/include/boost/decimal/detail/cmath/tgamma.hpp
> +#usr/include/boost/decimal/detail/cmath/trunc.hpp
> +#usr/include/boost/decimal/detail/comparison.hpp
> +#usr/include/boost/decimal/detail/components.hpp
> +#usr/include/boost/decimal/detail/concepts.hpp
> +#usr/include/boost/decimal/detail/config.hpp
> +#usr/include/boost/decimal/detail/construction_sign.hpp
> +#usr/include/boost/decimal/detail/countl.hpp
> +#usr/include/boost/decimal/detail/div_impl.hpp
> +#usr/include/boost/decimal/detail/fast_float
> +#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
> +#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
> +#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
> +#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
> +#usr/include/boost/decimal/detail/fenv_rounding.hpp
> +#usr/include/boost/decimal/detail/formatting_limits.hpp
> +#usr/include/boost/decimal/detail/from_chars_impl.hpp
> +#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
> +#usr/include/boost/decimal/detail/from_chars_result.hpp
> +#usr/include/boost/decimal/detail/fwd_log.hpp
> +#usr/include/boost/decimal/detail/i256.hpp
> +#usr/include/boost/decimal/detail/int128
> +#usr/include/boost/decimal/detail/int128.hpp
> +#usr/include/boost/decimal/detail/int128/bit.hpp
> +#usr/include/boost/decimal/detail/int128/climits.hpp
> +#usr/include/boost/decimal/detail/int128/cstdlib.hpp
> +#usr/include/boost/decimal/detail/int128/detail
> +#usr/include/boost/decimal/detail/int128/detail/clz.hpp
> +#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
> +#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
> +#usr/include/boost/decimal/detail/int128/detail/config.hpp
> +#usr/include/boost/decimal/detail/int128/detail/constants.hpp
> +#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
> +#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
> +#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
> +#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
> +#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
> +#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
> +#usr/include/boost/decimal/detail/int128/detail/traits.hpp
> +#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
> +#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
> +#usr/include/boost/decimal/detail/int128/fmt_format.hpp
> +#usr/include/boost/decimal/detail/int128/format.hpp
> +#usr/include/boost/decimal/detail/int128/int128.hpp
> +#usr/include/boost/decimal/detail/int128/iostream.hpp
> +#usr/include/boost/decimal/detail/int128/limits.hpp
> +#usr/include/boost/decimal/detail/int128/literals.hpp
> +#usr/include/boost/decimal/detail/int128/numeric.hpp
> +#usr/include/boost/decimal/detail/int128/random.hpp
> +#usr/include/boost/decimal/detail/int128/string.hpp
> +#usr/include/boost/decimal/detail/integer_search_trees.hpp
> +#usr/include/boost/decimal/detail/io.hpp
> +#usr/include/boost/decimal/detail/is_power_of_10.hpp
> +#usr/include/boost/decimal/detail/locale_conversion.hpp
> +#usr/include/boost/decimal/detail/memcpy.hpp
> +#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
> +#usr/include/boost/decimal/detail/mod_impl.hpp
> +#usr/include/boost/decimal/detail/mul_impl.hpp
> +#usr/include/boost/decimal/detail/normalize.hpp
> +#usr/include/boost/decimal/detail/parser.hpp
> +#usr/include/boost/decimal/detail/power_tables.hpp
> +#usr/include/boost/decimal/detail/promote_significand.hpp
> +#usr/include/boost/decimal/detail/promotion.hpp
> +#usr/include/boost/decimal/detail/quantize_impl.hpp
> +#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
> +#usr/include/boost/decimal/detail/ryu
> +#usr/include/boost/decimal/detail/ryu/generic_128.hpp
> +#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
> +#usr/include/boost/decimal/detail/shrink_significand.hpp
> +#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
> +#usr/include/boost/decimal/detail/to_chars_result.hpp
> +#usr/include/boost/decimal/detail/to_decimal.hpp
> +#usr/include/boost/decimal/detail/to_float.hpp
> +#usr/include/boost/decimal/detail/to_integral.hpp
> +#usr/include/boost/decimal/detail/type_traits.hpp
> +#usr/include/boost/decimal/detail/u256.hpp
> +#usr/include/boost/decimal/detail/utilities.hpp
> +#usr/include/boost/decimal/detail/write_payload.hpp
> +#usr/include/boost/decimal/dpd_conversion.hpp
> +#usr/include/boost/decimal/fmt_format.hpp
> +#usr/include/boost/decimal/format.hpp
> +#usr/include/boost/decimal/fwd.hpp
> +#usr/include/boost/decimal/hash.hpp
> +#usr/include/boost/decimal/iostream.hpp
> +#usr/include/boost/decimal/literals.hpp
> +#usr/include/boost/decimal/numbers.hpp
> +#usr/include/boost/decimal/string.hpp
> +#usr/include/boost/decimal/uint128_t.hpp
> #usr/include/boost/describe
> #usr/include/boost/describe.hpp
> #usr/include/boost/describe/bases.hpp
> @@ -2909,7 +3180,6 @@
> #usr/include/boost/detail/is_sorted.hpp
> #usr/include/boost/detail/is_xxx.hpp
> #usr/include/boost/detail/iterator.hpp
> -#usr/include/boost/detail/lcast_precision.hpp
> #usr/include/boost/detail/lightweight_main.hpp
> #usr/include/boost/detail/lightweight_mutex.hpp
> #usr/include/boost/detail/lightweight_test.hpp
> @@ -2993,6 +3263,7 @@
> #usr/include/boost/dll/config.hpp
> #usr/include/boost/dll/detail
> #usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
> +#usr/include/boost/dll/detail/config.hpp
> #usr/include/boost/dll/detail/ctor_dtor.hpp
> #usr/include/boost/dll/detail/demangling
> #usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
> @@ -3057,6 +3328,7 @@
> #usr/include/boost/exception/current_exception_cast.hpp
> #usr/include/boost/exception/detail
> #usr/include/boost/exception/detail/clone_current_exception.hpp
> +#usr/include/boost/exception/detail/encoder.hpp
> #usr/include/boost/exception/detail/error_info_impl.hpp
> #usr/include/boost/exception/detail/exception_ptr.hpp
> #usr/include/boost/exception/detail/is_output_streamable.hpp
> @@ -3080,6 +3352,9 @@
> #usr/include/boost/exception/get_error_info.hpp
> #usr/include/boost/exception/info.hpp
> #usr/include/boost/exception/info_tuple.hpp
> +#usr/include/boost/exception/serialization
> +#usr/include/boost/exception/serialization/boost_json_encoder.hpp
> +#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
> #usr/include/boost/exception/to_string.hpp
> #usr/include/boost/exception/to_string_stub.hpp
> #usr/include/boost/exception_ptr.hpp
> @@ -5091,8 +5366,6 @@
> #usr/include/boost/geometry/index/detail/tags.hpp
> #usr/include/boost/geometry/index/detail/translator.hpp
> #usr/include/boost/geometry/index/detail/utilities.hpp
> -#usr/include/boost/geometry/index/detail/varray.hpp
> -#usr/include/boost/geometry/index/detail/varray_detail.hpp
> #usr/include/boost/geometry/index/distance_predicates.hpp
> #usr/include/boost/geometry/index/equal_to.hpp
> #usr/include/boost/geometry/index/indexable.hpp
> @@ -6077,6 +6350,8 @@
> #usr/include/boost/graph/leda_graph.hpp
> #usr/include/boost/graph/lookup_edge.hpp
> #usr/include/boost/graph/loop_erased_random_walk.hpp
> +#usr/include/boost/graph/louvain_clustering.hpp
> +#usr/include/boost/graph/louvain_quality_functions.hpp
> #usr/include/boost/graph/make_biconnected_planar.hpp
> #usr/include/boost/graph/make_connected.hpp
> #usr/include/boost/graph/make_maximal_planar.hpp
> @@ -6679,6 +6954,7 @@
> #usr/include/boost/heap/detail
> #usr/include/boost/heap/detail/heap_comparison.hpp
> #usr/include/boost/heap/detail/heap_node.hpp
> +#usr/include/boost/heap/detail/heap_utils.hpp
> #usr/include/boost/heap/detail/ilog2.hpp
> #usr/include/boost/heap/detail/mutable_heap.hpp
> #usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
> @@ -6888,8 +7164,10 @@
> #usr/include/boost/icl/concept/set_value.hpp
> #usr/include/boost/icl/continuous_interval.hpp
> #usr/include/boost/icl/detail
> +#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
> #usr/include/boost/icl/detail/associated_value.hpp
> #usr/include/boost/icl/detail/boost_config.hpp
> +#usr/include/boost/icl/detail/co_equal_fwd.hpp
> #usr/include/boost/icl/detail/concept_check.hpp
> #usr/include/boost/icl/detail/design_config.hpp
> #usr/include/boost/icl/detail/element_comparer.hpp
> @@ -6899,12 +7177,14 @@
> #usr/include/boost/icl/detail/interval_morphism.hpp
> #usr/include/boost/icl/detail/interval_set_algo.hpp
> #usr/include/boost/icl/detail/interval_subset_comparer.hpp
> +#usr/include/boost/icl/detail/map_adaptor.hpp
> #usr/include/boost/icl/detail/map_algo.hpp
> #usr/include/boost/icl/detail/mapped_reference.hpp
> #usr/include/boost/icl/detail/notate.hpp
> #usr/include/boost/icl/detail/on_absorbtion.hpp
> #usr/include/boost/icl/detail/relation_state.hpp
> #usr/include/boost/icl/detail/requires_cxx11.hpp
> +#usr/include/boost/icl/detail/set_adaptor.hpp
> #usr/include/boost/icl/detail/set_algo.hpp
> #usr/include/boost/icl/detail/std_set.hpp
> #usr/include/boost/icl/detail/subset_comparer.hpp
> @@ -7585,6 +7865,7 @@
> #usr/include/boost/json/impl/value_ref.ipp
> #usr/include/boost/json/impl/value_stack.ipp
> #usr/include/boost/json/impl/visit.hpp
> +#usr/include/boost/json/impl/visit.ipp
> #usr/include/boost/json/is_deallocate_trivial.hpp
> #usr/include/boost/json/kind.hpp
> #usr/include/boost/json/monotonic_resource.hpp
> @@ -7660,15 +7941,20 @@
> #usr/include/boost/leaf/config/tls_cpp11.hpp
> #usr/include/boost/leaf/config/tls_freertos.hpp
> #usr/include/boost/leaf/config/tls_globals.hpp
> +#usr/include/boost/leaf/config/tls_win32.hpp
> +#usr/include/boost/leaf/config/visibility.hpp
> #usr/include/boost/leaf/context.hpp
> #usr/include/boost/leaf/detail
> #usr/include/boost/leaf/detail/all.hpp
> #usr/include/boost/leaf/detail/capture_list.hpp
> #usr/include/boost/leaf/detail/demangle.hpp
> +#usr/include/boost/leaf/detail/diagnostics_writer.hpp
> +#usr/include/boost/leaf/detail/encoder.hpp
> +#usr/include/boost/leaf/detail/exception_base.hpp
> #usr/include/boost/leaf/detail/function_traits.hpp
> #usr/include/boost/leaf/detail/mp11.hpp
> #usr/include/boost/leaf/detail/optional.hpp
> -#usr/include/boost/leaf/detail/print.hpp
> +#usr/include/boost/leaf/detail/type_name.hpp
> #usr/include/boost/leaf/diagnostics.hpp
> #usr/include/boost/leaf/error.hpp
> #usr/include/boost/leaf/exception.hpp
> @@ -7676,12 +7962,16 @@
> #usr/include/boost/leaf/on_error.hpp
> #usr/include/boost/leaf/pred.hpp
> #usr/include/boost/leaf/result.hpp
> +#usr/include/boost/leaf/serialization
> +#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
> +#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
> #usr/include/boost/leaf/to_variant.hpp
> #usr/include/boost/lexical_cast
> #usr/include/boost/lexical_cast.hpp
> #usr/include/boost/lexical_cast/bad_lexical_cast.hpp
> #usr/include/boost/lexical_cast/detail
> #usr/include/boost/lexical_cast/detail/buffer_view.hpp
> +#usr/include/boost/lexical_cast/detail/config.hpp
> #usr/include/boost/lexical_cast/detail/converter_lexical.hpp
> #usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
> #usr/include/boost/lexical_cast/detail/converter_numeric.hpp
> @@ -7689,6 +7979,7 @@
> #usr/include/boost/lexical_cast/detail/is_character.hpp
> #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
> #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
> +#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
> #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
> #usr/include/boost/lexical_cast/detail/type_traits.hpp
> #usr/include/boost/lexical_cast/detail/widest_char.hpp
> @@ -7798,17 +8089,20 @@
> #usr/include/boost/locale/util/locale_data.hpp
> #usr/include/boost/locale/util/string.hpp
> #usr/include/boost/lockfree
> +#usr/include/boost/lockfree/bounded_ticket_queue.hpp
> #usr/include/boost/lockfree/detail
> #usr/include/boost/lockfree/detail/atomic.hpp
> #usr/include/boost/lockfree/detail/copy_payload.hpp
> #usr/include/boost/lockfree/detail/freelist.hpp
> #usr/include/boost/lockfree/detail/parameter.hpp
> +#usr/include/boost/lockfree/detail/power_of_two.hpp
> #usr/include/boost/lockfree/detail/prefix.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
> #usr/include/boost/lockfree/detail/uses_optional.hpp
> #usr/include/boost/lockfree/lockfree_forward.hpp
> +#usr/include/boost/lockfree/mpsc_weak_queue.hpp
> #usr/include/boost/lockfree/policies.hpp
> #usr/include/boost/lockfree/queue.hpp
> #usr/include/boost/lockfree/spsc_queue.hpp
> @@ -8283,8 +8577,17 @@
> #usr/include/boost/math/optimization/cma_es.hpp
> #usr/include/boost/math/optimization/detail
> #usr/include/boost/math/optimization/detail/common.hpp
> +#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
> +#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
> +#usr/include/boost/math/optimization/detail/line_search_policies.hpp
> +#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
> #usr/include/boost/math/optimization/differential_evolution.hpp
> +#usr/include/boost/math/optimization/gradient_descent.hpp
> +#usr/include/boost/math/optimization/gradient_optimizers.hpp
> #usr/include/boost/math/optimization/jso.hpp
> +#usr/include/boost/math/optimization/lbfgs.hpp
> +#usr/include/boost/math/optimization/minimizer.hpp
> +#usr/include/boost/math/optimization/nesterov.hpp
> #usr/include/boost/math/optimization/random_search.hpp
> #usr/include/boost/math/policies
> #usr/include/boost/math/policies/error_handling.hpp
> @@ -10296,12 +10599,23 @@
> #usr/include/boost/msm/backmp11
> #usr/include/boost/msm/backmp11/common_types.hpp
> #usr/include/boost/msm/backmp11/detail
> -#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
> +#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
> +#usr/include/boost/msm/backmp11/detail/common.hpp
> +#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
> #usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
> #usr/include/boost/msm/backmp11/detail/history_impl.hpp
> #usr/include/boost/msm/backmp11/detail/metafunctions.hpp
> +#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
> +#usr/include/boost/msm/backmp11/detail/state_tags.hpp
> +#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
> +#usr/include/boost/msm/backmp11/detail/transition_table.hpp
> #usr/include/boost/msm/backmp11/event_traits.hpp
> #usr/include/boost/msm/backmp11/favor_compile_time.hpp
> +#usr/include/boost/msm/backmp11/observer.hpp
> +#usr/include/boost/msm/backmp11/serialization
> +#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
> +#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
> +#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
> #usr/include/boost/msm/backmp11/state_machine.hpp
> #usr/include/boost/msm/backmp11/state_machine_config.hpp
> #usr/include/boost/msm/common.hpp
> @@ -10312,6 +10626,7 @@
> #usr/include/boost/msm/front/detail
> #usr/include/boost/msm/front/detail/common_states.hpp
> #usr/include/boost/msm/front/detail/row2_helper.hpp
> +#usr/include/boost/msm/front/detail/state_tags.hpp
> #usr/include/boost/msm/front/euml
> #usr/include/boost/msm/front/euml/algorithm.hpp
> #usr/include/boost/msm/front/euml/common.hpp
> @@ -10373,11 +10688,10 @@
> #usr/include/boost/multi_index
> #usr/include/boost/multi_index/composite_key.hpp
> #usr/include/boost/multi_index/detail
> -#usr/include/boost/multi_index/detail/access_specifier.hpp
> #usr/include/boost/multi_index/detail/adl_swap.hpp
> -#usr/include/boost/multi_index/detail/allocator_traits.hpp
> #usr/include/boost/multi_index/detail/any_container_view.hpp
> #usr/include/boost/multi_index/detail/archive_constructed.hpp
> +#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
> #usr/include/boost/multi_index/detail/auto_space.hpp
> #usr/include/boost/multi_index/detail/bad_archive_exception.hpp
> #usr/include/boost/multi_index/detail/base_type.hpp
> @@ -10408,7 +10722,9 @@
> #usr/include/boost/multi_index/detail/is_transparent.hpp
> #usr/include/boost/multi_index/detail/iter_adaptor.hpp
> #usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
> +#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
> #usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
> +#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
> #usr/include/boost/multi_index/detail/node_handle.hpp
> #usr/include/boost/multi_index/detail/node_type.hpp
> #usr/include/boost/multi_index/detail/ord_index_args.hpp
> @@ -10431,11 +10747,11 @@
> #usr/include/boost/multi_index/detail/seq_index_node.hpp
> #usr/include/boost/multi_index/detail/seq_index_ops.hpp
> #usr/include/boost/multi_index/detail/serialization_version.hpp
> +#usr/include/boost/multi_index/detail/type_list.hpp
> #usr/include/boost/multi_index/detail/uintptr_type.hpp
> #usr/include/boost/multi_index/detail/unbounded.hpp
> #usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
> #usr/include/boost/multi_index/detail/value_compare.hpp
> -#usr/include/boost/multi_index/detail/vartempl_support.hpp
> #usr/include/boost/multi_index/global_fun.hpp
> #usr/include/boost/multi_index/hashed_index.hpp
> #usr/include/boost/multi_index/hashed_index_fwd.hpp
> @@ -10678,6 +10994,7 @@
> #usr/include/boost/mysql/impl/internal/error
> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
> +#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
> #usr/include/boost/mysql/impl/internal/protocol
> #usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
> #usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
> @@ -11176,6 +11493,7 @@
> #usr/include/boost/openmethod/initialize.hpp
> #usr/include/boost/openmethod/inplace_vptr.hpp
> #usr/include/boost/openmethod/interop
> +#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
> #usr/include/boost/openmethod/interop/std_shared_ptr.hpp
> #usr/include/boost/openmethod/interop/std_unique_ptr.hpp
> #usr/include/boost/openmethod/macros.hpp
> @@ -11197,14 +11515,17 @@
> #usr/include/boost/optional/detail
> #usr/include/boost/optional/detail/experimental_traits.hpp
> #usr/include/boost/optional/detail/optional_aligned_storage.hpp
> +#usr/include/boost/optional/detail/optional_common_defs.hpp
> #usr/include/boost/optional/detail/optional_config.hpp
> #usr/include/boost/optional/detail/optional_factory_support.hpp
> #usr/include/boost/optional/detail/optional_hash.hpp
> +#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
> #usr/include/boost/optional/detail/optional_reference_spec.hpp
> #usr/include/boost/optional/detail/optional_relops.hpp
> +#usr/include/boost/optional/detail/optional_select_implementation.hpp
> #usr/include/boost/optional/detail/optional_swap.hpp
> #usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
> -#usr/include/boost/optional/detail/optional_utility.hpp
> +#usr/include/boost/optional/detail/union_optional.hpp
> #usr/include/boost/optional/optional.hpp
> #usr/include/boost/optional/optional_fwd.hpp
> #usr/include/boost/optional/optional_io.hpp
> @@ -11489,9 +11810,11 @@
> #usr/include/boost/pfr/detail/core17.hpp
> #usr/include/boost/pfr/detail/core17_generated.hpp
> #usr/include/boost/pfr/detail/core26.hpp
> +#usr/include/boost/pfr/detail/core26_reflection.hpp
> #usr/include/boost/pfr/detail/core_name.hpp
> #usr/include/boost/pfr/detail/core_name14_disabled.hpp
> #usr/include/boost/pfr/detail/core_name20_static.hpp
> +#usr/include/boost/pfr/detail/core_name26_reflection.hpp
> #usr/include/boost/pfr/detail/detectors.hpp
> #usr/include/boost/pfr/detail/fake_object.hpp
> #usr/include/boost/pfr/detail/fields_count.hpp
> @@ -13245,6 +13568,7 @@
> #usr/include/boost/python/detail/pointee.hpp
> #usr/include/boost/python/detail/prefix.hpp
> #usr/include/boost/python/detail/preprocessor.hpp
> +#usr/include/boost/python/detail/pymutex.hpp
> #usr/include/boost/python/detail/python22_fixed.h
> #usr/include/boost/python/detail/python_type.hpp
> #usr/include/boost/python/detail/raw_pyobject.hpp
> @@ -13750,15 +14074,20 @@
> #usr/include/boost/redis/connection.hpp
> #usr/include/boost/redis/detail
> #usr/include/boost/redis/detail/connect_fsm.hpp
> +#usr/include/boost/redis/detail/connect_params.hpp
> #usr/include/boost/redis/detail/connection_state.hpp
> #usr/include/boost/redis/detail/coroutine.hpp
> #usr/include/boost/redis/detail/exec_fsm.hpp
> +#usr/include/boost/redis/detail/exec_one_fsm.hpp
> #usr/include/boost/redis/detail/multiplexer.hpp
> #usr/include/boost/redis/detail/read_buffer.hpp
> #usr/include/boost/redis/detail/reader_fsm.hpp
> +#usr/include/boost/redis/detail/receive_fsm.hpp
> #usr/include/boost/redis/detail/redis_stream.hpp
> #usr/include/boost/redis/detail/resp3_type_to_error.hpp
> #usr/include/boost/redis/detail/run_fsm.hpp
> +#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
> +#usr/include/boost/redis/detail/subscription_tracker.hpp
> #usr/include/boost/redis/detail/write.hpp
> #usr/include/boost/redis/detail/writer_fsm.hpp
> #usr/include/boost/redis/error.hpp
> @@ -13768,23 +14097,32 @@
> #usr/include/boost/redis/impl/connection.ipp
> #usr/include/boost/redis/impl/error.ipp
> #usr/include/boost/redis/impl/exec_fsm.ipp
> +#usr/include/boost/redis/impl/exec_one_fsm.ipp
> +#usr/include/boost/redis/impl/flat_tree.ipp
> #usr/include/boost/redis/impl/ignore.ipp
> #usr/include/boost/redis/impl/is_terminal_cancel.hpp
> #usr/include/boost/redis/impl/log_to_file.hpp
> #usr/include/boost/redis/impl/log_utils.hpp
> #usr/include/boost/redis/impl/logger.ipp
> #usr/include/boost/redis/impl/multiplexer.ipp
> +#usr/include/boost/redis/impl/push_parser.ipp
> #usr/include/boost/redis/impl/read_buffer.ipp
> #usr/include/boost/redis/impl/reader_fsm.ipp
> +#usr/include/boost/redis/impl/receive_fsm.ipp
> #usr/include/boost/redis/impl/request.ipp
> #usr/include/boost/redis/impl/response.ipp
> #usr/include/boost/redis/impl/run_fsm.ipp
> +#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
> +#usr/include/boost/redis/impl/sentinel_utils.hpp
> #usr/include/boost/redis/impl/setup_request_utils.hpp
> +#usr/include/boost/redis/impl/subscription_tracker.ipp
> #usr/include/boost/redis/impl/writer_fsm.ipp
> #usr/include/boost/redis/logger.hpp
> #usr/include/boost/redis/operation.hpp
> +#usr/include/boost/redis/push_parser.hpp
> #usr/include/boost/redis/request.hpp
> #usr/include/boost/redis/resp3
> +#usr/include/boost/redis/resp3/flat_tree.hpp
> #usr/include/boost/redis/resp3/impl
> #usr/include/boost/redis/resp3/impl/parser.ipp
> #usr/include/boost/redis/resp3/impl/serialization.ipp
> @@ -13792,6 +14130,7 @@
> #usr/include/boost/redis/resp3/node.hpp
> #usr/include/boost/redis/resp3/parser.hpp
> #usr/include/boost/redis/resp3/serialization.hpp
> +#usr/include/boost/redis/resp3/tree.hpp
> #usr/include/boost/redis/resp3/type.hpp
> #usr/include/boost/redis/response.hpp
> #usr/include/boost/redis/src.hpp
> @@ -15352,9 +15691,11 @@
> #usr/include/boost/stacktrace/detail/addr2line_impls.hpp
> #usr/include/boost/stacktrace/detail/addr_base.hpp
> #usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
> +#usr/include/boost/stacktrace/detail/backend_config.hpp
> #usr/include/boost/stacktrace/detail/collect_msvc.ipp
> #usr/include/boost/stacktrace/detail/collect_noop.ipp
> #usr/include/boost/stacktrace/detail/collect_unwind.ipp
> +#usr/include/boost/stacktrace/detail/config.hpp
> #usr/include/boost/stacktrace/detail/frame_decl.hpp
> #usr/include/boost/stacktrace/detail/frame_msvc.ipp
> #usr/include/boost/stacktrace/detail/frame_noop.ipp
> @@ -15408,7 +15749,10 @@
> #usr/include/boost/statechart/state_machine.hpp
> #usr/include/boost/statechart/termination.hpp
> #usr/include/boost/statechart/transition.hpp
> +#usr/include/boost/static_assert
> #usr/include/boost/static_assert.hpp
> +#usr/include/boost/static_assert/detail
> +#usr/include/boost/static_assert/detail/backward.hpp
> #usr/include/boost/static_string
> #usr/include/boost/static_string.hpp
> #usr/include/boost/static_string/config.hpp
> @@ -15442,6 +15786,7 @@
> #usr/include/boost/system/detail/generic_category.hpp
> #usr/include/boost/system/detail/generic_category_message.hpp
> #usr/include/boost/system/detail/interop_category.hpp
> +#usr/include/boost/system/detail/is_aggregate.hpp
> #usr/include/boost/system/detail/is_same.hpp
> #usr/include/boost/system/detail/mutex.hpp
> #usr/include/boost/system/detail/snprintf.hpp
> @@ -15464,6 +15809,7 @@
> #usr/include/boost/system/result.hpp
> #usr/include/boost/system/system_category.hpp
> #usr/include/boost/system/system_error.hpp
> +#usr/include/boost/system/unwrap_and_invoke.hpp
> #usr/include/boost/system/windows_error.hpp
> #usr/include/boost/test
> #usr/include/boost/test/auto_unit_test.hpp
> @@ -16595,6 +16941,7 @@
> #usr/include/boost/unordered/detail/narrow_cast.hpp
> #usr/include/boost/unordered/detail/opt_storage.hpp
> #usr/include/boost/unordered/detail/prime_fmod.hpp
> +#usr/include/boost/unordered/detail/ranges_support.hpp
> #usr/include/boost/unordered/detail/serialization_version.hpp
> #usr/include/boost/unordered/detail/serialize_container.hpp
> #usr/include/boost/unordered/detail/serialize_fca_container.hpp
> @@ -16623,19 +16970,33 @@
> #usr/include/boost/url
> #usr/include/boost/url.hpp
> #usr/include/boost/url/authority_view.hpp
> +#usr/include/boost/url/decode.hpp
> #usr/include/boost/url/decode_view.hpp
> #usr/include/boost/url/detail
> #usr/include/boost/url/detail/any_params_iter.hpp
> #usr/include/boost/url/detail/any_segments_iter.hpp
> #usr/include/boost/url/detail/config.hpp
> +#usr/include/boost/url/detail/decode.hpp
> #usr/include/boost/url/detail/encode.hpp
> #usr/include/boost/url/detail/except.hpp
> +#usr/include/boost/url/detail/fnv_1a.hpp
> #usr/include/boost/url/detail/format_args.hpp
> #usr/include/boost/url/detail/impl
> +#usr/include/boost/url/detail/impl/any_params_iter.hpp
> +#usr/include/boost/url/detail/impl/any_segments_iter.hpp
> #usr/include/boost/url/detail/impl/format_args.hpp
> +#usr/include/boost/url/detail/impl/params_iter_impl.hpp
> +#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
> +#usr/include/boost/url/detail/impl/url_impl.hpp
> +#usr/include/boost/url/detail/memcpy.hpp
> +#usr/include/boost/url/detail/move_chars.hpp
> +#usr/include/boost/url/detail/normalize.hpp
> #usr/include/boost/url/detail/optional_string.hpp
> +#usr/include/boost/url/detail/over_allocator.hpp
> #usr/include/boost/url/detail/params_iter_impl.hpp
> #usr/include/boost/url/detail/parts_base.hpp
> +#usr/include/boost/url/detail/path.hpp
> +#usr/include/boost/url/detail/print.hpp
> #usr/include/boost/url/detail/replacement_field_rule.hpp
> #usr/include/boost/url/detail/segments_iter_impl.hpp
> #usr/include/boost/url/detail/segments_range.hpp
> @@ -16659,13 +17020,17 @@
> #usr/include/boost/url/grammar/detail
> #usr/include/boost/url/grammar/detail/charset.hpp
> #usr/include/boost/url/grammar/detail/ci_string.hpp
> +#usr/include/boost/url/grammar/detail/range_rule.hpp
> #usr/include/boost/url/grammar/detail/recycled.hpp
> #usr/include/boost/url/grammar/detail/tuple.hpp
> #usr/include/boost/url/grammar/digit_chars.hpp
> #usr/include/boost/url/grammar/error.hpp
> #usr/include/boost/url/grammar/hexdig_chars.hpp
> #usr/include/boost/url/grammar/impl
> +#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
> +#usr/include/boost/url/grammar/impl/delim_rule.hpp
> #usr/include/boost/url/grammar/impl/error.hpp
> +#usr/include/boost/url/grammar/impl/literal_rule.hpp
> #usr/include/boost/url/grammar/impl/not_empty_rule.hpp
> #usr/include/boost/url/grammar/impl/optional_rule.hpp
> #usr/include/boost/url/grammar/impl/parse.hpp
> @@ -16693,17 +17058,30 @@
> #usr/include/boost/url/host_type.hpp
> #usr/include/boost/url/ignore_case.hpp
> #usr/include/boost/url/impl
> +#usr/include/boost/url/impl/authority_view.hpp
> +#usr/include/boost/url/impl/decode.hpp
> #usr/include/boost/url/impl/decode_view.hpp
> #usr/include/boost/url/impl/encode.hpp
> #usr/include/boost/url/impl/error.hpp
> #usr/include/boost/url/impl/params_base.hpp
> #usr/include/boost/url/impl/params_encoded_base.hpp
> #usr/include/boost/url/impl/params_encoded_ref.hpp
> +#usr/include/boost/url/impl/params_encoded_view.hpp
> #usr/include/boost/url/impl/params_ref.hpp
> +#usr/include/boost/url/impl/params_view.hpp
> +#usr/include/boost/url/impl/parse.hpp
> +#usr/include/boost/url/impl/scheme.hpp
> #usr/include/boost/url/impl/segments_base.hpp
> #usr/include/boost/url/impl/segments_encoded_base.hpp
> #usr/include/boost/url/impl/segments_encoded_ref.hpp
> +#usr/include/boost/url/impl/segments_encoded_view.hpp
> #usr/include/boost/url/impl/segments_ref.hpp
> +#usr/include/boost/url/impl/segments_view.hpp
> +#usr/include/boost/url/impl/static_url.hpp
> +#usr/include/boost/url/impl/url.hpp
> +#usr/include/boost/url/impl/url_base.hpp
> +#usr/include/boost/url/impl/url_view.hpp
> +#usr/include/boost/url/impl/url_view_base.hpp
> #usr/include/boost/url/ipv4_address.hpp
> #usr/include/boost/url/ipv6_address.hpp
> #usr/include/boost/url/optional.hpp
> @@ -16722,10 +17100,44 @@
> #usr/include/boost/url/rfc/absolute_uri_rule.hpp
> #usr/include/boost/url/rfc/authority_rule.hpp
> #usr/include/boost/url/rfc/detail
> +#usr/include/boost/url/rfc/detail/charsets.hpp
> +#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/h16_rule.hpp
> +#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/host_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl
> +#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
> +#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
> +#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
> +#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
> #usr/include/boost/url/rfc/detail/path_rules.hpp
> +#usr/include/boost/url/rfc/detail/port_rule.hpp
> +#usr/include/boost/url/rfc/detail/query_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
> +#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/scheme_rule.hpp
> +#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
> #usr/include/boost/url/rfc/gen_delim_chars.hpp
> #usr/include/boost/url/rfc/impl
> +#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
> +#usr/include/boost/url/rfc/impl/authority_rule.hpp
> +#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
> +#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
> +#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
> #usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
> +#usr/include/boost/url/rfc/impl/query_rule.hpp
> +#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
> +#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
> +#usr/include/boost/url/rfc/impl/uri_rule.hpp
> #usr/include/boost/url/rfc/ipv4_address_rule.hpp
> #usr/include/boost/url/rfc/ipv6_address_rule.hpp
> #usr/include/boost/url/rfc/origin_form_rule.hpp
> @@ -16788,21 +17200,33 @@
> #usr/include/boost/uuid/detail/basic_name_generator.hpp
> #usr/include/boost/uuid/detail/chacha20.hpp
> #usr/include/boost/uuid/detail/config.hpp
> +#usr/include/boost/uuid/detail/cstring.hpp
> #usr/include/boost/uuid/detail/endian.hpp
> +#usr/include/boost/uuid/detail/from_chars.hpp
> +#usr/include/boost/uuid/detail/from_chars_generic.hpp
> +#usr/include/boost/uuid/detail/from_chars_result.hpp
> +#usr/include/boost/uuid/detail/from_chars_x86.hpp
> #usr/include/boost/uuid/detail/hash_mix.hpp
> +#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
> #usr/include/boost/uuid/detail/md5.hpp
> #usr/include/boost/uuid/detail/nil_uuid.hpp
> #usr/include/boost/uuid/detail/numeric_cast.hpp
> #usr/include/boost/uuid/detail/random_device.hpp
> #usr/include/boost/uuid/detail/random_provider.hpp
> #usr/include/boost/uuid/detail/sha1.hpp
> +#usr/include/boost/uuid/detail/simd_vector.hpp
> #usr/include/boost/uuid/detail/static_assert.hpp
> +#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
> #usr/include/boost/uuid/detail/to_chars.hpp
> +#usr/include/boost/uuid/detail/to_chars_generic.hpp
> +#usr/include/boost/uuid/detail/to_chars_x86.hpp
> +#usr/include/boost/uuid/detail/uuid_from_string.hpp
> #usr/include/boost/uuid/detail/uuid_generic.ipp
> #usr/include/boost/uuid/detail/uuid_uint128.ipp
> #usr/include/boost/uuid/detail/uuid_x86.ipp
> #usr/include/boost/uuid/entropy_error.hpp
> #usr/include/boost/uuid/generators.hpp
> +#usr/include/boost/uuid/invalid_uuid.hpp
> #usr/include/boost/uuid/name_generator.hpp
> #usr/include/boost/uuid/name_generator_md5.hpp
> #usr/include/boost/uuid/name_generator_sha1.hpp
> @@ -17304,250 +17728,407 @@
> #usr/include/boost/yap/print.hpp
> #usr/include/boost/yap/user_macros.hpp
> #usr/include/boost/yap/yap.hpp
> -#usr/lib/cmake/Boost-1.90.0
> -#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
> -#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
> -#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0
> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0
> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0
> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
> -#usr/lib/cmake/boost_container-1.90.0
> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
> -#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
> -#usr/lib/cmake/boost_context-1.90.0
> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
> -#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
> -#usr/lib/cmake/boost_contract-1.90.0
> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
> -#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0
> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
> -#usr/lib/cmake/boost_exception-1.90.0
> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0
> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
> -#usr/lib/cmake/boost_graph-1.90.0
> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
> -#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
> -#usr/lib/cmake/boost_headers-1.90.0
> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0
> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
> -#usr/lib/cmake/boost_json-1.90.0
> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
> -#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
> -#usr/lib/cmake/boost_locale-1.90.0
> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
> -#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
> -#usr/lib/cmake/boost_log-1.90.0
> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
> -#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0
> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
> -#usr/lib/cmake/boost_math-1.90.0
> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0
> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0
> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0
> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0
> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0
> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
> -#usr/lib/cmake/boost_numpy-1.90.0
> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
> -#usr/lib/cmake/boost_process-1.90.0
> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
> -#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
> -#usr/lib/cmake/boost_python-1.90.0
> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
> -#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
> -#usr/lib/cmake/boost_random-1.90.0
> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
> -#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
> -#usr/lib/cmake/boost_regex-1.90.0
> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
> -#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0
> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
> -#usr/lib/cmake/boost_thread-1.90.0
> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
> -#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
> -#usr/lib/cmake/boost_timer-1.90.0
> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
> -#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0
> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
> -#usr/lib/cmake/boost_url-1.90.0
> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
> -#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
> -#usr/lib/cmake/boost_wave-1.90.0
> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
> -#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0
> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
> -#usr/lib/libboost_atomic.so
> -usr/lib/libboost_atomic.so.1.90.0
> -#usr/lib/libboost_charconv.so
> -usr/lib/libboost_charconv.so.1.90.0
> -#usr/lib/libboost_chrono.so
> -usr/lib/libboost_chrono.so.1.90.0
> -#usr/lib/libboost_container.so
> -usr/lib/libboost_container.so.1.90.0
> -#usr/lib/libboost_context.so
> -usr/lib/libboost_context.so.1.90.0
> -#usr/lib/libboost_contract.so
> -usr/lib/libboost_contract.so.1.90.0
> -#usr/lib/libboost_date_time.so
> -usr/lib/libboost_date_time.so.1.90.0
> -#usr/lib/libboost_exception.a
> -#usr/lib/libboost_filesystem.so
> -usr/lib/libboost_filesystem.so.1.90.0
> -#usr/lib/libboost_graph.so
> -usr/lib/libboost_graph.so.1.90.0
> -#usr/lib/libboost_iostreams.so
> -usr/lib/libboost_iostreams.so.1.90.0
> -#usr/lib/libboost_json.so
> -usr/lib/libboost_json.so.1.90.0
> -#usr/lib/libboost_locale.so
> -usr/lib/libboost_locale.so.1.90.0
> -#usr/lib/libboost_log.so
> -usr/lib/libboost_log.so.1.90.0
> -#usr/lib/libboost_log_setup.so
> -usr/lib/libboost_log_setup.so.1.90.0
> -#usr/lib/libboost_math_c99.so
> -usr/lib/libboost_math_c99.so.1.90.0
> -#usr/lib/libboost_math_c99f.so
> -usr/lib/libboost_math_c99f.so.1.90.0
> -#usr/lib/libboost_math_c99l.so
> -usr/lib/libboost_math_c99l.so.1.90.0
> -#usr/lib/libboost_math_tr1.so
> -usr/lib/libboost_math_tr1.so.1.90.0
> -#usr/lib/libboost_math_tr1f.so
> -usr/lib/libboost_math_tr1f.so.1.90.0
> -#usr/lib/libboost_math_tr1l.so
> -usr/lib/libboost_math_tr1l.so.1.90.0
> -#usr/lib/libboost_nowide.so
> -usr/lib/libboost_nowide.so.1.90.0
> -#usr/lib/libboost_prg_exec_monitor.so
> -usr/lib/libboost_prg_exec_monitor.so.1.90.0
> -#usr/lib/libboost_process.so
> -usr/lib/libboost_process.so.1.90.0
> -#usr/lib/libboost_python310.so
> -usr/lib/libboost_python310.so.1.90.0
> -#usr/lib/libboost_random.so
> -usr/lib/libboost_random.so.1.90.0
> -#usr/lib/libboost_regex.so
> -usr/lib/libboost_regex.so.1.90.0
> -#usr/lib/libboost_serialization.so
> -usr/lib/libboost_serialization.so.1.90.0
> -#usr/lib/libboost_stacktrace_addr2line.so
> -usr/lib/libboost_stacktrace_addr2line.so.1.90.0
> -#usr/lib/libboost_stacktrace_basic.so
> -usr/lib/libboost_stacktrace_basic.so.1.90.0
> -#usr/lib/libboost_stacktrace_noop.so
> -usr/lib/libboost_stacktrace_noop.so.1.90.0
> -#usr/lib/libboost_test_exec_monitor.a
> -#usr/lib/libboost_thread.so
> -usr/lib/libboost_thread.so.1.90.0
> -#usr/lib/libboost_timer.so
> -usr/lib/libboost_timer.so.1.90.0
> -#usr/lib/libboost_type_erasure.so
> -usr/lib/libboost_type_erasure.so.1.90.0
> -#usr/lib/libboost_unit_test_framework.so
> -usr/lib/libboost_unit_test_framework.so.1.90.0
> -#usr/lib/libboost_url.so
> -usr/lib/libboost_url.so.1.90.0
> -#usr/lib/libboost_wave.so
> -usr/lib/libboost_wave.so.1.90.0
> -#usr/lib/libboost_wserialization.so
> -usr/lib/libboost_wserialization.so.1.90.0
> +#usr/lib/cmake/Boost-1.92.0
> +#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
> +#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
> +#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0
> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0
> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0
> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0
> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_container-1.92.0
> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_context-1.92.0
> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_contract-1.92.0
> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0
> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_exception-1.92.0
> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0
> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_graph-1.92.0
> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_headers-1.92.0
> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0
> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_json-1.92.0
> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_locale-1.92.0
> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_log-1.92.0
> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0
> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_math-1.92.0
> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0
> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0
> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0
> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0
> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0
> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_numpy-1.92.0
> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_process-1.92.0
> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_python-1.92.0
> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-r64-shared-py3.10.cmake
> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-r64-shared-py3.10.cmake
> +#usr/lib/cmake/boost_random-1.92.0
> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_regex-1.92.0
> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0
> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0
> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_system-1.92.0
> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_thread-1.92.0
> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_timer-1.92.0
> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0
> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_url-1.92.0
> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_wave-1.92.0
> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-r64-shared.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0
> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-r64-shared.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-r64-shared.cmake
> +#usr/lib/libboost_atomic-mt-r64.so
> +usr/lib/libboost_atomic-mt-r64.so.1.92.0
> +#usr/lib/libboost_charconv-mt-r64.so
> +usr/lib/libboost_charconv-mt-r64.so.1.92.0
> +#usr/lib/libboost_charconv-r64.so
> +usr/lib/libboost_charconv-r64.so.1.92.0
> +#usr/lib/libboost_chrono-mt-r64.so
> +usr/lib/libboost_chrono-mt-r64.so.1.92.0
> +#usr/lib/libboost_chrono-r64.so
> +usr/lib/libboost_chrono-r64.so.1.92.0
> +#usr/lib/libboost_cobalt-mt-r64.so
> +usr/lib/libboost_cobalt-mt-r64.so.1.92.0
> +#usr/lib/libboost_cobalt-r64.so
> +usr/lib/libboost_cobalt-r64.so.1.92.0
> +#usr/lib/libboost_cobalt_io-mt-r64.so
> +usr/lib/libboost_cobalt_io-mt-r64.so.1.92.0
> +#usr/lib/libboost_cobalt_io-r64.so
> +usr/lib/libboost_cobalt_io-r64.so.1.92.0
> +#usr/lib/libboost_cobalt_io_ssl-mt-r64.so
> +usr/lib/libboost_cobalt_io_ssl-mt-r64.so.1.92.0
> +#usr/lib/libboost_cobalt_io_ssl-r64.so
> +usr/lib/libboost_cobalt_io_ssl-r64.so.1.92.0
> +#usr/lib/libboost_container-mt-r64.so
> +usr/lib/libboost_container-mt-r64.so.1.92.0
> +#usr/lib/libboost_container-r64.so
> +usr/lib/libboost_container-r64.so.1.92.0
> +#usr/lib/libboost_context-mt-r64.so
> +usr/lib/libboost_context-mt-r64.so.1.92.0
> +#usr/lib/libboost_contract-mt-r64.so
> +usr/lib/libboost_contract-mt-r64.so.1.92.0
> +#usr/lib/libboost_contract-r64.so
> +usr/lib/libboost_contract-r64.so.1.92.0
> +#usr/lib/libboost_date_time-mt-r64.so
> +usr/lib/libboost_date_time-mt-r64.so.1.92.0
> +#usr/lib/libboost_date_time-r64.so
> +usr/lib/libboost_date_time-r64.so.1.92.0
> +#usr/lib/libboost_exception-mt-r64.a
> +#usr/lib/libboost_exception-r64.a
> +#usr/lib/libboost_filesystem-mt-r64.so
> +usr/lib/libboost_filesystem-mt-r64.so.1.92.0
> +#usr/lib/libboost_filesystem-r64.so
> +usr/lib/libboost_filesystem-r64.so.1.92.0
> +#usr/lib/libboost_graph-mt-r64.so
> +usr/lib/libboost_graph-mt-r64.so.1.92.0
> +#usr/lib/libboost_graph-r64.so
> +usr/lib/libboost_graph-r64.so.1.92.0
> +#usr/lib/libboost_iostreams-mt-r64.so
> +usr/lib/libboost_iostreams-mt-r64.so.1.92.0
> +#usr/lib/libboost_iostreams-r64.so
> +usr/lib/libboost_iostreams-r64.so.1.92.0
> +#usr/lib/libboost_json-mt-r64.so
> +usr/lib/libboost_json-mt-r64.so.1.92.0
> +#usr/lib/libboost_json-r64.so
> +usr/lib/libboost_json-r64.so.1.92.0
> +#usr/lib/libboost_locale-mt-r64.so
> +usr/lib/libboost_locale-mt-r64.so.1.92.0
> +#usr/lib/libboost_log-mt-r64.so
> +usr/lib/libboost_log-mt-r64.so.1.92.0
> +#usr/lib/libboost_log-r64.so
> +usr/lib/libboost_log-r64.so.1.92.0
> +#usr/lib/libboost_log_setup-mt-r64.so
> +usr/lib/libboost_log_setup-mt-r64.so.1.92.0
> +#usr/lib/libboost_log_setup-r64.so
> +usr/lib/libboost_log_setup-r64.so.1.92.0
> +#usr/lib/libboost_math_c99-mt-r64.so
> +usr/lib/libboost_math_c99-mt-r64.so.1.92.0
> +#usr/lib/libboost_math_c99-r64.so
> +usr/lib/libboost_math_c99-r64.so.1.92.0
> +#usr/lib/libboost_math_c99f-mt-r64.so
> +usr/lib/libboost_math_c99f-mt-r64.so.1.92.0
> +#usr/lib/libboost_math_c99f-r64.so
> +usr/lib/libboost_math_c99f-r64.so.1.92.0
> +#usr/lib/libboost_math_c99l-mt-r64.so
> +usr/lib/libboost_math_c99l-mt-r64.so.1.92.0
> +#usr/lib/libboost_math_c99l-r64.so
> +usr/lib/libboost_math_c99l-r64.so.1.92.0
> +#usr/lib/libboost_math_tr1-mt-r64.so
> +usr/lib/libboost_math_tr1-mt-r64.so.1.92.0
> +#usr/lib/libboost_math_tr1-r64.so
> +usr/lib/libboost_math_tr1-r64.so.1.92.0
> +#usr/lib/libboost_math_tr1f-mt-r64.so
> +usr/lib/libboost_math_tr1f-mt-r64.so.1.92.0
> +#usr/lib/libboost_math_tr1f-r64.so
> +usr/lib/libboost_math_tr1f-r64.so.1.92.0
> +#usr/lib/libboost_math_tr1l-mt-r64.so
> +usr/lib/libboost_math_tr1l-mt-r64.so.1.92.0
> +#usr/lib/libboost_math_tr1l-r64.so
> +usr/lib/libboost_math_tr1l-r64.so.1.92.0
> +#usr/lib/libboost_nowide-mt-r64.so
> +usr/lib/libboost_nowide-mt-r64.so.1.92.0
> +#usr/lib/libboost_nowide-r64.so
> +usr/lib/libboost_nowide-r64.so.1.92.0
> +#usr/lib/libboost_prg_exec_monitor-mt-r64.so
> +usr/lib/libboost_prg_exec_monitor-mt-r64.so.1.92.0
> +#usr/lib/libboost_prg_exec_monitor-r64.so
> +usr/lib/libboost_prg_exec_monitor-r64.so.1.92.0
> +#usr/lib/libboost_process-mt-r64.so
> +usr/lib/libboost_process-mt-r64.so.1.92.0
> +#usr/lib/libboost_process-r64.so
> +usr/lib/libboost_process-r64.so.1.92.0
> +#usr/lib/libboost_python310-mt-r64.so
> +usr/lib/libboost_python310-mt-r64.so.1.92.0
> +#usr/lib/libboost_python310-r64.so
> +usr/lib/libboost_python310-r64.so.1.92.0
> +#usr/lib/libboost_random-mt-r64.so
> +usr/lib/libboost_random-mt-r64.so.1.92.0
> +#usr/lib/libboost_random-r64.so
> +usr/lib/libboost_random-r64.so.1.92.0
> +#usr/lib/libboost_regex-mt-r64.so
> +usr/lib/libboost_regex-mt-r64.so.1.92.0
> +#usr/lib/libboost_regex-r64.so
> +usr/lib/libboost_regex-r64.so.1.92.0
> +#usr/lib/libboost_serialization-mt-r64.so
> +usr/lib/libboost_serialization-mt-r64.so.1.92.0
> +#usr/lib/libboost_serialization-r64.so
> +usr/lib/libboost_serialization-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_addr2line-mt-r64.so
> +usr/lib/libboost_stacktrace_addr2line-mt-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_addr2line-r64.so
> +usr/lib/libboost_stacktrace_addr2line-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_basic-mt-r64.so
> +usr/lib/libboost_stacktrace_basic-mt-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_basic-r64.so
> +usr/lib/libboost_stacktrace_basic-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_dump-mt-r64.so
> +usr/lib/libboost_stacktrace_dump-mt-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_dump-r64.so
> +usr/lib/libboost_stacktrace_dump-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_from_exception-mt-r64.so
> +usr/lib/libboost_stacktrace_from_exception-mt-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_from_exception-r64.so
> +usr/lib/libboost_stacktrace_from_exception-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_noop-mt-r64.so
> +usr/lib/libboost_stacktrace_noop-mt-r64.so.1.92.0
> +#usr/lib/libboost_stacktrace_noop-r64.so
> +usr/lib/libboost_stacktrace_noop-r64.so.1.92.0
> +#usr/lib/libboost_test_exec_monitor-mt-r64.a
> +#usr/lib/libboost_test_exec_monitor-r64.a
> +#usr/lib/libboost_thread-mt-r64.so
> +usr/lib/libboost_thread-mt-r64.so.1.92.0
> +#usr/lib/libboost_timer-mt-r64.so
> +usr/lib/libboost_timer-mt-r64.so.1.92.0
> +#usr/lib/libboost_timer-r64.so
> +usr/lib/libboost_timer-r64.so.1.92.0
> +#usr/lib/libboost_type_erasure-mt-r64.so
> +usr/lib/libboost_type_erasure-mt-r64.so.1.92.0
> +#usr/lib/libboost_type_erasure-r64.so
> +usr/lib/libboost_type_erasure-r64.so.1.92.0
> +#usr/lib/libboost_unit_test_framework-mt-r64.so
> +usr/lib/libboost_unit_test_framework-mt-r64.so.1.92.0
> +#usr/lib/libboost_unit_test_framework-r64.so
> +usr/lib/libboost_unit_test_framework-r64.so.1.92.0
> +#usr/lib/libboost_url-mt-r64.so
> +usr/lib/libboost_url-mt-r64.so.1.92.0
> +#usr/lib/libboost_url-r64.so
> +usr/lib/libboost_url-r64.so.1.92.0
> +#usr/lib/libboost_wave-mt-r64.so
> +usr/lib/libboost_wave-mt-r64.so.1.92.0
> +#usr/lib/libboost_wave-r64.so
> +usr/lib/libboost_wave-r64.so.1.92.0
> +#usr/lib/libboost_wserialization-mt-r64.so
> +usr/lib/libboost_wserialization-mt-r64.so.1.92.0
> +#usr/lib/libboost_wserialization-r64.so
> +usr/lib/libboost_wserialization-r64.so.1.92.0
> #usr/share/boost_predef
> #usr/share/boost_predef/build.jam
> #usr/share/boost_predef/tools
> diff --git a/config/rootfiles/common/x86_64/boost b/config/rootfiles/common/x86_64/boost
> index 6342c206a..07ee68269 100644
> --- a/config/rootfiles/common/x86_64/boost
> +++ b/config/rootfiles/common/x86_64/boost
> @@ -439,6 +439,7 @@
> #usr/include/boost/asio/detail/array_fwd.hpp
> #usr/include/boost/asio/detail/assert.hpp
> #usr/include/boost/asio/detail/atomic_count.hpp
> +#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
> #usr/include/boost/asio/detail/base_from_cancellation_state.hpp
> #usr/include/boost/asio/detail/base_from_completion_cond.hpp
> #usr/include/boost/asio/detail/bind_handler.hpp
> @@ -477,6 +478,7 @@
> #usr/include/boost/asio/detail/fd_set_adapter.hpp
> #usr/include/boost/asio/detail/fenced_block.hpp
> #usr/include/boost/asio/detail/functional.hpp
> +#usr/include/boost/asio/detail/futex_slim_mutex.hpp
> #usr/include/boost/asio/detail/future.hpp
> #usr/include/boost/asio/detail/global.hpp
> #usr/include/boost/asio/detail/handler_alloc_helpers.hpp
> @@ -527,6 +529,7 @@
> #usr/include/boost/asio/detail/impl/thread_context.ipp
> #usr/include/boost/asio/detail/impl/throw_error.ipp
> #usr/include/boost/asio/detail/impl/timer_queue_set.ipp
> +#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_event.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
> @@ -534,7 +537,6 @@
> #usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
> #usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
> -#usr/include/boost/asio/detail/impl/win_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
> #usr/include/boost/asio/detail/impl/win_static_mutex.ipp
> #usr/include/boost/asio/detail/impl/win_thread.ipp
> @@ -641,6 +643,7 @@
> #usr/include/boost/asio/detail/signal_init.hpp
> #usr/include/boost/asio/detail/signal_op.hpp
> #usr/include/boost/asio/detail/signal_set_service.hpp
> +#usr/include/boost/asio/detail/slim_mutex.hpp
> #usr/include/boost/asio/detail/socket_holder.hpp
> #usr/include/boost/asio/detail/socket_ops.hpp
> #usr/include/boost/asio/detail/socket_option.hpp
> @@ -674,6 +677,7 @@
> #usr/include/boost/asio/detail/utility.hpp
> #usr/include/boost/asio/detail/wait_handler.hpp
> #usr/include/boost/asio/detail/wait_op.hpp
> +#usr/include/boost/asio/detail/win_critsec_mutex.hpp
> #usr/include/boost/asio/detail/win_event.hpp
> #usr/include/boost/asio/detail/win_fd_set_adapter.hpp
> #usr/include/boost/asio/detail/win_global.hpp
> @@ -731,8 +735,6 @@
> #usr/include/boost/asio/execution/context.hpp
> #usr/include/boost/asio/execution/context_as.hpp
> #usr/include/boost/asio/execution/executor.hpp
> -#usr/include/boost/asio/execution/impl
> -#usr/include/boost/asio/execution/impl/bad_executor.ipp
> #usr/include/boost/asio/execution/inline_exception_handling.hpp
> #usr/include/boost/asio/execution/invocable_archetype.hpp
> #usr/include/boost/asio/execution/mapping.hpp
> @@ -782,6 +784,7 @@
> #usr/include/boost/asio/experimental/use_coro.hpp
> #usr/include/boost/asio/experimental/use_promise.hpp
> #usr/include/boost/asio/file_base.hpp
> +#usr/include/boost/asio/fwd.hpp
> #usr/include/boost/asio/generic
> #usr/include/boost/asio/generic/basic_endpoint.hpp
> #usr/include/boost/asio/generic/datagram_protocol.hpp
> @@ -820,10 +823,8 @@
> #usr/include/boost/asio/impl/execution_context.hpp
> #usr/include/boost/asio/impl/execution_context.ipp
> #usr/include/boost/asio/impl/executor.hpp
> -#usr/include/boost/asio/impl/executor.ipp
> #usr/include/boost/asio/impl/io_context.hpp
> #usr/include/boost/asio/impl/io_context.ipp
> -#usr/include/boost/asio/impl/multiple_exceptions.ipp
> #usr/include/boost/asio/impl/prepend.hpp
> #usr/include/boost/asio/impl/read.hpp
> #usr/include/boost/asio/impl/read_at.hpp
> @@ -1511,6 +1512,7 @@
> #usr/include/boost/bimap/detail/map_view_base.hpp
> #usr/include/boost/bimap/detail/map_view_iterator.hpp
> #usr/include/boost/bimap/detail/modifier_adaptor.hpp
> +#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
> #usr/include/boost/bimap/detail/non_unique_views_helper.hpp
> #usr/include/boost/bimap/detail/set_view_base.hpp
> #usr/include/boost/bimap/detail/set_view_iterator.hpp
> @@ -2390,11 +2392,13 @@
> #usr/include/boost/container/detail/addressof.hpp
> #usr/include/boost/container/detail/advanced_insert_int.hpp
> #usr/include/boost/container/detail/algorithm.hpp
> +#usr/include/boost/container/detail/aligned_allocation.hpp
> #usr/include/boost/container/detail/alloc_helpers.hpp
> #usr/include/boost/container/detail/alloc_lib.h
> #usr/include/boost/container/detail/allocation_type.hpp
> #usr/include/boost/container/detail/allocator_version_traits.hpp
> #usr/include/boost/container/detail/auto_link.hpp
> +#usr/include/boost/container/detail/bit_utilities.hpp
> #usr/include/boost/container/detail/block_list.hpp
> #usr/include/boost/container/detail/block_slist.hpp
> #usr/include/boost/container/detail/compare_functors.hpp
> @@ -2404,12 +2408,14 @@
> #usr/include/boost/container/detail/container_or_allocator_rebind.hpp
> #usr/include/boost/container/detail/container_rebind.hpp
> #usr/include/boost/container/detail/copy_move_algo.hpp
> +#usr/include/boost/container/detail/deque_impl.hpp
> #usr/include/boost/container/detail/destroyers.hpp
> #usr/include/boost/container/detail/dispatch_uses_allocator.hpp
> #usr/include/boost/container/detail/dlmalloc.hpp
> #usr/include/boost/container/detail/flat_tree.hpp
> #usr/include/boost/container/detail/function_detector.hpp
> #usr/include/boost/container/detail/guards_dended.hpp
> +#usr/include/boost/container/detail/is_constructible.hpp
> #usr/include/boost/container/detail/is_container.hpp
> #usr/include/boost/container/detail/is_contiguous_container.hpp
> #usr/include/boost/container/detail/is_pair.hpp
> @@ -2434,6 +2440,7 @@
> #usr/include/boost/container/detail/pool_common.hpp
> #usr/include/boost/container/detail/pool_common_alloc.hpp
> #usr/include/boost/container/detail/pool_resource.hpp
> +#usr/include/boost/container/detail/range_utils.hpp
> #usr/include/boost/container/detail/singleton.hpp
> #usr/include/boost/container/detail/std_fwd.hpp
> #usr/include/boost/container/detail/thread_mutex.hpp
> @@ -2446,8 +2453,60 @@
> #usr/include/boost/container/detail/version_type.hpp
> #usr/include/boost/container/detail/workaround.hpp
> #usr/include/boost/container/devector.hpp
> +#usr/include/boost/container/experimental
> +#usr/include/boost/container/experimental/nest.hpp
> +#usr/include/boost/container/experimental/pmr
> +#usr/include/boost/container/experimental/pmr/nest.hpp
> +#usr/include/boost/container/experimental/segmented_all_of.hpp
> +#usr/include/boost/container/experimental/segmented_any_of.hpp
> +#usr/include/boost/container/experimental/segmented_copy.hpp
> +#usr/include/boost/container/experimental/segmented_copy_if.hpp
> +#usr/include/boost/container/experimental/segmented_copy_n.hpp
> +#usr/include/boost/container/experimental/segmented_count.hpp
> +#usr/include/boost/container/experimental/segmented_count_if.hpp
> +#usr/include/boost/container/experimental/segmented_equal.hpp
> +#usr/include/boost/container/experimental/segmented_fill.hpp
> +#usr/include/boost/container/experimental/segmented_fill_n.hpp
> +#usr/include/boost/container/experimental/segmented_find.hpp
> +#usr/include/boost/container/experimental/segmented_find_if.hpp
> +#usr/include/boost/container/experimental/segmented_find_if_not.hpp
> +#usr/include/boost/container/experimental/segmented_find_last.hpp
> +#usr/include/boost/container/experimental/segmented_find_last_if.hpp
> +#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
> +#usr/include/boost/container/experimental/segmented_for_each.hpp
> +#usr/include/boost/container/experimental/segmented_generate.hpp
> +#usr/include/boost/container/experimental/segmented_generate_n.hpp
> +#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
> +#usr/include/boost/container/experimental/segmented_is_sorted.hpp
> +#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
> +#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
> +#usr/include/boost/container/experimental/segmented_merge.hpp
> +#usr/include/boost/container/experimental/segmented_mismatch.hpp
> +#usr/include/boost/container/experimental/segmented_none_of.hpp
> +#usr/include/boost/container/experimental/segmented_partition.hpp
> +#usr/include/boost/container/experimental/segmented_partition_copy.hpp
> +#usr/include/boost/container/experimental/segmented_partition_point.hpp
> +#usr/include/boost/container/experimental/segmented_remove.hpp
> +#usr/include/boost/container/experimental/segmented_remove_copy.hpp
> +#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
> +#usr/include/boost/container/experimental/segmented_remove_if.hpp
> +#usr/include/boost/container/experimental/segmented_replace.hpp
> +#usr/include/boost/container/experimental/segmented_replace_if.hpp
> +#usr/include/boost/container/experimental/segmented_reverse.hpp
> +#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
> +#usr/include/boost/container/experimental/segmented_search.hpp
> +#usr/include/boost/container/experimental/segmented_search_n.hpp
> +#usr/include/boost/container/experimental/segmented_set_difference.hpp
> +#usr/include/boost/container/experimental/segmented_set_intersection.hpp
> +#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
> +#usr/include/boost/container/experimental/segmented_set_union.hpp
> +#usr/include/boost/container/experimental/segmented_stable_partition.hpp
> +#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
> +#usr/include/boost/container/experimental/segmented_transform.hpp
> +#usr/include/boost/container/experimental/wrapped_iterator.hpp
> #usr/include/boost/container/flat_map.hpp
> #usr/include/boost/container/flat_set.hpp
> +#usr/include/boost/container/hub.hpp
> #usr/include/boost/container/list.hpp
> #usr/include/boost/container/map.hpp
> #usr/include/boost/container/new_allocator.hpp
> @@ -2460,6 +2519,7 @@
> #usr/include/boost/container/pmr/flat_map.hpp
> #usr/include/boost/container/pmr/flat_set.hpp
> #usr/include/boost/container/pmr/global_resource.hpp
> +#usr/include/boost/container/pmr/hub.hpp
> #usr/include/boost/container/pmr/list.hpp
> #usr/include/boost/container/pmr/map.hpp
> #usr/include/boost/container/pmr/memory_resource.hpp
> @@ -2467,6 +2527,7 @@
> #usr/include/boost/container/pmr/polymorphic_allocator.hpp
> #usr/include/boost/container/pmr/pool_options.hpp
> #usr/include/boost/container/pmr/resource_adaptor.hpp
> +#usr/include/boost/container/pmr/segtor.hpp
> #usr/include/boost/container/pmr/set.hpp
> #usr/include/boost/container/pmr/slist.hpp
> #usr/include/boost/container/pmr/small_vector.hpp
> @@ -2477,6 +2538,7 @@
> #usr/include/boost/container/pmr/vector.hpp
> #usr/include/boost/container/scoped_allocator.hpp
> #usr/include/boost/container/scoped_allocator_fwd.hpp
> +#usr/include/boost/container/segtor.hpp
> #usr/include/boost/container/set.hpp
> #usr/include/boost/container/slist.hpp
> #usr/include/boost/container/small_vector.hpp
> @@ -2485,6 +2547,7 @@
> #usr/include/boost/container/string.hpp
> #usr/include/boost/container/throw_exception.hpp
> #usr/include/boost/container/uses_allocator.hpp
> +#usr/include/boost/container/uses_allocator_construction.hpp
> #usr/include/boost/container/uses_allocator_fwd.hpp
> #usr/include/boost/container/vector.hpp
> #usr/include/boost/container_hash
> @@ -2605,6 +2668,9 @@
> #usr/include/boost/contract/override.hpp
> #usr/include/boost/contract/public_function.hpp
> #usr/include/boost/contract_macro.hpp
> +#usr/include/boost/conversion
> +#usr/include/boost/conversion/detail
> +#usr/include/boost/conversion/detail/config.hpp
> #usr/include/boost/convert
> #usr/include/boost/convert.hpp
> #usr/include/boost/convert/base.hpp
> @@ -2865,6 +2931,211 @@
> #usr/include/boost/date_time/tz_db_base.hpp
> #usr/include/boost/date_time/wrapping_int.hpp
> #usr/include/boost/date_time/year_month_day.hpp
> +#usr/include/boost/decimal
> +#usr/include/boost/decimal.hpp
> +#usr/include/boost/decimal/bid_conversion.hpp
> +#usr/include/boost/decimal/cfenv.hpp
> +#usr/include/boost/decimal/cfloat.hpp
> +#usr/include/boost/decimal/charconv.hpp
> +#usr/include/boost/decimal/cmath.hpp
> +#usr/include/boost/decimal/cstdio.hpp
> +#usr/include/boost/decimal/cstdlib.hpp
> +#usr/include/boost/decimal/decimal128_t.hpp
> +#usr/include/boost/decimal/decimal32_t.hpp
> +#usr/include/boost/decimal/decimal64_t.hpp
> +#usr/include/boost/decimal/decimal_fast128_t.hpp
> +#usr/include/boost/decimal/decimal_fast32_t.hpp
> +#usr/include/boost/decimal/decimal_fast64_t.hpp
> +#usr/include/boost/decimal/detail
> +#usr/include/boost/decimal/detail/add_impl.hpp
> +#usr/include/boost/decimal/detail/apply_sign.hpp
> +#usr/include/boost/decimal/detail/attributes.hpp
> +#usr/include/boost/decimal/detail/bit_cast.hpp
> +#usr/include/boost/decimal/detail/bit_layouts.hpp
> +#usr/include/boost/decimal/detail/buffer_sizing.hpp
> +#usr/include/boost/decimal/detail/chars_format.hpp
> +#usr/include/boost/decimal/detail/check_non_finite.hpp
> +#usr/include/boost/decimal/detail/cmath
> +#usr/include/boost/decimal/detail/cmath/abs.hpp
> +#usr/include/boost/decimal/detail/cmath/acos.hpp
> +#usr/include/boost/decimal/detail/cmath/acosh.hpp
> +#usr/include/boost/decimal/detail/cmath/asin.hpp
> +#usr/include/boost/decimal/detail/cmath/asinh.hpp
> +#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
> +#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
> +#usr/include/boost/decimal/detail/cmath/atan.hpp
> +#usr/include/boost/decimal/detail/cmath/atan2.hpp
> +#usr/include/boost/decimal/detail/cmath/atanh.hpp
> +#usr/include/boost/decimal/detail/cmath/beta.hpp
> +#usr/include/boost/decimal/detail/cmath/cbrt.hpp
> +#usr/include/boost/decimal/detail/cmath/ceil.hpp
> +#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
> +#usr/include/boost/decimal/detail/cmath/cos.hpp
> +#usr/include/boost/decimal/detail/cmath/cosh.hpp
> +#usr/include/boost/decimal/detail/cmath/decompose.hpp
> +#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
> +#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
> +#usr/include/boost/decimal/detail/cmath/erf.hpp
> +#usr/include/boost/decimal/detail/cmath/exp.hpp
> +#usr/include/boost/decimal/detail/cmath/exp2.hpp
> +#usr/include/boost/decimal/detail/cmath/expm1.hpp
> +#usr/include/boost/decimal/detail/cmath/fabs.hpp
> +#usr/include/boost/decimal/detail/cmath/fdim.hpp
> +#usr/include/boost/decimal/detail/cmath/floor.hpp
> +#usr/include/boost/decimal/detail/cmath/fma.hpp
> +#usr/include/boost/decimal/detail/cmath/fmax.hpp
> +#usr/include/boost/decimal/detail/cmath/fmin.hpp
> +#usr/include/boost/decimal/detail/cmath/fmod.hpp
> +#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
> +#usr/include/boost/decimal/detail/cmath/frexp.hpp
> +#usr/include/boost/decimal/detail/cmath/frexp10.hpp
> +#usr/include/boost/decimal/detail/cmath/hermite.hpp
> +#usr/include/boost/decimal/detail/cmath/hypot.hpp
> +#usr/include/boost/decimal/detail/cmath/ilogb.hpp
> +#usr/include/boost/decimal/detail/cmath/impl
> +#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
> +#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
> +#usr/include/boost/decimal/detail/cmath/isfinite.hpp
> +#usr/include/boost/decimal/detail/cmath/isgreater.hpp
> +#usr/include/boost/decimal/detail/cmath/isless.hpp
> +#usr/include/boost/decimal/detail/cmath/isunordered.hpp
> +#usr/include/boost/decimal/detail/cmath/laguerre.hpp
> +#usr/include/boost/decimal/detail/cmath/ldexp.hpp
> +#usr/include/boost/decimal/detail/cmath/legendre.hpp
> +#usr/include/boost/decimal/detail/cmath/lgamma.hpp
> +#usr/include/boost/decimal/detail/cmath/log.hpp
> +#usr/include/boost/decimal/detail/cmath/log10.hpp
> +#usr/include/boost/decimal/detail/cmath/log1p.hpp
> +#usr/include/boost/decimal/detail/cmath/log2.hpp
> +#usr/include/boost/decimal/detail/cmath/logb.hpp
> +#usr/include/boost/decimal/detail/cmath/modf.hpp
> +#usr/include/boost/decimal/detail/cmath/nan.hpp
> +#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
> +#usr/include/boost/decimal/detail/cmath/next.hpp
> +#usr/include/boost/decimal/detail/cmath/normalize.hpp
> +#usr/include/boost/decimal/detail/cmath/pow.hpp
> +#usr/include/boost/decimal/detail/cmath/remainder.hpp
> +#usr/include/boost/decimal/detail/cmath/remquo.hpp
> +#usr/include/boost/decimal/detail/cmath/rescale.hpp
> +#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
> +#usr/include/boost/decimal/detail/cmath/rint.hpp
> +#usr/include/boost/decimal/detail/cmath/round.hpp
> +#usr/include/boost/decimal/detail/cmath/sin.hpp
> +#usr/include/boost/decimal/detail/cmath/sinh.hpp
> +#usr/include/boost/decimal/detail/cmath/sqrt.hpp
> +#usr/include/boost/decimal/detail/cmath/tan.hpp
> +#usr/include/boost/decimal/detail/cmath/tanh.hpp
> +#usr/include/boost/decimal/detail/cmath/tgamma.hpp
> +#usr/include/boost/decimal/detail/cmath/trunc.hpp
> +#usr/include/boost/decimal/detail/comparison.hpp
> +#usr/include/boost/decimal/detail/components.hpp
> +#usr/include/boost/decimal/detail/concepts.hpp
> +#usr/include/boost/decimal/detail/config.hpp
> +#usr/include/boost/decimal/detail/construction_sign.hpp
> +#usr/include/boost/decimal/detail/countl.hpp
> +#usr/include/boost/decimal/detail/div_impl.hpp
> +#usr/include/boost/decimal/detail/fast_float
> +#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
> +#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
> +#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
> +#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
> +#usr/include/boost/decimal/detail/fenv_rounding.hpp
> +#usr/include/boost/decimal/detail/formatting_limits.hpp
> +#usr/include/boost/decimal/detail/from_chars_impl.hpp
> +#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
> +#usr/include/boost/decimal/detail/from_chars_result.hpp
> +#usr/include/boost/decimal/detail/fwd_log.hpp
> +#usr/include/boost/decimal/detail/i256.hpp
> +#usr/include/boost/decimal/detail/int128
> +#usr/include/boost/decimal/detail/int128.hpp
> +#usr/include/boost/decimal/detail/int128/bit.hpp
> +#usr/include/boost/decimal/detail/int128/climits.hpp
> +#usr/include/boost/decimal/detail/int128/cstdlib.hpp
> +#usr/include/boost/decimal/detail/int128/detail
> +#usr/include/boost/decimal/detail/int128/detail/clz.hpp
> +#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
> +#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
> +#usr/include/boost/decimal/detail/int128/detail/config.hpp
> +#usr/include/boost/decimal/detail/int128/detail/constants.hpp
> +#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
> +#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
> +#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
> +#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
> +#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
> +#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
> +#usr/include/boost/decimal/detail/int128/detail/traits.hpp
> +#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
> +#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
> +#usr/include/boost/decimal/detail/int128/fmt_format.hpp
> +#usr/include/boost/decimal/detail/int128/format.hpp
> +#usr/include/boost/decimal/detail/int128/int128.hpp
> +#usr/include/boost/decimal/detail/int128/iostream.hpp
> +#usr/include/boost/decimal/detail/int128/limits.hpp
> +#usr/include/boost/decimal/detail/int128/literals.hpp
> +#usr/include/boost/decimal/detail/int128/numeric.hpp
> +#usr/include/boost/decimal/detail/int128/random.hpp
> +#usr/include/boost/decimal/detail/int128/string.hpp
> +#usr/include/boost/decimal/detail/integer_search_trees.hpp
> +#usr/include/boost/decimal/detail/io.hpp
> +#usr/include/boost/decimal/detail/is_power_of_10.hpp
> +#usr/include/boost/decimal/detail/locale_conversion.hpp
> +#usr/include/boost/decimal/detail/memcpy.hpp
> +#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
> +#usr/include/boost/decimal/detail/mod_impl.hpp
> +#usr/include/boost/decimal/detail/mul_impl.hpp
> +#usr/include/boost/decimal/detail/normalize.hpp
> +#usr/include/boost/decimal/detail/parser.hpp
> +#usr/include/boost/decimal/detail/power_tables.hpp
> +#usr/include/boost/decimal/detail/promote_significand.hpp
> +#usr/include/boost/decimal/detail/promotion.hpp
> +#usr/include/boost/decimal/detail/quantize_impl.hpp
> +#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
> +#usr/include/boost/decimal/detail/ryu
> +#usr/include/boost/decimal/detail/ryu/generic_128.hpp
> +#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
> +#usr/include/boost/decimal/detail/shrink_significand.hpp
> +#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
> +#usr/include/boost/decimal/detail/to_chars_result.hpp
> +#usr/include/boost/decimal/detail/to_decimal.hpp
> +#usr/include/boost/decimal/detail/to_float.hpp
> +#usr/include/boost/decimal/detail/to_integral.hpp
> +#usr/include/boost/decimal/detail/type_traits.hpp
> +#usr/include/boost/decimal/detail/u256.hpp
> +#usr/include/boost/decimal/detail/utilities.hpp
> +#usr/include/boost/decimal/detail/write_payload.hpp
> +#usr/include/boost/decimal/dpd_conversion.hpp
> +#usr/include/boost/decimal/fmt_format.hpp
> +#usr/include/boost/decimal/format.hpp
> +#usr/include/boost/decimal/fwd.hpp
> +#usr/include/boost/decimal/hash.hpp
> +#usr/include/boost/decimal/iostream.hpp
> +#usr/include/boost/decimal/literals.hpp
> +#usr/include/boost/decimal/numbers.hpp
> +#usr/include/boost/decimal/string.hpp
> +#usr/include/boost/decimal/uint128_t.hpp
> #usr/include/boost/describe
> #usr/include/boost/describe.hpp
> #usr/include/boost/describe/bases.hpp
> @@ -2909,7 +3180,6 @@
> #usr/include/boost/detail/is_sorted.hpp
> #usr/include/boost/detail/is_xxx.hpp
> #usr/include/boost/detail/iterator.hpp
> -#usr/include/boost/detail/lcast_precision.hpp
> #usr/include/boost/detail/lightweight_main.hpp
> #usr/include/boost/detail/lightweight_mutex.hpp
> #usr/include/boost/detail/lightweight_test.hpp
> @@ -2993,6 +3263,7 @@
> #usr/include/boost/dll/config.hpp
> #usr/include/boost/dll/detail
> #usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
> +#usr/include/boost/dll/detail/config.hpp
> #usr/include/boost/dll/detail/ctor_dtor.hpp
> #usr/include/boost/dll/detail/demangling
> #usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
> @@ -3057,6 +3328,7 @@
> #usr/include/boost/exception/current_exception_cast.hpp
> #usr/include/boost/exception/detail
> #usr/include/boost/exception/detail/clone_current_exception.hpp
> +#usr/include/boost/exception/detail/encoder.hpp
> #usr/include/boost/exception/detail/error_info_impl.hpp
> #usr/include/boost/exception/detail/exception_ptr.hpp
> #usr/include/boost/exception/detail/is_output_streamable.hpp
> @@ -3080,6 +3352,9 @@
> #usr/include/boost/exception/get_error_info.hpp
> #usr/include/boost/exception/info.hpp
> #usr/include/boost/exception/info_tuple.hpp
> +#usr/include/boost/exception/serialization
> +#usr/include/boost/exception/serialization/boost_json_encoder.hpp
> +#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
> #usr/include/boost/exception/to_string.hpp
> #usr/include/boost/exception/to_string_stub.hpp
> #usr/include/boost/exception_ptr.hpp
> @@ -5091,8 +5366,6 @@
> #usr/include/boost/geometry/index/detail/tags.hpp
> #usr/include/boost/geometry/index/detail/translator.hpp
> #usr/include/boost/geometry/index/detail/utilities.hpp
> -#usr/include/boost/geometry/index/detail/varray.hpp
> -#usr/include/boost/geometry/index/detail/varray_detail.hpp
> #usr/include/boost/geometry/index/distance_predicates.hpp
> #usr/include/boost/geometry/index/equal_to.hpp
> #usr/include/boost/geometry/index/indexable.hpp
> @@ -6077,6 +6350,8 @@
> #usr/include/boost/graph/leda_graph.hpp
> #usr/include/boost/graph/lookup_edge.hpp
> #usr/include/boost/graph/loop_erased_random_walk.hpp
> +#usr/include/boost/graph/louvain_clustering.hpp
> +#usr/include/boost/graph/louvain_quality_functions.hpp
> #usr/include/boost/graph/make_biconnected_planar.hpp
> #usr/include/boost/graph/make_connected.hpp
> #usr/include/boost/graph/make_maximal_planar.hpp
> @@ -6679,6 +6954,7 @@
> #usr/include/boost/heap/detail
> #usr/include/boost/heap/detail/heap_comparison.hpp
> #usr/include/boost/heap/detail/heap_node.hpp
> +#usr/include/boost/heap/detail/heap_utils.hpp
> #usr/include/boost/heap/detail/ilog2.hpp
> #usr/include/boost/heap/detail/mutable_heap.hpp
> #usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
> @@ -6888,8 +7164,10 @@
> #usr/include/boost/icl/concept/set_value.hpp
> #usr/include/boost/icl/continuous_interval.hpp
> #usr/include/boost/icl/detail
> +#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
> #usr/include/boost/icl/detail/associated_value.hpp
> #usr/include/boost/icl/detail/boost_config.hpp
> +#usr/include/boost/icl/detail/co_equal_fwd.hpp
> #usr/include/boost/icl/detail/concept_check.hpp
> #usr/include/boost/icl/detail/design_config.hpp
> #usr/include/boost/icl/detail/element_comparer.hpp
> @@ -6899,12 +7177,14 @@
> #usr/include/boost/icl/detail/interval_morphism.hpp
> #usr/include/boost/icl/detail/interval_set_algo.hpp
> #usr/include/boost/icl/detail/interval_subset_comparer.hpp
> +#usr/include/boost/icl/detail/map_adaptor.hpp
> #usr/include/boost/icl/detail/map_algo.hpp
> #usr/include/boost/icl/detail/mapped_reference.hpp
> #usr/include/boost/icl/detail/notate.hpp
> #usr/include/boost/icl/detail/on_absorbtion.hpp
> #usr/include/boost/icl/detail/relation_state.hpp
> #usr/include/boost/icl/detail/requires_cxx11.hpp
> +#usr/include/boost/icl/detail/set_adaptor.hpp
> #usr/include/boost/icl/detail/set_algo.hpp
> #usr/include/boost/icl/detail/std_set.hpp
> #usr/include/boost/icl/detail/subset_comparer.hpp
> @@ -7585,6 +7865,7 @@
> #usr/include/boost/json/impl/value_ref.ipp
> #usr/include/boost/json/impl/value_stack.ipp
> #usr/include/boost/json/impl/visit.hpp
> +#usr/include/boost/json/impl/visit.ipp
> #usr/include/boost/json/is_deallocate_trivial.hpp
> #usr/include/boost/json/kind.hpp
> #usr/include/boost/json/monotonic_resource.hpp
> @@ -7660,15 +7941,20 @@
> #usr/include/boost/leaf/config/tls_cpp11.hpp
> #usr/include/boost/leaf/config/tls_freertos.hpp
> #usr/include/boost/leaf/config/tls_globals.hpp
> +#usr/include/boost/leaf/config/tls_win32.hpp
> +#usr/include/boost/leaf/config/visibility.hpp
> #usr/include/boost/leaf/context.hpp
> #usr/include/boost/leaf/detail
> #usr/include/boost/leaf/detail/all.hpp
> #usr/include/boost/leaf/detail/capture_list.hpp
> #usr/include/boost/leaf/detail/demangle.hpp
> +#usr/include/boost/leaf/detail/diagnostics_writer.hpp
> +#usr/include/boost/leaf/detail/encoder.hpp
> +#usr/include/boost/leaf/detail/exception_base.hpp
> #usr/include/boost/leaf/detail/function_traits.hpp
> #usr/include/boost/leaf/detail/mp11.hpp
> #usr/include/boost/leaf/detail/optional.hpp
> -#usr/include/boost/leaf/detail/print.hpp
> +#usr/include/boost/leaf/detail/type_name.hpp
> #usr/include/boost/leaf/diagnostics.hpp
> #usr/include/boost/leaf/error.hpp
> #usr/include/boost/leaf/exception.hpp
> @@ -7676,12 +7962,16 @@
> #usr/include/boost/leaf/on_error.hpp
> #usr/include/boost/leaf/pred.hpp
> #usr/include/boost/leaf/result.hpp
> +#usr/include/boost/leaf/serialization
> +#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
> +#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
> #usr/include/boost/leaf/to_variant.hpp
> #usr/include/boost/lexical_cast
> #usr/include/boost/lexical_cast.hpp
> #usr/include/boost/lexical_cast/bad_lexical_cast.hpp
> #usr/include/boost/lexical_cast/detail
> #usr/include/boost/lexical_cast/detail/buffer_view.hpp
> +#usr/include/boost/lexical_cast/detail/config.hpp
> #usr/include/boost/lexical_cast/detail/converter_lexical.hpp
> #usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
> #usr/include/boost/lexical_cast/detail/converter_numeric.hpp
> @@ -7689,6 +7979,7 @@
> #usr/include/boost/lexical_cast/detail/is_character.hpp
> #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
> #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
> +#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
> #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
> #usr/include/boost/lexical_cast/detail/type_traits.hpp
> #usr/include/boost/lexical_cast/detail/widest_char.hpp
> @@ -7798,17 +8089,20 @@
> #usr/include/boost/locale/util/locale_data.hpp
> #usr/include/boost/locale/util/string.hpp
> #usr/include/boost/lockfree
> +#usr/include/boost/lockfree/bounded_ticket_queue.hpp
> #usr/include/boost/lockfree/detail
> #usr/include/boost/lockfree/detail/atomic.hpp
> #usr/include/boost/lockfree/detail/copy_payload.hpp
> #usr/include/boost/lockfree/detail/freelist.hpp
> #usr/include/boost/lockfree/detail/parameter.hpp
> +#usr/include/boost/lockfree/detail/power_of_two.hpp
> #usr/include/boost/lockfree/detail/prefix.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
> #usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
> #usr/include/boost/lockfree/detail/uses_optional.hpp
> #usr/include/boost/lockfree/lockfree_forward.hpp
> +#usr/include/boost/lockfree/mpsc_weak_queue.hpp
> #usr/include/boost/lockfree/policies.hpp
> #usr/include/boost/lockfree/queue.hpp
> #usr/include/boost/lockfree/spsc_queue.hpp
> @@ -8283,8 +8577,17 @@
> #usr/include/boost/math/optimization/cma_es.hpp
> #usr/include/boost/math/optimization/detail
> #usr/include/boost/math/optimization/detail/common.hpp
> +#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
> +#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
> +#usr/include/boost/math/optimization/detail/line_search_policies.hpp
> +#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
> #usr/include/boost/math/optimization/differential_evolution.hpp
> +#usr/include/boost/math/optimization/gradient_descent.hpp
> +#usr/include/boost/math/optimization/gradient_optimizers.hpp
> #usr/include/boost/math/optimization/jso.hpp
> +#usr/include/boost/math/optimization/lbfgs.hpp
> +#usr/include/boost/math/optimization/minimizer.hpp
> +#usr/include/boost/math/optimization/nesterov.hpp
> #usr/include/boost/math/optimization/random_search.hpp
> #usr/include/boost/math/policies
> #usr/include/boost/math/policies/error_handling.hpp
> @@ -10296,12 +10599,23 @@
> #usr/include/boost/msm/backmp11
> #usr/include/boost/msm/backmp11/common_types.hpp
> #usr/include/boost/msm/backmp11/detail
> -#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
> +#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
> +#usr/include/boost/msm/backmp11/detail/common.hpp
> +#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
> #usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
> #usr/include/boost/msm/backmp11/detail/history_impl.hpp
> #usr/include/boost/msm/backmp11/detail/metafunctions.hpp
> +#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
> +#usr/include/boost/msm/backmp11/detail/state_tags.hpp
> +#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
> +#usr/include/boost/msm/backmp11/detail/transition_table.hpp
> #usr/include/boost/msm/backmp11/event_traits.hpp
> #usr/include/boost/msm/backmp11/favor_compile_time.hpp
> +#usr/include/boost/msm/backmp11/observer.hpp
> +#usr/include/boost/msm/backmp11/serialization
> +#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
> +#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
> +#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
> #usr/include/boost/msm/backmp11/state_machine.hpp
> #usr/include/boost/msm/backmp11/state_machine_config.hpp
> #usr/include/boost/msm/common.hpp
> @@ -10312,6 +10626,7 @@
> #usr/include/boost/msm/front/detail
> #usr/include/boost/msm/front/detail/common_states.hpp
> #usr/include/boost/msm/front/detail/row2_helper.hpp
> +#usr/include/boost/msm/front/detail/state_tags.hpp
> #usr/include/boost/msm/front/euml
> #usr/include/boost/msm/front/euml/algorithm.hpp
> #usr/include/boost/msm/front/euml/common.hpp
> @@ -10373,11 +10688,10 @@
> #usr/include/boost/multi_index
> #usr/include/boost/multi_index/composite_key.hpp
> #usr/include/boost/multi_index/detail
> -#usr/include/boost/multi_index/detail/access_specifier.hpp
> #usr/include/boost/multi_index/detail/adl_swap.hpp
> -#usr/include/boost/multi_index/detail/allocator_traits.hpp
> #usr/include/boost/multi_index/detail/any_container_view.hpp
> #usr/include/boost/multi_index/detail/archive_constructed.hpp
> +#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
> #usr/include/boost/multi_index/detail/auto_space.hpp
> #usr/include/boost/multi_index/detail/bad_archive_exception.hpp
> #usr/include/boost/multi_index/detail/base_type.hpp
> @@ -10408,7 +10722,9 @@
> #usr/include/boost/multi_index/detail/is_transparent.hpp
> #usr/include/boost/multi_index/detail/iter_adaptor.hpp
> #usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
> +#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
> #usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
> +#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
> #usr/include/boost/multi_index/detail/node_handle.hpp
> #usr/include/boost/multi_index/detail/node_type.hpp
> #usr/include/boost/multi_index/detail/ord_index_args.hpp
> @@ -10431,11 +10747,11 @@
> #usr/include/boost/multi_index/detail/seq_index_node.hpp
> #usr/include/boost/multi_index/detail/seq_index_ops.hpp
> #usr/include/boost/multi_index/detail/serialization_version.hpp
> +#usr/include/boost/multi_index/detail/type_list.hpp
> #usr/include/boost/multi_index/detail/uintptr_type.hpp
> #usr/include/boost/multi_index/detail/unbounded.hpp
> #usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
> #usr/include/boost/multi_index/detail/value_compare.hpp
> -#usr/include/boost/multi_index/detail/vartempl_support.hpp
> #usr/include/boost/multi_index/global_fun.hpp
> #usr/include/boost/multi_index/hashed_index.hpp
> #usr/include/boost/multi_index/hashed_index_fwd.hpp
> @@ -10678,6 +10994,7 @@
> #usr/include/boost/mysql/impl/internal/error
> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
> +#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
> #usr/include/boost/mysql/impl/internal/protocol
> #usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
> #usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
> @@ -11176,6 +11493,7 @@
> #usr/include/boost/openmethod/initialize.hpp
> #usr/include/boost/openmethod/inplace_vptr.hpp
> #usr/include/boost/openmethod/interop
> +#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
> #usr/include/boost/openmethod/interop/std_shared_ptr.hpp
> #usr/include/boost/openmethod/interop/std_unique_ptr.hpp
> #usr/include/boost/openmethod/macros.hpp
> @@ -11197,14 +11515,17 @@
> #usr/include/boost/optional/detail
> #usr/include/boost/optional/detail/experimental_traits.hpp
> #usr/include/boost/optional/detail/optional_aligned_storage.hpp
> +#usr/include/boost/optional/detail/optional_common_defs.hpp
> #usr/include/boost/optional/detail/optional_config.hpp
> #usr/include/boost/optional/detail/optional_factory_support.hpp
> #usr/include/boost/optional/detail/optional_hash.hpp
> +#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
> #usr/include/boost/optional/detail/optional_reference_spec.hpp
> #usr/include/boost/optional/detail/optional_relops.hpp
> +#usr/include/boost/optional/detail/optional_select_implementation.hpp
> #usr/include/boost/optional/detail/optional_swap.hpp
> #usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
> -#usr/include/boost/optional/detail/optional_utility.hpp
> +#usr/include/boost/optional/detail/union_optional.hpp
> #usr/include/boost/optional/optional.hpp
> #usr/include/boost/optional/optional_fwd.hpp
> #usr/include/boost/optional/optional_io.hpp
> @@ -11489,9 +11810,11 @@
> #usr/include/boost/pfr/detail/core17.hpp
> #usr/include/boost/pfr/detail/core17_generated.hpp
> #usr/include/boost/pfr/detail/core26.hpp
> +#usr/include/boost/pfr/detail/core26_reflection.hpp
> #usr/include/boost/pfr/detail/core_name.hpp
> #usr/include/boost/pfr/detail/core_name14_disabled.hpp
> #usr/include/boost/pfr/detail/core_name20_static.hpp
> +#usr/include/boost/pfr/detail/core_name26_reflection.hpp
> #usr/include/boost/pfr/detail/detectors.hpp
> #usr/include/boost/pfr/detail/fake_object.hpp
> #usr/include/boost/pfr/detail/fields_count.hpp
> @@ -13245,6 +13568,7 @@
> #usr/include/boost/python/detail/pointee.hpp
> #usr/include/boost/python/detail/prefix.hpp
> #usr/include/boost/python/detail/preprocessor.hpp
> +#usr/include/boost/python/detail/pymutex.hpp
> #usr/include/boost/python/detail/python22_fixed.h
> #usr/include/boost/python/detail/python_type.hpp
> #usr/include/boost/python/detail/raw_pyobject.hpp
> @@ -13750,15 +14074,20 @@
> #usr/include/boost/redis/connection.hpp
> #usr/include/boost/redis/detail
> #usr/include/boost/redis/detail/connect_fsm.hpp
> +#usr/include/boost/redis/detail/connect_params.hpp
> #usr/include/boost/redis/detail/connection_state.hpp
> #usr/include/boost/redis/detail/coroutine.hpp
> #usr/include/boost/redis/detail/exec_fsm.hpp
> +#usr/include/boost/redis/detail/exec_one_fsm.hpp
> #usr/include/boost/redis/detail/multiplexer.hpp
> #usr/include/boost/redis/detail/read_buffer.hpp
> #usr/include/boost/redis/detail/reader_fsm.hpp
> +#usr/include/boost/redis/detail/receive_fsm.hpp
> #usr/include/boost/redis/detail/redis_stream.hpp
> #usr/include/boost/redis/detail/resp3_type_to_error.hpp
> #usr/include/boost/redis/detail/run_fsm.hpp
> +#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
> +#usr/include/boost/redis/detail/subscription_tracker.hpp
> #usr/include/boost/redis/detail/write.hpp
> #usr/include/boost/redis/detail/writer_fsm.hpp
> #usr/include/boost/redis/error.hpp
> @@ -13768,23 +14097,32 @@
> #usr/include/boost/redis/impl/connection.ipp
> #usr/include/boost/redis/impl/error.ipp
> #usr/include/boost/redis/impl/exec_fsm.ipp
> +#usr/include/boost/redis/impl/exec_one_fsm.ipp
> +#usr/include/boost/redis/impl/flat_tree.ipp
> #usr/include/boost/redis/impl/ignore.ipp
> #usr/include/boost/redis/impl/is_terminal_cancel.hpp
> #usr/include/boost/redis/impl/log_to_file.hpp
> #usr/include/boost/redis/impl/log_utils.hpp
> #usr/include/boost/redis/impl/logger.ipp
> #usr/include/boost/redis/impl/multiplexer.ipp
> +#usr/include/boost/redis/impl/push_parser.ipp
> #usr/include/boost/redis/impl/read_buffer.ipp
> #usr/include/boost/redis/impl/reader_fsm.ipp
> +#usr/include/boost/redis/impl/receive_fsm.ipp
> #usr/include/boost/redis/impl/request.ipp
> #usr/include/boost/redis/impl/response.ipp
> #usr/include/boost/redis/impl/run_fsm.ipp
> +#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
> +#usr/include/boost/redis/impl/sentinel_utils.hpp
> #usr/include/boost/redis/impl/setup_request_utils.hpp
> +#usr/include/boost/redis/impl/subscription_tracker.ipp
> #usr/include/boost/redis/impl/writer_fsm.ipp
> #usr/include/boost/redis/logger.hpp
> #usr/include/boost/redis/operation.hpp
> +#usr/include/boost/redis/push_parser.hpp
> #usr/include/boost/redis/request.hpp
> #usr/include/boost/redis/resp3
> +#usr/include/boost/redis/resp3/flat_tree.hpp
> #usr/include/boost/redis/resp3/impl
> #usr/include/boost/redis/resp3/impl/parser.ipp
> #usr/include/boost/redis/resp3/impl/serialization.ipp
> @@ -13792,6 +14130,7 @@
> #usr/include/boost/redis/resp3/node.hpp
> #usr/include/boost/redis/resp3/parser.hpp
> #usr/include/boost/redis/resp3/serialization.hpp
> +#usr/include/boost/redis/resp3/tree.hpp
> #usr/include/boost/redis/resp3/type.hpp
> #usr/include/boost/redis/response.hpp
> #usr/include/boost/redis/src.hpp
> @@ -15352,9 +15691,11 @@
> #usr/include/boost/stacktrace/detail/addr2line_impls.hpp
> #usr/include/boost/stacktrace/detail/addr_base.hpp
> #usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
> +#usr/include/boost/stacktrace/detail/backend_config.hpp
> #usr/include/boost/stacktrace/detail/collect_msvc.ipp
> #usr/include/boost/stacktrace/detail/collect_noop.ipp
> #usr/include/boost/stacktrace/detail/collect_unwind.ipp
> +#usr/include/boost/stacktrace/detail/config.hpp
> #usr/include/boost/stacktrace/detail/frame_decl.hpp
> #usr/include/boost/stacktrace/detail/frame_msvc.ipp
> #usr/include/boost/stacktrace/detail/frame_noop.ipp
> @@ -15408,7 +15749,10 @@
> #usr/include/boost/statechart/state_machine.hpp
> #usr/include/boost/statechart/termination.hpp
> #usr/include/boost/statechart/transition.hpp
> +#usr/include/boost/static_assert
> #usr/include/boost/static_assert.hpp
> +#usr/include/boost/static_assert/detail
> +#usr/include/boost/static_assert/detail/backward.hpp
> #usr/include/boost/static_string
> #usr/include/boost/static_string.hpp
> #usr/include/boost/static_string/config.hpp
> @@ -15442,6 +15786,7 @@
> #usr/include/boost/system/detail/generic_category.hpp
> #usr/include/boost/system/detail/generic_category_message.hpp
> #usr/include/boost/system/detail/interop_category.hpp
> +#usr/include/boost/system/detail/is_aggregate.hpp
> #usr/include/boost/system/detail/is_same.hpp
> #usr/include/boost/system/detail/mutex.hpp
> #usr/include/boost/system/detail/snprintf.hpp
> @@ -15464,6 +15809,7 @@
> #usr/include/boost/system/result.hpp
> #usr/include/boost/system/system_category.hpp
> #usr/include/boost/system/system_error.hpp
> +#usr/include/boost/system/unwrap_and_invoke.hpp
> #usr/include/boost/system/windows_error.hpp
> #usr/include/boost/test
> #usr/include/boost/test/auto_unit_test.hpp
> @@ -16595,6 +16941,7 @@
> #usr/include/boost/unordered/detail/narrow_cast.hpp
> #usr/include/boost/unordered/detail/opt_storage.hpp
> #usr/include/boost/unordered/detail/prime_fmod.hpp
> +#usr/include/boost/unordered/detail/ranges_support.hpp
> #usr/include/boost/unordered/detail/serialization_version.hpp
> #usr/include/boost/unordered/detail/serialize_container.hpp
> #usr/include/boost/unordered/detail/serialize_fca_container.hpp
> @@ -16623,19 +16970,33 @@
> #usr/include/boost/url
> #usr/include/boost/url.hpp
> #usr/include/boost/url/authority_view.hpp
> +#usr/include/boost/url/decode.hpp
> #usr/include/boost/url/decode_view.hpp
> #usr/include/boost/url/detail
> #usr/include/boost/url/detail/any_params_iter.hpp
> #usr/include/boost/url/detail/any_segments_iter.hpp
> #usr/include/boost/url/detail/config.hpp
> +#usr/include/boost/url/detail/decode.hpp
> #usr/include/boost/url/detail/encode.hpp
> #usr/include/boost/url/detail/except.hpp
> +#usr/include/boost/url/detail/fnv_1a.hpp
> #usr/include/boost/url/detail/format_args.hpp
> #usr/include/boost/url/detail/impl
> +#usr/include/boost/url/detail/impl/any_params_iter.hpp
> +#usr/include/boost/url/detail/impl/any_segments_iter.hpp
> #usr/include/boost/url/detail/impl/format_args.hpp
> +#usr/include/boost/url/detail/impl/params_iter_impl.hpp
> +#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
> +#usr/include/boost/url/detail/impl/url_impl.hpp
> +#usr/include/boost/url/detail/memcpy.hpp
> +#usr/include/boost/url/detail/move_chars.hpp
> +#usr/include/boost/url/detail/normalize.hpp
> #usr/include/boost/url/detail/optional_string.hpp
> +#usr/include/boost/url/detail/over_allocator.hpp
> #usr/include/boost/url/detail/params_iter_impl.hpp
> #usr/include/boost/url/detail/parts_base.hpp
> +#usr/include/boost/url/detail/path.hpp
> +#usr/include/boost/url/detail/print.hpp
> #usr/include/boost/url/detail/replacement_field_rule.hpp
> #usr/include/boost/url/detail/segments_iter_impl.hpp
> #usr/include/boost/url/detail/segments_range.hpp
> @@ -16659,13 +17020,17 @@
> #usr/include/boost/url/grammar/detail
> #usr/include/boost/url/grammar/detail/charset.hpp
> #usr/include/boost/url/grammar/detail/ci_string.hpp
> +#usr/include/boost/url/grammar/detail/range_rule.hpp
> #usr/include/boost/url/grammar/detail/recycled.hpp
> #usr/include/boost/url/grammar/detail/tuple.hpp
> #usr/include/boost/url/grammar/digit_chars.hpp
> #usr/include/boost/url/grammar/error.hpp
> #usr/include/boost/url/grammar/hexdig_chars.hpp
> #usr/include/boost/url/grammar/impl
> +#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
> +#usr/include/boost/url/grammar/impl/delim_rule.hpp
> #usr/include/boost/url/grammar/impl/error.hpp
> +#usr/include/boost/url/grammar/impl/literal_rule.hpp
> #usr/include/boost/url/grammar/impl/not_empty_rule.hpp
> #usr/include/boost/url/grammar/impl/optional_rule.hpp
> #usr/include/boost/url/grammar/impl/parse.hpp
> @@ -16693,17 +17058,30 @@
> #usr/include/boost/url/host_type.hpp
> #usr/include/boost/url/ignore_case.hpp
> #usr/include/boost/url/impl
> +#usr/include/boost/url/impl/authority_view.hpp
> +#usr/include/boost/url/impl/decode.hpp
> #usr/include/boost/url/impl/decode_view.hpp
> #usr/include/boost/url/impl/encode.hpp
> #usr/include/boost/url/impl/error.hpp
> #usr/include/boost/url/impl/params_base.hpp
> #usr/include/boost/url/impl/params_encoded_base.hpp
> #usr/include/boost/url/impl/params_encoded_ref.hpp
> +#usr/include/boost/url/impl/params_encoded_view.hpp
> #usr/include/boost/url/impl/params_ref.hpp
> +#usr/include/boost/url/impl/params_view.hpp
> +#usr/include/boost/url/impl/parse.hpp
> +#usr/include/boost/url/impl/scheme.hpp
> #usr/include/boost/url/impl/segments_base.hpp
> #usr/include/boost/url/impl/segments_encoded_base.hpp
> #usr/include/boost/url/impl/segments_encoded_ref.hpp
> +#usr/include/boost/url/impl/segments_encoded_view.hpp
> #usr/include/boost/url/impl/segments_ref.hpp
> +#usr/include/boost/url/impl/segments_view.hpp
> +#usr/include/boost/url/impl/static_url.hpp
> +#usr/include/boost/url/impl/url.hpp
> +#usr/include/boost/url/impl/url_base.hpp
> +#usr/include/boost/url/impl/url_view.hpp
> +#usr/include/boost/url/impl/url_view_base.hpp
> #usr/include/boost/url/ipv4_address.hpp
> #usr/include/boost/url/ipv6_address.hpp
> #usr/include/boost/url/optional.hpp
> @@ -16722,10 +17100,44 @@
> #usr/include/boost/url/rfc/absolute_uri_rule.hpp
> #usr/include/boost/url/rfc/authority_rule.hpp
> #usr/include/boost/url/rfc/detail
> +#usr/include/boost/url/rfc/detail/charsets.hpp
> +#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/h16_rule.hpp
> +#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/host_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl
> +#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
> +#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
> +#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
> +#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
> +#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
> #usr/include/boost/url/rfc/detail/path_rules.hpp
> +#usr/include/boost/url/rfc/detail/port_rule.hpp
> +#usr/include/boost/url/rfc/detail/query_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
> +#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
> +#usr/include/boost/url/rfc/detail/scheme_rule.hpp
> +#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
> #usr/include/boost/url/rfc/gen_delim_chars.hpp
> #usr/include/boost/url/rfc/impl
> +#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
> +#usr/include/boost/url/rfc/impl/authority_rule.hpp
> +#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
> +#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
> +#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
> #usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
> +#usr/include/boost/url/rfc/impl/query_rule.hpp
> +#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
> +#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
> +#usr/include/boost/url/rfc/impl/uri_rule.hpp
> #usr/include/boost/url/rfc/ipv4_address_rule.hpp
> #usr/include/boost/url/rfc/ipv6_address_rule.hpp
> #usr/include/boost/url/rfc/origin_form_rule.hpp
> @@ -16788,21 +17200,33 @@
> #usr/include/boost/uuid/detail/basic_name_generator.hpp
> #usr/include/boost/uuid/detail/chacha20.hpp
> #usr/include/boost/uuid/detail/config.hpp
> +#usr/include/boost/uuid/detail/cstring.hpp
> #usr/include/boost/uuid/detail/endian.hpp
> +#usr/include/boost/uuid/detail/from_chars.hpp
> +#usr/include/boost/uuid/detail/from_chars_generic.hpp
> +#usr/include/boost/uuid/detail/from_chars_result.hpp
> +#usr/include/boost/uuid/detail/from_chars_x86.hpp
> #usr/include/boost/uuid/detail/hash_mix.hpp
> +#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
> #usr/include/boost/uuid/detail/md5.hpp
> #usr/include/boost/uuid/detail/nil_uuid.hpp
> #usr/include/boost/uuid/detail/numeric_cast.hpp
> #usr/include/boost/uuid/detail/random_device.hpp
> #usr/include/boost/uuid/detail/random_provider.hpp
> #usr/include/boost/uuid/detail/sha1.hpp
> +#usr/include/boost/uuid/detail/simd_vector.hpp
> #usr/include/boost/uuid/detail/static_assert.hpp
> +#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
> #usr/include/boost/uuid/detail/to_chars.hpp
> +#usr/include/boost/uuid/detail/to_chars_generic.hpp
> +#usr/include/boost/uuid/detail/to_chars_x86.hpp
> +#usr/include/boost/uuid/detail/uuid_from_string.hpp
> #usr/include/boost/uuid/detail/uuid_generic.ipp
> #usr/include/boost/uuid/detail/uuid_uint128.ipp
> #usr/include/boost/uuid/detail/uuid_x86.ipp
> #usr/include/boost/uuid/entropy_error.hpp
> #usr/include/boost/uuid/generators.hpp
> +#usr/include/boost/uuid/invalid_uuid.hpp
> #usr/include/boost/uuid/name_generator.hpp
> #usr/include/boost/uuid/name_generator_md5.hpp
> #usr/include/boost/uuid/name_generator_sha1.hpp
> @@ -17304,274 +17728,407 @@
> #usr/include/boost/yap/print.hpp
> #usr/include/boost/yap/user_macros.hpp
> #usr/include/boost/yap/yap.hpp
> -#usr/lib/cmake/Boost-1.90.0
> -#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
> -#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
> -#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0
> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
> -#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0
> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
> -#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0
> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
> -#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
> -#usr/lib/cmake/boost_cobalt-1.90.0
> -#usr/lib/cmake/boost_cobalt-1.90.0/boost_cobalt-config-version.cmake
> -#usr/lib/cmake/boost_cobalt-1.90.0/boost_cobalt-config.cmake
> -#usr/lib/cmake/boost_cobalt-1.90.0/libboost_cobalt-variant-shared.cmake
> -#usr/lib/cmake/boost_cobalt_io-1.90.0
> -#usr/lib/cmake/boost_cobalt_io-1.90.0/boost_cobalt_io-config-version.cmake
> -#usr/lib/cmake/boost_cobalt_io-1.90.0/boost_cobalt_io-config.cmake
> -#usr/lib/cmake/boost_cobalt_io-1.90.0/libboost_cobalt_io-variant-shared.cmake
> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0
> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/boost_cobalt_io_ssl-config-version.cmake
> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/boost_cobalt_io_ssl-config.cmake
> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/libboost_cobalt_io_ssl-variant-shared.cmake
> -#usr/lib/cmake/boost_container-1.90.0
> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
> -#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
> -#usr/lib/cmake/boost_context-1.90.0
> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
> -#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
> -#usr/lib/cmake/boost_contract-1.90.0
> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
> -#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0
> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
> -#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
> -#usr/lib/cmake/boost_exception-1.90.0
> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0
> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
> -#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
> -#usr/lib/cmake/boost_graph-1.90.0
> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
> -#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
> -#usr/lib/cmake/boost_headers-1.90.0
> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0
> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
> -#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
> -#usr/lib/cmake/boost_json-1.90.0
> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
> -#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
> -#usr/lib/cmake/boost_locale-1.90.0
> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
> -#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
> -#usr/lib/cmake/boost_log-1.90.0
> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
> -#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0
> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
> -#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
> -#usr/lib/cmake/boost_math-1.90.0
> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0
> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
> -#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0
> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
> -#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0
> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
> -#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0
> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
> -#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
> -#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
> -#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0
> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
> -#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
> -#usr/lib/cmake/boost_numpy-1.90.0
> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
> -#usr/lib/cmake/boost_process-1.90.0
> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
> -#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
> -#usr/lib/cmake/boost_python-1.90.0
> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
> -#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
> -#usr/lib/cmake/boost_random-1.90.0
> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
> -#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
> -#usr/lib/cmake/boost_regex-1.90.0
> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
> -#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0
> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
> -#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0
> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config.cmake
> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/libboost_stacktrace_from_exception-variant-shared.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
> -#usr/lib/cmake/boost_thread-1.90.0
> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
> -#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
> -#usr/lib/cmake/boost_timer-1.90.0
> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
> -#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0
> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
> -#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
> -#usr/lib/cmake/boost_url-1.90.0
> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
> -#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
> -#usr/lib/cmake/boost_wave-1.90.0
> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
> -#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0
> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
> -#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
> -#usr/lib/libboost_atomic.so
> -usr/lib/libboost_atomic.so.1.90.0
> -#usr/lib/libboost_charconv.so
> -usr/lib/libboost_charconv.so.1.90.0
> -#usr/lib/libboost_chrono.so
> -usr/lib/libboost_chrono.so.1.90.0
> -#usr/lib/libboost_cobalt.so
> -usr/lib/libboost_cobalt.so.1.90.0
> -#usr/lib/libboost_cobalt_io.so
> -usr/lib/libboost_cobalt_io.so.1.90.0
> -#usr/lib/libboost_cobalt_io_ssl.so
> -usr/lib/libboost_cobalt_io_ssl.so.1.90.0
> -#usr/lib/libboost_container.so
> -usr/lib/libboost_container.so.1.90.0
> -#usr/lib/libboost_context.so
> -usr/lib/libboost_context.so.1.90.0
> -#usr/lib/libboost_contract.so
> -usr/lib/libboost_contract.so.1.90.0
> -#usr/lib/libboost_date_time.so
> -usr/lib/libboost_date_time.so.1.90.0
> -#usr/lib/libboost_exception.a
> -#usr/lib/libboost_filesystem.so
> -usr/lib/libboost_filesystem.so.1.90.0
> -#usr/lib/libboost_graph.so
> -usr/lib/libboost_graph.so.1.90.0
> -#usr/lib/libboost_iostreams.so
> -usr/lib/libboost_iostreams.so.1.90.0
> -#usr/lib/libboost_json.so
> -usr/lib/libboost_json.so.1.90.0
> -#usr/lib/libboost_locale.so
> -usr/lib/libboost_locale.so.1.90.0
> -#usr/lib/libboost_log.so
> -usr/lib/libboost_log.so.1.90.0
> -#usr/lib/libboost_log_setup.so
> -usr/lib/libboost_log_setup.so.1.90.0
> -#usr/lib/libboost_math_c99.so
> -usr/lib/libboost_math_c99.so.1.90.0
> -#usr/lib/libboost_math_c99f.so
> -usr/lib/libboost_math_c99f.so.1.90.0
> -#usr/lib/libboost_math_c99l.so
> -usr/lib/libboost_math_c99l.so.1.90.0
> -#usr/lib/libboost_math_tr1.so
> -usr/lib/libboost_math_tr1.so.1.90.0
> -#usr/lib/libboost_math_tr1f.so
> -usr/lib/libboost_math_tr1f.so.1.90.0
> -#usr/lib/libboost_math_tr1l.so
> -usr/lib/libboost_math_tr1l.so.1.90.0
> -#usr/lib/libboost_nowide.so
> -usr/lib/libboost_nowide.so.1.90.0
> -#usr/lib/libboost_prg_exec_monitor.so
> -usr/lib/libboost_prg_exec_monitor.so.1.90.0
> -#usr/lib/libboost_process.so
> -usr/lib/libboost_process.so.1.90.0
> -#usr/lib/libboost_python310.so
> -usr/lib/libboost_python310.so.1.90.0
> -#usr/lib/libboost_random.so
> -usr/lib/libboost_random.so.1.90.0
> -#usr/lib/libboost_regex.so
> -usr/lib/libboost_regex.so.1.90.0
> -#usr/lib/libboost_serialization.so
> -usr/lib/libboost_serialization.so.1.90.0
> -#usr/lib/libboost_stacktrace_addr2line.so
> -usr/lib/libboost_stacktrace_addr2line.so.1.90.0
> -#usr/lib/libboost_stacktrace_basic.so
> -usr/lib/libboost_stacktrace_basic.so.1.90.0
> -#usr/lib/libboost_stacktrace_from_exception.so
> -usr/lib/libboost_stacktrace_from_exception.so.1.90.0
> -#usr/lib/libboost_stacktrace_noop.so
> -usr/lib/libboost_stacktrace_noop.so.1.90.0
> -#usr/lib/libboost_test_exec_monitor.a
> -#usr/lib/libboost_thread.so
> -usr/lib/libboost_thread.so.1.90.0
> -#usr/lib/libboost_timer.so
> -usr/lib/libboost_timer.so.1.90.0
> -#usr/lib/libboost_type_erasure.so
> -usr/lib/libboost_type_erasure.so.1.90.0
> -#usr/lib/libboost_unit_test_framework.so
> -usr/lib/libboost_unit_test_framework.so.1.90.0
> -#usr/lib/libboost_url.so
> -usr/lib/libboost_url.so.1.90.0
> -#usr/lib/libboost_wave.so
> -usr/lib/libboost_wave.so.1.90.0
> -#usr/lib/libboost_wserialization.so
> -usr/lib/libboost_wserialization.so.1.90.0
> +#usr/lib/cmake/Boost-1.92.0
> +#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
> +#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
> +#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0
> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0
> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0
> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0
> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_container-1.92.0
> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_context-1.92.0
> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_contract-1.92.0
> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0
> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_exception-1.92.0
> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0
> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_graph-1.92.0
> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_headers-1.92.0
> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0
> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_json-1.92.0
> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_locale-1.92.0
> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_log-1.92.0
> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0
> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_math-1.92.0
> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0
> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0
> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0
> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0
> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0
> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_numpy-1.92.0
> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_process-1.92.0
> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_python-1.92.0
> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-x64-shared-py3.10.cmake
> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-x64-shared-py3.10.cmake
> +#usr/lib/cmake/boost_random-1.92.0
> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_regex-1.92.0
> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0
> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0
> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_system-1.92.0
> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_thread-1.92.0
> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_timer-1.92.0
> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0
> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_url-1.92.0
> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_wave-1.92.0
> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-x64-shared.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0
> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-x64-shared.cmake
> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-x64-shared.cmake
> +#usr/lib/libboost_atomic-mt-x64.so
> +usr/lib/libboost_atomic-mt-x64.so.1.92.0
> +#usr/lib/libboost_charconv-mt-x64.so
> +usr/lib/libboost_charconv-mt-x64.so.1.92.0
> +#usr/lib/libboost_charconv-x64.so
> +usr/lib/libboost_charconv-x64.so.1.92.0
> +#usr/lib/libboost_chrono-mt-x64.so
> +usr/lib/libboost_chrono-mt-x64.so.1.92.0
> +#usr/lib/libboost_chrono-x64.so
> +usr/lib/libboost_chrono-x64.so.1.92.0
> +#usr/lib/libboost_cobalt-mt-x64.so
> +usr/lib/libboost_cobalt-mt-x64.so.1.92.0
> +#usr/lib/libboost_cobalt-x64.so
> +usr/lib/libboost_cobalt-x64.so.1.92.0
> +#usr/lib/libboost_cobalt_io-mt-x64.so
> +usr/lib/libboost_cobalt_io-mt-x64.so.1.92.0
> +#usr/lib/libboost_cobalt_io-x64.so
> +usr/lib/libboost_cobalt_io-x64.so.1.92.0
> +#usr/lib/libboost_cobalt_io_ssl-mt-x64.so
> +usr/lib/libboost_cobalt_io_ssl-mt-x64.so.1.92.0
> +#usr/lib/libboost_cobalt_io_ssl-x64.so
> +usr/lib/libboost_cobalt_io_ssl-x64.so.1.92.0
> +#usr/lib/libboost_container-mt-x64.so
> +usr/lib/libboost_container-mt-x64.so.1.92.0
> +#usr/lib/libboost_container-x64.so
> +usr/lib/libboost_container-x64.so.1.92.0
> +#usr/lib/libboost_context-mt-x64.so
> +usr/lib/libboost_context-mt-x64.so.1.92.0
> +#usr/lib/libboost_contract-mt-x64.so
> +usr/lib/libboost_contract-mt-x64.so.1.92.0
> +#usr/lib/libboost_contract-x64.so
> +usr/lib/libboost_contract-x64.so.1.92.0
> +#usr/lib/libboost_date_time-mt-x64.so
> +usr/lib/libboost_date_time-mt-x64.so.1.92.0
> +#usr/lib/libboost_date_time-x64.so
> +usr/lib/libboost_date_time-x64.so.1.92.0
> +#usr/lib/libboost_exception-mt-x64.a
> +#usr/lib/libboost_exception-x64.a
> +#usr/lib/libboost_filesystem-mt-x64.so
> +usr/lib/libboost_filesystem-mt-x64.so.1.92.0
> +#usr/lib/libboost_filesystem-x64.so
> +usr/lib/libboost_filesystem-x64.so.1.92.0
> +#usr/lib/libboost_graph-mt-x64.so
> +usr/lib/libboost_graph-mt-x64.so.1.92.0
> +#usr/lib/libboost_graph-x64.so
> +usr/lib/libboost_graph-x64.so.1.92.0
> +#usr/lib/libboost_iostreams-mt-x64.so
> +usr/lib/libboost_iostreams-mt-x64.so.1.92.0
> +#usr/lib/libboost_iostreams-x64.so
> +usr/lib/libboost_iostreams-x64.so.1.92.0
> +#usr/lib/libboost_json-mt-x64.so
> +usr/lib/libboost_json-mt-x64.so.1.92.0
> +#usr/lib/libboost_json-x64.so
> +usr/lib/libboost_json-x64.so.1.92.0
> +#usr/lib/libboost_locale-mt-x64.so
> +usr/lib/libboost_locale-mt-x64.so.1.92.0
> +#usr/lib/libboost_log-mt-x64.so
> +usr/lib/libboost_log-mt-x64.so.1.92.0
> +#usr/lib/libboost_log-x64.so
> +usr/lib/libboost_log-x64.so.1.92.0
> +#usr/lib/libboost_log_setup-mt-x64.so
> +usr/lib/libboost_log_setup-mt-x64.so.1.92.0
> +#usr/lib/libboost_log_setup-x64.so
> +usr/lib/libboost_log_setup-x64.so.1.92.0
> +#usr/lib/libboost_math_c99-mt-x64.so
> +usr/lib/libboost_math_c99-mt-x64.so.1.92.0
> +#usr/lib/libboost_math_c99-x64.so
> +usr/lib/libboost_math_c99-x64.so.1.92.0
> +#usr/lib/libboost_math_c99f-mt-x64.so
> +usr/lib/libboost_math_c99f-mt-x64.so.1.92.0
> +#usr/lib/libboost_math_c99f-x64.so
> +usr/lib/libboost_math_c99f-x64.so.1.92.0
> +#usr/lib/libboost_math_c99l-mt-x64.so
> +usr/lib/libboost_math_c99l-mt-x64.so.1.92.0
> +#usr/lib/libboost_math_c99l-x64.so
> +usr/lib/libboost_math_c99l-x64.so.1.92.0
> +#usr/lib/libboost_math_tr1-mt-x64.so
> +usr/lib/libboost_math_tr1-mt-x64.so.1.92.0
> +#usr/lib/libboost_math_tr1-x64.so
> +usr/lib/libboost_math_tr1-x64.so.1.92.0
> +#usr/lib/libboost_math_tr1f-mt-x64.so
> +usr/lib/libboost_math_tr1f-mt-x64.so.1.92.0
> +#usr/lib/libboost_math_tr1f-x64.so
> +usr/lib/libboost_math_tr1f-x64.so.1.92.0
> +#usr/lib/libboost_math_tr1l-mt-x64.so
> +usr/lib/libboost_math_tr1l-mt-x64.so.1.92.0
> +#usr/lib/libboost_math_tr1l-x64.so
> +usr/lib/libboost_math_tr1l-x64.so.1.92.0
> +#usr/lib/libboost_nowide-mt-x64.so
> +usr/lib/libboost_nowide-mt-x64.so.1.92.0
> +#usr/lib/libboost_nowide-x64.so
> +usr/lib/libboost_nowide-x64.so.1.92.0
> +#usr/lib/libboost_prg_exec_monitor-mt-x64.so
> +usr/lib/libboost_prg_exec_monitor-mt-x64.so.1.92.0
> +#usr/lib/libboost_prg_exec_monitor-x64.so
> +usr/lib/libboost_prg_exec_monitor-x64.so.1.92.0
> +#usr/lib/libboost_process-mt-x64.so
> +usr/lib/libboost_process-mt-x64.so.1.92.0
> +#usr/lib/libboost_process-x64.so
> +usr/lib/libboost_process-x64.so.1.92.0
> +#usr/lib/libboost_python310-mt-x64.so
> +usr/lib/libboost_python310-mt-x64.so.1.92.0
> +#usr/lib/libboost_python310-x64.so
> +usr/lib/libboost_python310-x64.so.1.92.0
> +#usr/lib/libboost_random-mt-x64.so
> +usr/lib/libboost_random-mt-x64.so.1.92.0
> +#usr/lib/libboost_random-x64.so
> +usr/lib/libboost_random-x64.so.1.92.0
> +#usr/lib/libboost_regex-mt-x64.so
> +usr/lib/libboost_regex-mt-x64.so.1.92.0
> +#usr/lib/libboost_regex-x64.so
> +usr/lib/libboost_regex-x64.so.1.92.0
> +#usr/lib/libboost_serialization-mt-x64.so
> +usr/lib/libboost_serialization-mt-x64.so.1.92.0
> +#usr/lib/libboost_serialization-x64.so
> +usr/lib/libboost_serialization-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_addr2line-mt-x64.so
> +usr/lib/libboost_stacktrace_addr2line-mt-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_addr2line-x64.so
> +usr/lib/libboost_stacktrace_addr2line-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_basic-mt-x64.so
> +usr/lib/libboost_stacktrace_basic-mt-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_basic-x64.so
> +usr/lib/libboost_stacktrace_basic-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_dump-mt-x64.so
> +usr/lib/libboost_stacktrace_dump-mt-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_dump-x64.so
> +usr/lib/libboost_stacktrace_dump-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_from_exception-mt-x64.so
> +usr/lib/libboost_stacktrace_from_exception-mt-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_from_exception-x64.so
> +usr/lib/libboost_stacktrace_from_exception-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_noop-mt-x64.so
> +usr/lib/libboost_stacktrace_noop-mt-x64.so.1.92.0
> +#usr/lib/libboost_stacktrace_noop-x64.so
> +usr/lib/libboost_stacktrace_noop-x64.so.1.92.0
> +#usr/lib/libboost_test_exec_monitor-mt-x64.a
> +#usr/lib/libboost_test_exec_monitor-x64.a
> +#usr/lib/libboost_thread-mt-x64.so
> +usr/lib/libboost_thread-mt-x64.so.1.92.0
> +#usr/lib/libboost_timer-mt-x64.so
> +usr/lib/libboost_timer-mt-x64.so.1.92.0
> +#usr/lib/libboost_timer-x64.so
> +usr/lib/libboost_timer-x64.so.1.92.0
> +#usr/lib/libboost_type_erasure-mt-x64.so
> +usr/lib/libboost_type_erasure-mt-x64.so.1.92.0
> +#usr/lib/libboost_type_erasure-x64.so
> +usr/lib/libboost_type_erasure-x64.so.1.92.0
> +#usr/lib/libboost_unit_test_framework-mt-x64.so
> +usr/lib/libboost_unit_test_framework-mt-x64.so.1.92.0
> +#usr/lib/libboost_unit_test_framework-x64.so
> +usr/lib/libboost_unit_test_framework-x64.so.1.92.0
> +#usr/lib/libboost_url-mt-x64.so
> +usr/lib/libboost_url-mt-x64.so.1.92.0
> +#usr/lib/libboost_url-x64.so
> +usr/lib/libboost_url-x64.so.1.92.0
> +#usr/lib/libboost_wave-mt-x64.so
> +usr/lib/libboost_wave-mt-x64.so.1.92.0
> +#usr/lib/libboost_wave-x64.so
> +usr/lib/libboost_wave-x64.so.1.92.0
> +#usr/lib/libboost_wserialization-mt-x64.so
> +usr/lib/libboost_wserialization-mt-x64.so.1.92.0
> +#usr/lib/libboost_wserialization-x64.so
> +usr/lib/libboost_wserialization-x64.so.1.92.0
> #usr/share/boost_predef
> #usr/share/boost_predef/build.jam
> #usr/share/boost_predef/tools
> diff --git a/lfs/boost b/lfs/boost
> index d6b028254..75cd034dc 100644
> --- a/lfs/boost
> +++ b/lfs/boost
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 1_90_0
> +VER = 1_92_0
>
> THISAPP = boost_$(VER)
> DL_FILE = $(THISAPP).tar.bz2
> @@ -39,7 +39,7 @@ MAX_PARALLELISM = $(shell echo $$(( $(SYSTEM_MEMORY) / 512)))
>
> CONFIGURE_OPTIONS = \
> --prefix=/usr \
> - --layout=system \
> + --layout=tagged \
> --without-chrono \
> --without-context \
> --without-coroutine \
> @@ -50,11 +50,10 @@ CONFIGURE_OPTIONS = \
> --without-program_options \
> --build-dir=serial \
> variant=release \
> - threading=multi \
> + threading=single,multi \
> debug-symbols=off \
> pch=off \
> link=shared \
> - runtime-link=shared \
> cflags="$(CFLAGS)" \
> cxxflags="$(CXXFLAGS)"
>
> @@ -66,7 +65,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = daaf524dd26c0e24bec6e461749305277b9b86059f3eb3435ae4928a6537eb198234c597324faa40eb372343233daaf5f5aae886160d9833b04992ac57e385c9
> +$(DL_FILE)_BLAKE2 = 982237b4fa77fe93ac7e246b9df9a21b1da49ea512628dc41ec67230b4af9566c9b501d2f4c1d5d8c4daf5d0d35e80929deb57f1e758ba8b46569140b3901887
>
> install : $(TARGET)
>
> --
> 2.55.0
>
>
Hi Michael,
Whoops. I had tried to do the update before my vacation but dnsdist then failed to build. That turned out to be due to dnsdist needing to be updated to 2.1.1
I cam back from vacation and restarted the patch update but the lfs file I used was the one I had originally taken and I didn't check that it was still the same.
In fact looking at your change it was from beginning of June so my previous failed attempt must have been much earlier.
My apologies.
Ignore the two patch files for boost and shipping and I will re-do the build to make sure everything still works correctly when applied to the correct current lfs file for boost and I likely will need to make some further changes to the rootfiles.
Regards,
Adolf.
On 17/09/2026 19:43, Michael Tremer wrote:
> Hello Adolf,
>
> Thanks for the patch. Is there any particular reason why you reverted my changes from here?
>
> https://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff;h=3312715cc11e51af73cbd7dc8d57b1bde6168ad7#patch3
>
> -Michael
>
>> On 17 Sep 2026, at 14:01, Adolf Belka <adolf.belka@ipfire.org> wrote:
>>
>> - Update from version 1_90_0 to 1_92_0
>> - Update of rootfiles for all architectures
>> - Changelog
>> 1_92_0
>> General Notes
>> In previous releases, Windows .dll files were installed by b2 install into the
>> library directory (<PREFIX>/lib by default), except on Cygwin, where they
>> were installed into the binary directory (<PREFIX>/bin by default.)
>> This has been changed to consistently install .dll files into the binary
>> directory, which is the behavior most users want.
>> For compatibility, a new command line option, --dlldir, has been added to b2
>> install so that the directory can be overridden, and if needed, pointed to
>> <PREFIX>/lib.
>> The CMake configuration file installed by b2 install has been updated to support
>> requesting header-only libraries as find_package components.
>> That is, something like find_package(Boost REQUIRED COMPONENTS mp11) works now
>> (and defines the target Boost::mp11), whereas previously it did not (only
>> compiled libraries were considered components).
>> This matches the behavior of the CMake configuration files installed by building
>> Boost with CMake, making it possible to consume Boost in the same way
>> regardless of how it was built and installed.
>> As part of this regularization, the little used feature of requesting
>> COMPONENTS ALL has been removed. It’s not supported by the CMake Boost
>> build, and was never supported by FindBoost.
>> Updated Libraries
>> Asio
>> Added a "scheduler" / "assume_continuation" configuration parameter, which
>> allows posted handlers to be added to a fast thread-local queue.
>> Added "reactor" configuration parameters for tuning the io_uring backend:
>> io_uring_ring_count, io_uring_ring_size, io_uring_submit_batch_size
>> and io_uring_iowait.
>> Added the ability to configure ssl::stream<>'s internal buffer sizes.
>> Added a forward declarations header boost/asio/fwd.hpp to safely forward
>> declare Asio class names when using the versioned namespace.
>> Added an example for using cancel_after with coroutines.
>> Added support for co_composed under BOOST_ASIO_NO_EXCEPTIONS.
>> Added a missing optimisation for concurrency_hint == 1 in
>> io_context::poll_one().
>> Changed all exception classes to use inline implementations, to fix an
>> undefined symbol error on some platforms when using separate
>> compilation.
>> Changed constants and CPOs to use external linkage for C++17 and later.
>> Changed "slim" mutexes to use futexes on Linux.
>> Changed the reactor to use MSG_DONTWAIT, if supported, rather than setting
>> the socket to be non-blocking.
>> Fixed two co_composed crashes on MSVC, one when using multiple completion
>> signatures, and one due to insufficient alignment.
>> Fixed the return type on one cancel_after overload.
>> Fixed an integer truncation issue in basic_streambuf::commit/consume.
>> Fixed a buffer invalidation error triggered when SSL streams are moved, and
>> clarified the buffer invalidation semantics.
>> Fixed a compilation error, seen on some compilers, that occurs when using
>> post, dispatch or defer with a completion handler.
>> Fixed parallel_group handling of non-terminal cancellation requests.
>> Fixed some thread sanitizer warnings due to atomic thread fences, and added
>> extra thread sanitizer instrumentation.
>> Fixed a signed/unsigned warning in basic_resolver_results, and suppressed
>> some case fall-through warnings.
>> Fixed experimental::channel compilation with older versions of MSVC.
>> Fixed the multicast::enable_loopback socket option size on NetBSD and OpenBSD.
>> Fixed standard library coroutine detection when using clang-cl.
>> Improved cross-referencing within the documentation.
>> Consult the Revision History for further details.
>> Assert:
>> Fix BOOST_VERIFY in the rare case of both BOOST_ENABLE_ASSERT_HANDLER and
>> BOOST_ENABLE_ASSERT_DEBUG_HANDLER being defined.
>> Beast:
>> websocket::stream accepts close code 1014 (bad gateway).
>> http::basic_parser ignores connection and framing fields in trailers.
>> http::parser drops framing and connection-control fields carried in trailers.
>> http::basic_parser rejects chunked transfer-encoding in HTTP/1.0 requests.
>> http::basic_parser rejects Content-Length with Transfer-Encoding regardless
>> of field order.
>> http::basic_parser rejects requests with a Transfer-Encoding that does not
>> end in chunked.
>> http::basic_parser validates quoted-strings in chunk extensions.
>> http::message::prepare_payload rejects 1xx responses with a body.
>> websocket::stream rejects 64-bit frame lengths with the high bit set.
>> File operations clear the error_code on success.
>> The server-flex-awaitable example dispatches cancellation to the task’s strand.
>> Removed dependency on Boost.Functional.
>> Charconv:
>> Added CUDA support allowing both to_chars and from_chars for integers to be
>> used in CUDA kernels
>> Fixed support for Clang on PPC64LE as it keeps long double and __float128 as
>> distinct types which was previously considered invalid via
>> static_assert
>> ContainerHash:
>> Hashing a valueless std::variant instance no longer throws.
>> Container:
>> Added new boost::container::hub container designed by Joaquín M. López Muñoz.
>> See the Hub Container chapter in the Container documentation for more
>> information.
>> Fixed bugs/issues:
>> Wrong overload resolution protection in implementation of P2363R5 (#334).
>> Compile error with erase and small_vector<std::string> (#336).
>> uses_allocator_construction.hpp: missing #include …/config_end.hpp (#338).
>> Added unchecked_emplace_back and unchecked_push_back to
>> boost::container::vector, boost::container::static_vector, and
>> boost::container::small_vector.
>> Implemented C++23 P1518 change: modified allocator-extended constructors
>> for all containers so that the deduction guides for containers are
>> not overconstrained.
>> Conversion:
>> C++20 Module boost.conversion was implemented. Many thanks to Fedor Osetrov
>> for the PR (PR#43)!
>> Decimal:
>> Added initial CUDA support allowing decimal32_t, decimal64_t, and
>> decimal128_t to be used in CUDA kernels
>> Added decompose function which returns the significand, exponent, and sign
>> without normalization (i.e. in their current cohort)
>> DLL:
>> Fixed smart_library constructors from shared_library (PR#114). Many thanks
>> to R. Savchenko for the PR!
>> C++20 Module boost.dll was implemented. Many thanks to Fedor Osetrov for the
>> PRs (PR#110, PR#111, PR#112)!
>> Filesystem:
>> Marked templated versions of initial_path as deprecated and removed from v4.
>> Use the non-templated versions instead.
>> Use readdir instead of readdir_r on more POSIX platforms, specifically on
>> Mac OS and other Apple operating systems, FreeBSD, OpenBSD,
>> DragonFly BSD, NetBSD, QNX 6.0 and later, Solaris 10 and later and
>> Illumos-based systems. Solaris users with gcc are recommended to
>> define SunOS_5_x macros according to their target Solaris version
>> (e.g. SunOS_5_11) when building Boost. (#349)
>> Support for platforms with non-thread-safe readdir is deprecated and will be
>> removed in a future release. Although not required until
>> POSIX.1-2024, on modern systems readdir is thread-safe when used
>> with separate DIR objects in different threads and on some systems
>> readdir_r is marked as deprecated. POSIX.1-2024 has been updated
>> accordingly and also marked readdir_r as obsolescent, with a planned
>> removal in a future version of the specification.
>> On POSIX platforms, handle EINTR error code returned from opendir, readdir
>> and equivalents. Although not documented, this error code,
>> reportedly, may be returned on Apple operating systems and some BSD
>> systems.
>> Geometry:
>> Improvements (geometry):
>> Drop varray implementation in favor of Boost.Container static_vector
>> (PR#1458).
>> Refactor/reduce misc boost dependencies (PR#1459).
>> Improve short-distance accuracy of Andoyer inverse (PR#1461).
>> Solved issues (geometry):
>> Unit test index_rtree_exceptions_rst fails (#1399).
>> Performance regression on GCC (#1452).
>> Missing citation guidelines (#714).
>> Two almost identical rectangles have no intersection (#1471).
>> Various fixes of errors and warnings.
>> Graph:
>> Added a Louvain community detection algorithm for modularity-based
>> clustering (PR#453).
>> Removed the dependency on Boost.StaticAssert (PR#450).
>> Fixed bugs and correctness issues:
>> Corrected the types used in adjacency_list serialization (PR#443).
>> Initialized edge_property_type in adjacency_list.hpp (PR#505).
>> Fixed a wrong accessor return type (PR#504).
>> Modernized types and hygiene:
>> Added missing const qualifiers and replaced typedef with using in
>> several headers (PR#508).
>> Removed narrowing conversions in random.hpp, bandwidth.hpp, and
>> king_ordering.hpp (PR#497, PR#498, PR#499).
>> Replaced deprecated std::random_shuffle with std::shuffle (PR#513).
>> Silenced -Wunused-* warnings and removed dead test variables (PR#510,
>> PR#511, PR#512).
>> Cleared GCC -Wsign-compare warnings (PR#514).
>> Documentation: updated the entire documentation and migrated to a new
>> visual design (PR#469, PR#491, PR#509, PR#517, PR#519).
>> Hash2:
>> Added built-in support for std::optional
>> Added built-in support for std::variant, std::monostate
>> Heap:
>> This release is the last to support C++14. Future releases will require C++17.
>> ICL:
>> Starting with version 22, libc++ has changed some lookup algorithms of its
>> associative containers in a way that breaks ICL’s assumptions and
>> behavior. The library internals have been refactored to solve the
>> problem and make ICL robust against future decisions of the C++
>> committee regarding non-heterogeneous lookup for associative
>> containers (PR#54, LWG4752).
>> Fixed C++20-related problems with std::iter_value_t<element_iterator> and
>> GCC 10-12’s handling of rewritten relational operators (PR#54).
>> Fixed a GCC 10-11 codegen bug (PR#54).
>> Interprocess:
>> Fixed bugs:
>> AIX build fix: fix return type in get_invalid_systemwide_thread_id (PR#280).
>> Locks in message_queue_t cover more code than intended (#281).
>> Iterator:
>> Added is_*_iterator_v variable templates in C++14 and later, equivalent to
>> the corresponding iterator traits.
>> The distance and advance algorithms are now constrained by requiring
>> is_iterator to return true for the iterator arguments. (PR#96)
>> LexicalCast:
>> C++20 Module boost.lexical_cast was implemented. Many thanks to Fedor
>> Osetrov for the PR (PR#96)!
>> Lockfree:
>> This release is the last to support C++14. Future releases will require C++17.
>> Added new boost::lockfree::mpsc_weak_queue, a multi-producer,
>> single-consumer queue. While push and pop are individually
>> wait-free, the queue is not linearizable and a producer that stalls
>> between exchanging the tail and linking its node can permanently
>> break the queue, so it is not strictly lock-free.
>> Added new boost::lockfree::bounded_ticket_queue, a ringbuffer-based bounded
>> MPMC queue. The queue is linearizable and wait-free when configured
>> with a single producer and single consumer. In multi-producer or
>> multi-consumer configurations, a stalled thread that has claimed a
>> slot can block progress, so the queue is not strictly lock-free.
>> Math:
>> Added a degree of freedom finder to the Student’s T and Non-centeral F
>> disributions
>> Fixed CUDA compilation where host functions were invalidly being marked as
>> device during compilation
>> Increased testing coverage of distributions leading to several overflow fixes
>> Mp11:
>> Improved the performance of a number of algorithms (contributed by Jonathan
>> Poelen)
>> MQTT5:
>> mqtt_client::async_run now completes immediately with
>> client::error::already_running when the client is already running (#54).
>> Fixed several missing length checks when decoding packets received from the
>> broker. Malformed packets could previously cause out-of-bounds reads
>> or excessive memory allocation. Many thanks to Team-Atlanta for
>> reporting these issues.
>> MSM:
>> New features (backmp11):
>> Provide an observer API for logging support (#220)
>> Forward Kleene events to actions and guards without conversion (#229)
>> Ensure basic exception guarantee and propagate exceptions to the caller
>> (#221)
>> Provide a reflection API and serialization support for
>> Boost.Serialization, Boost.JSON and nlohmann/json (#197)
>> Rework terminate and interrupt state handling and provide a
>> machine_state enum (#244)
>> Configurable event pool and inline storage (#239)
>> API reference and examples are now available
>> Bug fixes (backmp11):
>> State machine processes events although it is not running (#198)
>> Breaking changes (backmp11):
>> Events in process_event(…) are not enqueued automatically anymore to
>> reduce memory footprint, use enqueue_event(…) in actions (#178)
>> The back-end does not forward constructor arguments to the front-end
>> anymore, it must be default-constructible. To use custom
>> constructors, define them in the back-end (#232)
>> The deprecated APIs process_queued_events() and
>> process_single_queued_event() are removed, use process_event_pool(…)
>> instead
>> The default active state switch policy is set to "after source exit" in
>> compliance to the UML specification. The other options are not
>> UML-compliant and will be removed (#222)
>> The back-end uses its own process_result type with new enum values
>> instead of aliasing the enum of the back namespace. The old enum
>> values are deprecated (#242) and will be removed
>> fix(back, back11): Infinite recursion with event deferral in orthogonal
>> regions (regression from 1.78) (#184)
>> MultiIndex:
>> Fancy pointer support has been extended so that multi_index_container
>> iterators now store references to the elements through the
>> allocator’s pointer type. In particular, this means that iterators
>> can now be placed in shared memory using Boost.Interprocess allocators.
>> Fixed a performance issue with hashed indices when rehashing at very large
>> container sizes (PR#94). Contributed by Daniel Král.
>> Multiprecision:
>> Added data() member function to float128 to match the rest of the library
>> Fixed issue blocking compilation of constexpr expression templates with Clang
>> MySQL:
>> Added a way to configure which character set the server uses by default, to
>> make tracking more intelligent. This can be used to avoid redundant
>> SET NAMES statements. See pool_params::charset_strategy and
>> connect_params::server_default_charset (PR#511).
>> Reduces `pool_params::ping_interval’s default from 1h to 10s. This improves
>> the detection of broken connections (PR#512).
>> The read buffer has been optimized by reducing the frequency of data
>> rotations when incomplete messages are received (PR#501).
>> Contributed by @vsoulgard.
>> TLS certificates for CI testing are now generated dynamically, rather than
>> being committed into the repository. This cleans up reports raised
>> by vulnerability scanners (PR#505).
>> PFR:
>> C++20 Module boost.pfr is now also tested with and without import std. Many
>> thanks to Fedor Osetrov for the PR (PR#233)!
>> PolyCollection:
>> Made variant_collection_value_type_impl<Ts...>'s relational operators
>> available only when the corresponding relational operator is
>> available for all Ts..., in accordance with WG21 paper P2944R3.
>> Fixed incompatibility problem with libc++ v21 or higher (PR#34).
>> Redis:
>> Fixed a case of undefined behavior within connection when attempting to
>> cancel a request that has completed, but whose handler hasn’t been
>> called yet. This happened due to an incorrect erase-remove use with
>> a std::deque (PR#428). Contributed by @L0rentz.
>> Optimized buffer rotations to reduce CPU consumption when many small
>> messages arrive in a single network packet (PR#415).
>> Added initializers to all members in the config struct. This allows using
>> designated initializers to create config objects (PR#424).
>> Removed the standalone workflow from the CMake. This was an undocumented way
>> of consuming Boost.Redis with CMake aimed to internal development
>> (PR#409).
>> Stacktrace:
>> C++20 Modules were implemented:
>> boost.stacktrace_dump module for safe_dump interface
>> boost.stacktrace_<backend> module for each unwind/collect implementation
>> method
>> boost.stacktrace module exposing best available backend implementation.
>> Many thanks to Fedor Osetrov for the PRs (PR#230, PR#227)!
>> C++20 Module boost.stacktrace is now also tested with and without import
>> std. Many thanks to Fedor Osetrov for the PR (PR#231)!
>> Fixed Boost::from_exception link on MinGW. Many thanks to Orgad Shaneh for
>> the PR (PR#225)!
>> System:
>> Fix unwrap_and_invoke for functions returning void.
>> TypeIndex:
>> C++20 Module boost.type_index is now also tested with and without import
>> std. Many thanks to Fedor Osetrov for the PR (PR#47)!
>> Unordered:
>> Added interoperability with C++20 ranges to all the containers in the
>> library: insert_range (plus insert_range_(or|and)_[c]visit for
>> concurrent containers), std::from_range construction and associated
>> CTAD deduction guides. The boost::unordered::from_range construction
>> tag is provided as an alternative to C++23 std::from_range or when
>> this is not available.
>> Fixed a performance issue with closed-addressing containers when rehashing
>> at very large container sizes (PR#348). Contributed by Daniel Král.
>> URL:
>> Fixed a heap buffer overflow in normalize_path for authority-less URLs whose
>> normalized path begins with // (PR#995).
>> Fixed an uninitialized read in ipv6_address_rule when an embedded IPv4
>> address has no preceding h16, e.g. https://[::. (PR#994).
>> Fixed unsigned-integer-overflow sanitizer findings in case-insensitive
>> comparisons, hashing, and format (PR#994).
>> Fixed decoded query-size tracking in url_base::edit_params (PR#990).
>> Third-round security review fixes: url_view copy from a null source, two
>> incorrect noexcept specifiers, and decoded-length tracking when
>> iterating segments in reverse (PR#988).
>> Wave:
>> Introduce digit separators (C++14), module keyword (C++20), and size_t
>> literals (C++23).
>> Fixed bugs.
>> find_include_file incorrectly accepts directories as include files (#243).
>> Predefined macros (__FILE__, __LINE__, __INCLUDE_LEVEL__) are expanded
>> twice when expanding_object_like_macro returns true (#246).
>> Updated Tools
>> B2:
>> Includes release of B2 version 5.5.3.
>> Compilers Tested
>> Boost’s primary test compilers are:
>> Linux:
>> Clang, C++03: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 12.0.0, 13.0.0, 14.0.0, 15.0.0
>> Clang, C++11: 3.4, 11.0.0, 13.0.0, 14.0.0, 15.0.0
>> Clang, C++14: 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 5.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
>> Clang, C++17: 6.0.1, 7.0.0, 8.0.0, 9.0.0, 10.0.0, 11.0.0, 12.0.0, 13.0.0,
>> 14.0.0, 15.0.0
>> Clang, C++20: 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
>> GCC, C++03: 4.6.3, 11, 12
>> GCC, C++11: 4.7.3, 4.8.5, 11, 12
>> GCC, C++14: 5.4.0, 6.4.0, 7.3.0, 8.0.1, 9.1.0, 11, 12
>> GCC, C++17: 7.3.0, 8.0.1, 9.1.0, 11, 12
>> GCC, C++20: 8.0.1, 9.1.0, 10, 11, 12
>> OS X:
>> Apple Clang, C++03: 11.0.3
>> Apple Clang, C++11: 11.0.3
>> Apple Clang, C++14: 11.0.3
>> Apple Clang, C++17: 11.0.3
>> Apple Clang, C++20: 11.0.3
>> Windows:
>> Visual C++: 10.0, 11.0, 12.0, 14.0, 14.1, 14.2, 14.3
>> 1_91_0
>> General Notes
>> StaticAssert has been merged into Config. This includes code, tests and
>> documentation. For backward compatibility git submodule, CMake and b2
>> targets of StaticAssert are still available; the targets simply introduce a
>> dependency on Config. Eventually, the submodule and targets will be removed.
>> Users are recommended to update their dependencies on StaticAssert to
>> replace it with Config. No C++ code modifications are necessary. Most Boost
>> libraries have been updated accordingly.
>> New Libraries
>> Decimal:
>> An implementation of IEEE754 Decimal Floating Point Numbers, from Matt
>> Borland and Christopher Kormanyos.
>> Updated Libraries
>> Any:
>> Fixed import std detection in CMake.
>> Simplified implementation of boost::anys::basic_any.
>> Asio
>> Added optional binary versioning via an inline namespace, allowing multiple
>> Asio versions to coexist in the same process without symbol conflicts.
>> Changed the default Windows mutex implementation from CRITICAL_SECTION to
>> SRWLOCK.
>> Added a "slim" mutex implementation based on std::atomic, reducing state
>> size for strands, sockets, and other descriptors.
>> Added support for compilation under Cygwin64, including without
>> __USE_W32_SOCKETS.
>> Added the ability to override BOOST_ASIO_DECL before including Asio headers.
>> Fixed MSG_NOSIGNAL handling on NetBSD.
>> Fixed the build with recent Boost versions that no longer support linking
>> against boost_system.
>> Fixed compatibility with musl libc on older Android.
>> Fixed detection of std::aligned_alloc on older Apple platforms.
>> Fixed a warning in serial_port_base::character_size::store with MSVC.
>> Clarified the IPv4 vs IPv6 semantics of ip::multicast::outbound_interface in
>> the documentation.
>> Updated TLS v1.3 context initialisation to correctly detect LibreSSL support.
>> Fixed compatibility with recent OpenSSL API changes around X509 constness.
>> Consult the Revision History for further details.
>> Atomic:
>> Fixed compilation of thread_pause on PowerPC with Apple compilers. (#79)
>> Beast:
>> Fixed typecast warnings in inflate_with_eb.
>> Enforced 8KB sanity limit on chunk headers.
>> Made OpenSSL an optional dependency for tests.
>> Removed dependency on Boost.StaticAssert.
>> Added HTTP2-Settings to HTTP field enum.
>> Charconv:
>> Fixed overflow in to_chars of negative 128-bit integers whose absolute value
>> is less than 2^64
>> Core:
>> The header boost/is_placeholder.hpp has been moved from Bind to Core. (#90)
>> Describe:
>> Under C++20, described nested enums now work when the enclosing class is
>> still incomplete. (Thanks to Julien Blanc.)
>> Made enum_to_string constexpr. (Thanks to Julien Blanc.)
>> DynamicBitset:
>> Added a missing friend declaration for operator-(
>> const bit_iterator_base< Iter > & lhs,
>> const bit_iterator_base< Iter > & rhs ).
>> Fixed compilation with standard library implementations which use raw
>> pointers as iterators.
>> Fixed from_block_range() to prevent it from setting any bit in the unused
>> part of the bitset.
>> Exception:
>> Added customizable serialization API, built-in support for Boost.JSON and
>> nlohmann/json.
>> Filesystem:
>> Boost.Filesystem now defines and uses its own platform macros
>> BOOST_FILESYSTEM_POSIX_API and BOOST_FILESYSTEM_WINDOWS_API. The
>> old BOOST_POSIX_API and BOOST_WINDOWS_API macros are still defined
>> by Boost.System. Boost.Filesystem will check that the two sets of
>> macros are in sync and by default will fail to compile if not. The
>> compilation error can be reduced to a warning by defining
>> BOOST_FILESYSTEM_ALLOW_SYSTEM_API_MISMATCH to 1 or disabled entirely
>> by defining it to 2. Note that in this case the error code values
>> reported by Boost.Filesystem will not match the error category.
>> On POSIX platforms not supporting openat and related APIs, fixed an error
>> reported by recursive_directory_iterator increment when the iterator
>> encounters a dangling symlink and following symlinks is disabled.
>> Breaking change for Cygwin users. The library now treats Cygwin as a POSIX
>> platform. This has several user-facing consequences, in particular:
>> The path::value_type type has changed from wchar_t to char. As on other
>> POSIX platforms, wide character paths will be converted to the
>> narrow character encoding using the locale set by path::imbue. Note
>> that since Cygwin is running on top of Windows, it will also perform
>> character code conversion internally. It is important that locale in
>> the Cygwin environment is configured correctly.
>> Path syntax now follows POSIX conventions, Windows-specific paths (e.g.
>> UNC paths, drive names and path prefixes) are not supported.
>> Certain Windows-specific parts of the API will become inaccessible.
>> Since reparse points are a Windows-only feature,
>> file_type::reparse_file will not be reported for files. Reparse
>> point handling is dependent on Cygwin runtime behavior.
>> Cygwin has its own implementation of symlinks that is incompatible with
>> native Windows symlinks. Boost.Filesystem will now create and
>> operate on Cygwin symlinks.
>> Error codes reported by Boost.Filesystem will now use POSIX errno values.
>> On DragonFly BSD, NetBSD and Solaris, Boost.Filesystem default path locale
>> now uses UTF-8 for path character encoding.
>> On Linux, use read/write loop implementation of copy_file and copy for
>> configfs, securityfs, cgroup and cgroup2 filesystems, in addition to
>> the previously blacklisted filesystems.
>> JSON:
>> Changed value construction from std::initializer_list to use value_from.
>> LEAF:
>> Added customizable serialization API, built-in support for Boost.JSON and
>> nlohmann/json.
>> Added support for using LEAF error objects across DLL boundaries on Windows
>> (off by default).
>> Refinements in the internal TLS API (e.g. Win32, embedded).
>> Improvements in the diagnostics system and in the on_error implementation.
>> Implementation quality improvements (e.g. more precise use of noexcept).
>> Removed the deprecated verbose_diagnostic_info (replaced by diagnostic_details).
>> LexicalCast:
>> Implemented initial version of C++20 module boost.lexical_cast.
>> Log:
>> Enabled building interprocess communication support on Cygwin by default.
>> Math:
>> Added find_non_centrality finding function for non_central_f_distribution
>> Added parameter finding function for non_central_t_distribution
>> Added function for the log of the incomplete gamma function, lgamma_q
>> Added function for the log of the lower incomplete gamma function, lgamma_p
>> Added domain() function for pchip
>> Fixed broken CUDA support in the logistic distribution
>> Fixed incorrect floating point traits for Windows on ARM64
>> Fixed incorrect result ibeta for large arguments
>> Fixed incorrect ellint_2 for N * PI / 2 for phi argument.
>> Require user to explicitly enable CUDA rather than assuming based off
>> presence of NVCC
>> MultiIndex:
>> Breaking change: All type lists accepted or provided by the library
>> (indexed_by, tag, nested typedefs index_specifier_type_list,
>> index_type_list, iterator_type_list and const_iterator_type_list)
>> are no longer based on Boost.MPL but instead they are now Boost.Mp11
>> lists. As a result, Boost.MultiIndex doesn’t depend anymore on
>> Boost.MPL. It is expected that most user code won’t be impacted by
>> this change, but the previous behavior may be restored, however, by
>> globally defining the macro BOOST_MULTI_INDEX_ENABLE_MPL_SUPPORT.
>> Legacy support for Boost.MPL may be eventually deprecated and
>> removed in the future.
>> Breaking change: composite_key and associated class templates
>> (composite_key_equal_to, composite_key_compare, composite_key_hash)
>> have been made variadic (previously the maximum number of template
>> arguments was limited by
>> BOOST_MULTI_INDEX_LIMIT_COMPOSITE_KEY_SIZE). This change should be
>> transparent to users, with the exception that
>> composite_key::key_extractors returns a std::tuple instead of a
>> boost::tuple (and similarly for the rest of affected class templates).
>> Removed internal workarounds and fallbacks to support pre-C++11 compilers.
>> MSM:
>> New features (backmp11):
>> Improve support for the deferred_events property in hierarchical state
>> machines (#173)
>> Support conditional deferral with the deferred_events property (#155)
>> Simplified functor signatures (#175)
>> Merge queued and deferred events into a single event pool (#168)
>> Small object optimization for events in the event pool (#172)
>> Improve runtime performance with a flat_fold dispatch strategy (#180)
>> Further optimize compilation, with up to 25% faster compile times and
>> lower RAM consumption compared to version 1.90
>> Bug fixes (backmp11):
>> Incorrect FSM type in calls to on_entry(…) and on_exit(…) (#167)
>> Completion events fire too often (#166)
>> Transitions in hierarchical state machines are not selected correctly
>> (favor_compile_time) (#200)
>> state_machine cannot be moved (#205)
>> Breaking change (backmp11): Direct access to the event pool is changed from
>> public to protected, because manipulating it outside of the library
>> code can lead to undefined behavior.
>> OpenMethod:
>> Inter-operation with boost::intrusive_ptr.
>> Optional:
>> For compilers with full C++11 support (including "unrestricted unions" and
>> ref-qualifiers) changed the implementation from aligned storage to
>> union storage. This enables the gradual constexpr support:
>> In C++11, some constructors and const-qualified accessors become usable
>> in compile-time contexts (are core constant expressions) for types
>> satisfying certain constraints.
>> In C++14 even some mutating operations become core constant expressions
>> (those that do not require changing the state of optional from not
>> having a value to having a value), for co-operating types.
>> In C++17 all constructors (including copy and move) become core constant
>> expressions for co-operating types.
>> This addresses issues #132 and #143.
>> Breaking change. Abandoned the mechanism for customizing swap. Hardly anyone
>> knows about this mechanism and it was never documented.
>> Applied a couple of small changes to get closer to the interface of
>> std::optional:
>> Enabled syntax o = {} for putting optional objects to no-value state.
>> Enabled syntax o.value_or({}), which uses a default-constructed T.
>> Construct o = u, where o is of type optional<T> and u is of type U
>> convertible to T, does not create a temporary T.
>> Added a conversion from optional<T>& to optional<T&>. This addresses #142.
>> none_t is now std::equality_comparable, which means that none_t and
>> optional<T> model concept std::equality_comparable_with (for
>> std::equality_comparable T), which means that you can
>> std::ranges::find(rng, boost::none) for a range of optional objects.
>> Warning. In the future releases we intend to introduce the range interface
>> in optional, so that std::ranges::range<optional<T>> will be true.
>> This will affect the overload resolution in programs in certain
>> cases that make decisions based on predicates such as
>> std::ranges::range. For instance, the following code will start
>> behaving differently:
>> template <typename T>
>> void serialize(T const& v)
>> {
>> if constexpr (std::ranges::range<T>)
>> serialize_as_range(v);
>> else if constexpr (custom::is_optional_like<T>)
>> serialize_as_optional(v);
>> else
>> serialize_as_value(v);
>> }
>> PFR:
>> Added experimental C++26 Reflection based implementation. Define
>> BOOST_PFR_USE_CPP26_REFLECTION macro to 1 to enable.
>> boost::pfr::for_each_field*() functions now work well with stateful visitors.
>> Random:
>> Fixed unsigned types in binomial_distribution being inadvertently unsupported.
>> Redis:
>> Added built-in support for Sentinel deployments, which can be configured
>> using config::sentinel. The library handles master/replica
>> discovery, error detection, and reconnection automatically (PR#345,
>> PR#391, #237).
>> Added generic_flat_response, a high-performance replacement for
>> flat_response that uses contiguous memory and performs zero
>> allocations in steady state. Many thanks to Nikolai Vladimirov for
>> the PR (PR#340, PR#356, PR#358, PR#378, PR#383, #263).
>> General improvements to server push handling:
>> Added support for subscription tracking, which restores active
>> subscriptions after each reconnection. Can be accessed using
>> request::subscribe, request::psubscribe, request::unsubscribe and
>> request::punsubscribe (PR#375, #367).
>> Added push_parser, a view that facilitates parsing PubSub-related
>> messages (PR#390, #349).
>> connection::async_receive and connection::receive are now deprecated.
>> Users should prefer async_receive2, which allows for faster batch
>> processing (PR#381, PR#340, #331).
>> consume_one is now deprecated. Users should prefer
>> generic_flat_response::clear, instead. See the PubSub examples for
>> more details.
>> Improved the documentation and examples.
>> config::username, config::password, config::client_name and
>> config::database_index are now deprecated. Users should prefer
>> config::setup, instead. Added request::hello and
>> request::hello_setname to simplify composing setup requests (PR#392).
>> Log message levels have been adjusted to be more relevant: level::error for
>> configuration and network errors, level::info for successful
>> connection attempts, and level::debug for verbose output (PR#389, #395).
>> Added request::append() to concatenate request objects (PR#342, #341).
>> Fixed a problem causing request::push_range to generate invalid commands
>> when passed a range with std::tuple elements (PR#363, #360).
>> Removed <ostream> from public headers to make them more lightweight
>> (PR#364, #361).
>> Stacktrace:
>> Removed the compile time check for a possibly incompatible runtime. As a
>> result there are no false positives and the from_exception
>> functionality just works out-of-the-box. Rare cases of
>> incompatible/leaking runtimes are now reported at runtime.
>> Disable from_exception on cygwin (PR#219). Many thanks to David McFarland
>> for the PR!
>> Removed the has_addr2line link with C Standard Library to simplify builds
>> with non system-default `libstdc.so`
>> System:
>> The return type of operator|(result<T&>, U) has been changed to non-reference.
>> Pointers to members in r & f are now supported (by using boost::compat::invoke).
>> A CMake config file is now installed, even though the library is
>> header-only. This avoids breaking third-party CMakeLists.txt files
>> that contain find_package(Boost COMPONENTS system …).
>> error_code is now even more constexpr under C++20 and later.
>> Added unsafe_value to result.
>> Changed result<>::operator* and result<>::operator-> to throw when
>> !has_value(), instead of having that as a precondition. The old
>> behavior is now spelled unsafe_value().
>> Added boost/system/unwrap_and_invoke.hpp.
>> Test:
>> Add friend operators for proper comparisons of std::optional with GCC < 10
>> TypeIndex:
>> Optimized CTTI type comparisons starting from C++20.
>> ctti_type_index::name() now returns pretty value by default in C+\+14 and
>> more modern C\+\+ standards. Reduced the size of library binaries.
>> Unordered:
>> Fixed the returned value of range insertion in concurrent containers (PR#344).
>> UUID:
>> Added from_chars to boost/uuid/uuid_io.hpp.
>> Added a noexcept operator() overload to string_generator.
>> string_generator now supports the Unicode character types in addition to
>> char and wchar_t.
>> Most uuid accessors, operations, and to_chars are now constexpr when
>> possible (on C++14 and higher and on recent compilers).
>> Added SIMD implementation of to_chars, which can offer up to 5.5x
>> performance improvement in UUID formatting. (Andrey Semashev)
>> Added SIMD implementation of from_chars, which can offer up to 13x
>> performance improvement in UUID parsing. (Andrey Semashev)
>> Added uuid_from_string to boost/uuid/uuid_io.hpp.
>> Added a dedicated invalid_uuid exception class, derived from
>> std::runtime_error for backward compatibility.
>> URL:
>> Features:
>> All parse functions are now constexpr under C++20, enabling compile-time
>> URL parsing and validation (PR#976).
>> Added get_or for query containers, returning a default value when a key
>> is not present (PR#953).
>> Added standalone decode and decoded_size free functions (PR#952).
>> Added user-provided RangeRule support for grammar::range, allowing
>> custom grammar rules (PR#950).
>> Specialized std::ranges::enable_borrowed_range for all view types (PR#966).
>> Added EBO and default construction for token_rule_t (PR#964).
>> Added natvis visualizers for segments (PR#962).
>> Performance:
>> Internal URL offsets changed from size_t to uint32_t, reducing object
>> size on 64-bit platforms (PR#969).
>> Fixes:
>> normalize_path ambiguity from dot-dot cancellation (PR#986).
>> parse_query guard for empty string_view inputs (PR#949).
>> params_iter_impl::decrement() decoded size for values containing = (PR#978).
>> decode_view::remove_prefix/remove_suffix assertion (PR#978).
>> decode_view completeness for pct_string_view::operator*() (PR#963).
>> Example router is now move-only (PR#959).
>> GCC false-positive -Wmaybe-uninitialized in tuple_rule (PR#981).
>> Security review by Laurel Lye Systems Engineering: three rounds of
>> assessment, 21 confirmed fixes, public interface boundary tests and
>> fuzz tests added (PR#982, PR#988).
>> Documentation:
>> Added design rationale page (PR#987).
>> Documented plus scheme convention (PR#970).
>> Removed legacy QuickBook documentation.
>> Variant2:
>> holds_alternative<T> and get<T> have been relaxed to no longer require T to
>> occur exactly once in the list of alternatives. It now must occur at
>> least once.
>> Compilers Tested
>> Boost’s primary test compilers are:
>> Linux:
>> Clang, C++03: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 12.0.0, 13.0.0, 14.0.0, 15.0.0
>> Clang, C++11: 3.4, 11.0.0, 13.0.0, 14.0.0, 15.0.0
>> Clang, C++14: 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 5.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
>> Clang, C++17: 6.0.1, 7.0.0, 8.0.0, 9.0.0, 10.0.0, 11.0.0, 12.0.0, 13.0.0,
>> 14.0.0, 15.0.0
>> Clang, C++20: 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
>> GCC, C++03: 4.6.3, 11, 12
>> GCC, C++11: 4.7.3, 4.8.5, 11, 12
>> GCC, C++14: 5.4.0, 6.4.0, 7.3.0, 8.0.1, 9.1.0, 11, 12
>> GCC, C++17: 7.3.0, 8.0.1, 9.1.0, 11, 12
>> GCC, C++20: 8.0.1, 9.1.0, 10, 11, 12
>> OS X:
>> Apple Clang, C++03: 11.0.3
>> Apple Clang, C++11: 11.0.3
>> Apple Clang, C++14: 11.0.3
>> Apple Clang, C++17: 11.0.3
>> Apple Clang, C++20: 11.0.3
>> Windows:
>> Visual C++: 10.0, 11.0, 12.0, 14.0, 14.1, 14.2, 14.3
>>
>> Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
>> ---
>> config/rootfiles/common/aarch64/boost | 1097 ++++++++++++++++++------
>> config/rootfiles/common/riscv64/boost | 1097 ++++++++++++++++++------
>> config/rootfiles/common/x86_64/boost | 1121 ++++++++++++++++++-------
>> lfs/boost | 9 +-
>> 4 files changed, 2521 insertions(+), 803 deletions(-)
>>
>> diff --git a/config/rootfiles/common/aarch64/boost b/config/rootfiles/common/aarch64/boost
>> index e592447a3..20cf81625 100644
>> --- a/config/rootfiles/common/aarch64/boost
>> +++ b/config/rootfiles/common/aarch64/boost
>> @@ -439,6 +439,7 @@
>> #usr/include/boost/asio/detail/array_fwd.hpp
>> #usr/include/boost/asio/detail/assert.hpp
>> #usr/include/boost/asio/detail/atomic_count.hpp
>> +#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
>> #usr/include/boost/asio/detail/base_from_cancellation_state.hpp
>> #usr/include/boost/asio/detail/base_from_completion_cond.hpp
>> #usr/include/boost/asio/detail/bind_handler.hpp
>> @@ -477,6 +478,7 @@
>> #usr/include/boost/asio/detail/fd_set_adapter.hpp
>> #usr/include/boost/asio/detail/fenced_block.hpp
>> #usr/include/boost/asio/detail/functional.hpp
>> +#usr/include/boost/asio/detail/futex_slim_mutex.hpp
>> #usr/include/boost/asio/detail/future.hpp
>> #usr/include/boost/asio/detail/global.hpp
>> #usr/include/boost/asio/detail/handler_alloc_helpers.hpp
>> @@ -527,6 +529,7 @@
>> #usr/include/boost/asio/detail/impl/thread_context.ipp
>> #usr/include/boost/asio/detail/impl/throw_error.ipp
>> #usr/include/boost/asio/detail/impl/timer_queue_set.ipp
>> +#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_event.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
>> @@ -534,7 +537,6 @@
>> #usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
>> -#usr/include/boost/asio/detail/impl/win_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
>> #usr/include/boost/asio/detail/impl/win_static_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_thread.ipp
>> @@ -641,6 +643,7 @@
>> #usr/include/boost/asio/detail/signal_init.hpp
>> #usr/include/boost/asio/detail/signal_op.hpp
>> #usr/include/boost/asio/detail/signal_set_service.hpp
>> +#usr/include/boost/asio/detail/slim_mutex.hpp
>> #usr/include/boost/asio/detail/socket_holder.hpp
>> #usr/include/boost/asio/detail/socket_ops.hpp
>> #usr/include/boost/asio/detail/socket_option.hpp
>> @@ -674,6 +677,7 @@
>> #usr/include/boost/asio/detail/utility.hpp
>> #usr/include/boost/asio/detail/wait_handler.hpp
>> #usr/include/boost/asio/detail/wait_op.hpp
>> +#usr/include/boost/asio/detail/win_critsec_mutex.hpp
>> #usr/include/boost/asio/detail/win_event.hpp
>> #usr/include/boost/asio/detail/win_fd_set_adapter.hpp
>> #usr/include/boost/asio/detail/win_global.hpp
>> @@ -731,8 +735,6 @@
>> #usr/include/boost/asio/execution/context.hpp
>> #usr/include/boost/asio/execution/context_as.hpp
>> #usr/include/boost/asio/execution/executor.hpp
>> -#usr/include/boost/asio/execution/impl
>> -#usr/include/boost/asio/execution/impl/bad_executor.ipp
>> #usr/include/boost/asio/execution/inline_exception_handling.hpp
>> #usr/include/boost/asio/execution/invocable_archetype.hpp
>> #usr/include/boost/asio/execution/mapping.hpp
>> @@ -782,6 +784,7 @@
>> #usr/include/boost/asio/experimental/use_coro.hpp
>> #usr/include/boost/asio/experimental/use_promise.hpp
>> #usr/include/boost/asio/file_base.hpp
>> +#usr/include/boost/asio/fwd.hpp
>> #usr/include/boost/asio/generic
>> #usr/include/boost/asio/generic/basic_endpoint.hpp
>> #usr/include/boost/asio/generic/datagram_protocol.hpp
>> @@ -820,10 +823,8 @@
>> #usr/include/boost/asio/impl/execution_context.hpp
>> #usr/include/boost/asio/impl/execution_context.ipp
>> #usr/include/boost/asio/impl/executor.hpp
>> -#usr/include/boost/asio/impl/executor.ipp
>> #usr/include/boost/asio/impl/io_context.hpp
>> #usr/include/boost/asio/impl/io_context.ipp
>> -#usr/include/boost/asio/impl/multiple_exceptions.ipp
>> #usr/include/boost/asio/impl/prepend.hpp
>> #usr/include/boost/asio/impl/read.hpp
>> #usr/include/boost/asio/impl/read_at.hpp
>> @@ -1511,6 +1512,7 @@
>> #usr/include/boost/bimap/detail/map_view_base.hpp
>> #usr/include/boost/bimap/detail/map_view_iterator.hpp
>> #usr/include/boost/bimap/detail/modifier_adaptor.hpp
>> +#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
>> #usr/include/boost/bimap/detail/non_unique_views_helper.hpp
>> #usr/include/boost/bimap/detail/set_view_base.hpp
>> #usr/include/boost/bimap/detail/set_view_iterator.hpp
>> @@ -2390,11 +2392,13 @@
>> #usr/include/boost/container/detail/addressof.hpp
>> #usr/include/boost/container/detail/advanced_insert_int.hpp
>> #usr/include/boost/container/detail/algorithm.hpp
>> +#usr/include/boost/container/detail/aligned_allocation.hpp
>> #usr/include/boost/container/detail/alloc_helpers.hpp
>> #usr/include/boost/container/detail/alloc_lib.h
>> #usr/include/boost/container/detail/allocation_type.hpp
>> #usr/include/boost/container/detail/allocator_version_traits.hpp
>> #usr/include/boost/container/detail/auto_link.hpp
>> +#usr/include/boost/container/detail/bit_utilities.hpp
>> #usr/include/boost/container/detail/block_list.hpp
>> #usr/include/boost/container/detail/block_slist.hpp
>> #usr/include/boost/container/detail/compare_functors.hpp
>> @@ -2404,12 +2408,14 @@
>> #usr/include/boost/container/detail/container_or_allocator_rebind.hpp
>> #usr/include/boost/container/detail/container_rebind.hpp
>> #usr/include/boost/container/detail/copy_move_algo.hpp
>> +#usr/include/boost/container/detail/deque_impl.hpp
>> #usr/include/boost/container/detail/destroyers.hpp
>> #usr/include/boost/container/detail/dispatch_uses_allocator.hpp
>> #usr/include/boost/container/detail/dlmalloc.hpp
>> #usr/include/boost/container/detail/flat_tree.hpp
>> #usr/include/boost/container/detail/function_detector.hpp
>> #usr/include/boost/container/detail/guards_dended.hpp
>> +#usr/include/boost/container/detail/is_constructible.hpp
>> #usr/include/boost/container/detail/is_container.hpp
>> #usr/include/boost/container/detail/is_contiguous_container.hpp
>> #usr/include/boost/container/detail/is_pair.hpp
>> @@ -2434,6 +2440,7 @@
>> #usr/include/boost/container/detail/pool_common.hpp
>> #usr/include/boost/container/detail/pool_common_alloc.hpp
>> #usr/include/boost/container/detail/pool_resource.hpp
>> +#usr/include/boost/container/detail/range_utils.hpp
>> #usr/include/boost/container/detail/singleton.hpp
>> #usr/include/boost/container/detail/std_fwd.hpp
>> #usr/include/boost/container/detail/thread_mutex.hpp
>> @@ -2446,8 +2453,60 @@
>> #usr/include/boost/container/detail/version_type.hpp
>> #usr/include/boost/container/detail/workaround.hpp
>> #usr/include/boost/container/devector.hpp
>> +#usr/include/boost/container/experimental
>> +#usr/include/boost/container/experimental/nest.hpp
>> +#usr/include/boost/container/experimental/pmr
>> +#usr/include/boost/container/experimental/pmr/nest.hpp
>> +#usr/include/boost/container/experimental/segmented_all_of.hpp
>> +#usr/include/boost/container/experimental/segmented_any_of.hpp
>> +#usr/include/boost/container/experimental/segmented_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_copy_if.hpp
>> +#usr/include/boost/container/experimental/segmented_copy_n.hpp
>> +#usr/include/boost/container/experimental/segmented_count.hpp
>> +#usr/include/boost/container/experimental/segmented_count_if.hpp
>> +#usr/include/boost/container/experimental/segmented_equal.hpp
>> +#usr/include/boost/container/experimental/segmented_fill.hpp
>> +#usr/include/boost/container/experimental/segmented_fill_n.hpp
>> +#usr/include/boost/container/experimental/segmented_find.hpp
>> +#usr/include/boost/container/experimental/segmented_find_if.hpp
>> +#usr/include/boost/container/experimental/segmented_find_if_not.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last_if.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
>> +#usr/include/boost/container/experimental/segmented_for_each.hpp
>> +#usr/include/boost/container/experimental/segmented_generate.hpp
>> +#usr/include/boost/container/experimental/segmented_generate_n.hpp
>> +#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
>> +#usr/include/boost/container/experimental/segmented_is_sorted.hpp
>> +#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
>> +#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
>> +#usr/include/boost/container/experimental/segmented_merge.hpp
>> +#usr/include/boost/container/experimental/segmented_mismatch.hpp
>> +#usr/include/boost/container/experimental/segmented_none_of.hpp
>> +#usr/include/boost/container/experimental/segmented_partition.hpp
>> +#usr/include/boost/container/experimental/segmented_partition_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_partition_point.hpp
>> +#usr/include/boost/container/experimental/segmented_remove.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_if.hpp
>> +#usr/include/boost/container/experimental/segmented_replace.hpp
>> +#usr/include/boost/container/experimental/segmented_replace_if.hpp
>> +#usr/include/boost/container/experimental/segmented_reverse.hpp
>> +#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_search.hpp
>> +#usr/include/boost/container/experimental/segmented_search_n.hpp
>> +#usr/include/boost/container/experimental/segmented_set_difference.hpp
>> +#usr/include/boost/container/experimental/segmented_set_intersection.hpp
>> +#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
>> +#usr/include/boost/container/experimental/segmented_set_union.hpp
>> +#usr/include/boost/container/experimental/segmented_stable_partition.hpp
>> +#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
>> +#usr/include/boost/container/experimental/segmented_transform.hpp
>> +#usr/include/boost/container/experimental/wrapped_iterator.hpp
>> #usr/include/boost/container/flat_map.hpp
>> #usr/include/boost/container/flat_set.hpp
>> +#usr/include/boost/container/hub.hpp
>> #usr/include/boost/container/list.hpp
>> #usr/include/boost/container/map.hpp
>> #usr/include/boost/container/new_allocator.hpp
>> @@ -2460,6 +2519,7 @@
>> #usr/include/boost/container/pmr/flat_map.hpp
>> #usr/include/boost/container/pmr/flat_set.hpp
>> #usr/include/boost/container/pmr/global_resource.hpp
>> +#usr/include/boost/container/pmr/hub.hpp
>> #usr/include/boost/container/pmr/list.hpp
>> #usr/include/boost/container/pmr/map.hpp
>> #usr/include/boost/container/pmr/memory_resource.hpp
>> @@ -2467,6 +2527,7 @@
>> #usr/include/boost/container/pmr/polymorphic_allocator.hpp
>> #usr/include/boost/container/pmr/pool_options.hpp
>> #usr/include/boost/container/pmr/resource_adaptor.hpp
>> +#usr/include/boost/container/pmr/segtor.hpp
>> #usr/include/boost/container/pmr/set.hpp
>> #usr/include/boost/container/pmr/slist.hpp
>> #usr/include/boost/container/pmr/small_vector.hpp
>> @@ -2477,6 +2538,7 @@
>> #usr/include/boost/container/pmr/vector.hpp
>> #usr/include/boost/container/scoped_allocator.hpp
>> #usr/include/boost/container/scoped_allocator_fwd.hpp
>> +#usr/include/boost/container/segtor.hpp
>> #usr/include/boost/container/set.hpp
>> #usr/include/boost/container/slist.hpp
>> #usr/include/boost/container/small_vector.hpp
>> @@ -2485,6 +2547,7 @@
>> #usr/include/boost/container/string.hpp
>> #usr/include/boost/container/throw_exception.hpp
>> #usr/include/boost/container/uses_allocator.hpp
>> +#usr/include/boost/container/uses_allocator_construction.hpp
>> #usr/include/boost/container/uses_allocator_fwd.hpp
>> #usr/include/boost/container/vector.hpp
>> #usr/include/boost/container_hash
>> @@ -2605,6 +2668,9 @@
>> #usr/include/boost/contract/override.hpp
>> #usr/include/boost/contract/public_function.hpp
>> #usr/include/boost/contract_macro.hpp
>> +#usr/include/boost/conversion
>> +#usr/include/boost/conversion/detail
>> +#usr/include/boost/conversion/detail/config.hpp
>> #usr/include/boost/convert
>> #usr/include/boost/convert.hpp
>> #usr/include/boost/convert/base.hpp
>> @@ -2865,6 +2931,211 @@
>> #usr/include/boost/date_time/tz_db_base.hpp
>> #usr/include/boost/date_time/wrapping_int.hpp
>> #usr/include/boost/date_time/year_month_day.hpp
>> +#usr/include/boost/decimal
>> +#usr/include/boost/decimal.hpp
>> +#usr/include/boost/decimal/bid_conversion.hpp
>> +#usr/include/boost/decimal/cfenv.hpp
>> +#usr/include/boost/decimal/cfloat.hpp
>> +#usr/include/boost/decimal/charconv.hpp
>> +#usr/include/boost/decimal/cmath.hpp
>> +#usr/include/boost/decimal/cstdio.hpp
>> +#usr/include/boost/decimal/cstdlib.hpp
>> +#usr/include/boost/decimal/decimal128_t.hpp
>> +#usr/include/boost/decimal/decimal32_t.hpp
>> +#usr/include/boost/decimal/decimal64_t.hpp
>> +#usr/include/boost/decimal/decimal_fast128_t.hpp
>> +#usr/include/boost/decimal/decimal_fast32_t.hpp
>> +#usr/include/boost/decimal/decimal_fast64_t.hpp
>> +#usr/include/boost/decimal/detail
>> +#usr/include/boost/decimal/detail/add_impl.hpp
>> +#usr/include/boost/decimal/detail/apply_sign.hpp
>> +#usr/include/boost/decimal/detail/attributes.hpp
>> +#usr/include/boost/decimal/detail/bit_cast.hpp
>> +#usr/include/boost/decimal/detail/bit_layouts.hpp
>> +#usr/include/boost/decimal/detail/buffer_sizing.hpp
>> +#usr/include/boost/decimal/detail/chars_format.hpp
>> +#usr/include/boost/decimal/detail/check_non_finite.hpp
>> +#usr/include/boost/decimal/detail/cmath
>> +#usr/include/boost/decimal/detail/cmath/abs.hpp
>> +#usr/include/boost/decimal/detail/cmath/acos.hpp
>> +#usr/include/boost/decimal/detail/cmath/acosh.hpp
>> +#usr/include/boost/decimal/detail/cmath/asin.hpp
>> +#usr/include/boost/decimal/detail/cmath/asinh.hpp
>> +#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
>> +#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
>> +#usr/include/boost/decimal/detail/cmath/atan.hpp
>> +#usr/include/boost/decimal/detail/cmath/atan2.hpp
>> +#usr/include/boost/decimal/detail/cmath/atanh.hpp
>> +#usr/include/boost/decimal/detail/cmath/beta.hpp
>> +#usr/include/boost/decimal/detail/cmath/cbrt.hpp
>> +#usr/include/boost/decimal/detail/cmath/ceil.hpp
>> +#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
>> +#usr/include/boost/decimal/detail/cmath/cos.hpp
>> +#usr/include/boost/decimal/detail/cmath/cosh.hpp
>> +#usr/include/boost/decimal/detail/cmath/decompose.hpp
>> +#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
>> +#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
>> +#usr/include/boost/decimal/detail/cmath/erf.hpp
>> +#usr/include/boost/decimal/detail/cmath/exp.hpp
>> +#usr/include/boost/decimal/detail/cmath/exp2.hpp
>> +#usr/include/boost/decimal/detail/cmath/expm1.hpp
>> +#usr/include/boost/decimal/detail/cmath/fabs.hpp
>> +#usr/include/boost/decimal/detail/cmath/fdim.hpp
>> +#usr/include/boost/decimal/detail/cmath/floor.hpp
>> +#usr/include/boost/decimal/detail/cmath/fma.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmax.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmin.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmod.hpp
>> +#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
>> +#usr/include/boost/decimal/detail/cmath/frexp.hpp
>> +#usr/include/boost/decimal/detail/cmath/frexp10.hpp
>> +#usr/include/boost/decimal/detail/cmath/hermite.hpp
>> +#usr/include/boost/decimal/detail/cmath/hypot.hpp
>> +#usr/include/boost/decimal/detail/cmath/ilogb.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl
>> +#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/isfinite.hpp
>> +#usr/include/boost/decimal/detail/cmath/isgreater.hpp
>> +#usr/include/boost/decimal/detail/cmath/isless.hpp
>> +#usr/include/boost/decimal/detail/cmath/isunordered.hpp
>> +#usr/include/boost/decimal/detail/cmath/laguerre.hpp
>> +#usr/include/boost/decimal/detail/cmath/ldexp.hpp
>> +#usr/include/boost/decimal/detail/cmath/legendre.hpp
>> +#usr/include/boost/decimal/detail/cmath/lgamma.hpp
>> +#usr/include/boost/decimal/detail/cmath/log.hpp
>> +#usr/include/boost/decimal/detail/cmath/log10.hpp
>> +#usr/include/boost/decimal/detail/cmath/log1p.hpp
>> +#usr/include/boost/decimal/detail/cmath/log2.hpp
>> +#usr/include/boost/decimal/detail/cmath/logb.hpp
>> +#usr/include/boost/decimal/detail/cmath/modf.hpp
>> +#usr/include/boost/decimal/detail/cmath/nan.hpp
>> +#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
>> +#usr/include/boost/decimal/detail/cmath/next.hpp
>> +#usr/include/boost/decimal/detail/cmath/normalize.hpp
>> +#usr/include/boost/decimal/detail/cmath/pow.hpp
>> +#usr/include/boost/decimal/detail/cmath/remainder.hpp
>> +#usr/include/boost/decimal/detail/cmath/remquo.hpp
>> +#usr/include/boost/decimal/detail/cmath/rescale.hpp
>> +#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
>> +#usr/include/boost/decimal/detail/cmath/rint.hpp
>> +#usr/include/boost/decimal/detail/cmath/round.hpp
>> +#usr/include/boost/decimal/detail/cmath/sin.hpp
>> +#usr/include/boost/decimal/detail/cmath/sinh.hpp
>> +#usr/include/boost/decimal/detail/cmath/sqrt.hpp
>> +#usr/include/boost/decimal/detail/cmath/tan.hpp
>> +#usr/include/boost/decimal/detail/cmath/tanh.hpp
>> +#usr/include/boost/decimal/detail/cmath/tgamma.hpp
>> +#usr/include/boost/decimal/detail/cmath/trunc.hpp
>> +#usr/include/boost/decimal/detail/comparison.hpp
>> +#usr/include/boost/decimal/detail/components.hpp
>> +#usr/include/boost/decimal/detail/concepts.hpp
>> +#usr/include/boost/decimal/detail/config.hpp
>> +#usr/include/boost/decimal/detail/construction_sign.hpp
>> +#usr/include/boost/decimal/detail/countl.hpp
>> +#usr/include/boost/decimal/detail/div_impl.hpp
>> +#usr/include/boost/decimal/detail/fast_float
>> +#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
>> +#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
>> +#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
>> +#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
>> +#usr/include/boost/decimal/detail/fenv_rounding.hpp
>> +#usr/include/boost/decimal/detail/formatting_limits.hpp
>> +#usr/include/boost/decimal/detail/from_chars_impl.hpp
>> +#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
>> +#usr/include/boost/decimal/detail/from_chars_result.hpp
>> +#usr/include/boost/decimal/detail/fwd_log.hpp
>> +#usr/include/boost/decimal/detail/i256.hpp
>> +#usr/include/boost/decimal/detail/int128
>> +#usr/include/boost/decimal/detail/int128.hpp
>> +#usr/include/boost/decimal/detail/int128/bit.hpp
>> +#usr/include/boost/decimal/detail/int128/climits.hpp
>> +#usr/include/boost/decimal/detail/int128/cstdlib.hpp
>> +#usr/include/boost/decimal/detail/int128/detail
>> +#usr/include/boost/decimal/detail/int128/detail/clz.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/config.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/constants.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/traits.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
>> +#usr/include/boost/decimal/detail/int128/fmt_format.hpp
>> +#usr/include/boost/decimal/detail/int128/format.hpp
>> +#usr/include/boost/decimal/detail/int128/int128.hpp
>> +#usr/include/boost/decimal/detail/int128/iostream.hpp
>> +#usr/include/boost/decimal/detail/int128/limits.hpp
>> +#usr/include/boost/decimal/detail/int128/literals.hpp
>> +#usr/include/boost/decimal/detail/int128/numeric.hpp
>> +#usr/include/boost/decimal/detail/int128/random.hpp
>> +#usr/include/boost/decimal/detail/int128/string.hpp
>> +#usr/include/boost/decimal/detail/integer_search_trees.hpp
>> +#usr/include/boost/decimal/detail/io.hpp
>> +#usr/include/boost/decimal/detail/is_power_of_10.hpp
>> +#usr/include/boost/decimal/detail/locale_conversion.hpp
>> +#usr/include/boost/decimal/detail/memcpy.hpp
>> +#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
>> +#usr/include/boost/decimal/detail/mod_impl.hpp
>> +#usr/include/boost/decimal/detail/mul_impl.hpp
>> +#usr/include/boost/decimal/detail/normalize.hpp
>> +#usr/include/boost/decimal/detail/parser.hpp
>> +#usr/include/boost/decimal/detail/power_tables.hpp
>> +#usr/include/boost/decimal/detail/promote_significand.hpp
>> +#usr/include/boost/decimal/detail/promotion.hpp
>> +#usr/include/boost/decimal/detail/quantize_impl.hpp
>> +#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
>> +#usr/include/boost/decimal/detail/ryu
>> +#usr/include/boost/decimal/detail/ryu/generic_128.hpp
>> +#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
>> +#usr/include/boost/decimal/detail/shrink_significand.hpp
>> +#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
>> +#usr/include/boost/decimal/detail/to_chars_result.hpp
>> +#usr/include/boost/decimal/detail/to_decimal.hpp
>> +#usr/include/boost/decimal/detail/to_float.hpp
>> +#usr/include/boost/decimal/detail/to_integral.hpp
>> +#usr/include/boost/decimal/detail/type_traits.hpp
>> +#usr/include/boost/decimal/detail/u256.hpp
>> +#usr/include/boost/decimal/detail/utilities.hpp
>> +#usr/include/boost/decimal/detail/write_payload.hpp
>> +#usr/include/boost/decimal/dpd_conversion.hpp
>> +#usr/include/boost/decimal/fmt_format.hpp
>> +#usr/include/boost/decimal/format.hpp
>> +#usr/include/boost/decimal/fwd.hpp
>> +#usr/include/boost/decimal/hash.hpp
>> +#usr/include/boost/decimal/iostream.hpp
>> +#usr/include/boost/decimal/literals.hpp
>> +#usr/include/boost/decimal/numbers.hpp
>> +#usr/include/boost/decimal/string.hpp
>> +#usr/include/boost/decimal/uint128_t.hpp
>> #usr/include/boost/describe
>> #usr/include/boost/describe.hpp
>> #usr/include/boost/describe/bases.hpp
>> @@ -2909,7 +3180,6 @@
>> #usr/include/boost/detail/is_sorted.hpp
>> #usr/include/boost/detail/is_xxx.hpp
>> #usr/include/boost/detail/iterator.hpp
>> -#usr/include/boost/detail/lcast_precision.hpp
>> #usr/include/boost/detail/lightweight_main.hpp
>> #usr/include/boost/detail/lightweight_mutex.hpp
>> #usr/include/boost/detail/lightweight_test.hpp
>> @@ -2993,6 +3263,7 @@
>> #usr/include/boost/dll/config.hpp
>> #usr/include/boost/dll/detail
>> #usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
>> +#usr/include/boost/dll/detail/config.hpp
>> #usr/include/boost/dll/detail/ctor_dtor.hpp
>> #usr/include/boost/dll/detail/demangling
>> #usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
>> @@ -3057,6 +3328,7 @@
>> #usr/include/boost/exception/current_exception_cast.hpp
>> #usr/include/boost/exception/detail
>> #usr/include/boost/exception/detail/clone_current_exception.hpp
>> +#usr/include/boost/exception/detail/encoder.hpp
>> #usr/include/boost/exception/detail/error_info_impl.hpp
>> #usr/include/boost/exception/detail/exception_ptr.hpp
>> #usr/include/boost/exception/detail/is_output_streamable.hpp
>> @@ -3080,6 +3352,9 @@
>> #usr/include/boost/exception/get_error_info.hpp
>> #usr/include/boost/exception/info.hpp
>> #usr/include/boost/exception/info_tuple.hpp
>> +#usr/include/boost/exception/serialization
>> +#usr/include/boost/exception/serialization/boost_json_encoder.hpp
>> +#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
>> #usr/include/boost/exception/to_string.hpp
>> #usr/include/boost/exception/to_string_stub.hpp
>> #usr/include/boost/exception_ptr.hpp
>> @@ -5091,8 +5366,6 @@
>> #usr/include/boost/geometry/index/detail/tags.hpp
>> #usr/include/boost/geometry/index/detail/translator.hpp
>> #usr/include/boost/geometry/index/detail/utilities.hpp
>> -#usr/include/boost/geometry/index/detail/varray.hpp
>> -#usr/include/boost/geometry/index/detail/varray_detail.hpp
>> #usr/include/boost/geometry/index/distance_predicates.hpp
>> #usr/include/boost/geometry/index/equal_to.hpp
>> #usr/include/boost/geometry/index/indexable.hpp
>> @@ -6077,6 +6350,8 @@
>> #usr/include/boost/graph/leda_graph.hpp
>> #usr/include/boost/graph/lookup_edge.hpp
>> #usr/include/boost/graph/loop_erased_random_walk.hpp
>> +#usr/include/boost/graph/louvain_clustering.hpp
>> +#usr/include/boost/graph/louvain_quality_functions.hpp
>> #usr/include/boost/graph/make_biconnected_planar.hpp
>> #usr/include/boost/graph/make_connected.hpp
>> #usr/include/boost/graph/make_maximal_planar.hpp
>> @@ -6679,6 +6954,7 @@
>> #usr/include/boost/heap/detail
>> #usr/include/boost/heap/detail/heap_comparison.hpp
>> #usr/include/boost/heap/detail/heap_node.hpp
>> +#usr/include/boost/heap/detail/heap_utils.hpp
>> #usr/include/boost/heap/detail/ilog2.hpp
>> #usr/include/boost/heap/detail/mutable_heap.hpp
>> #usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
>> @@ -6888,8 +7164,10 @@
>> #usr/include/boost/icl/concept/set_value.hpp
>> #usr/include/boost/icl/continuous_interval.hpp
>> #usr/include/boost/icl/detail
>> +#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
>> #usr/include/boost/icl/detail/associated_value.hpp
>> #usr/include/boost/icl/detail/boost_config.hpp
>> +#usr/include/boost/icl/detail/co_equal_fwd.hpp
>> #usr/include/boost/icl/detail/concept_check.hpp
>> #usr/include/boost/icl/detail/design_config.hpp
>> #usr/include/boost/icl/detail/element_comparer.hpp
>> @@ -6899,12 +7177,14 @@
>> #usr/include/boost/icl/detail/interval_morphism.hpp
>> #usr/include/boost/icl/detail/interval_set_algo.hpp
>> #usr/include/boost/icl/detail/interval_subset_comparer.hpp
>> +#usr/include/boost/icl/detail/map_adaptor.hpp
>> #usr/include/boost/icl/detail/map_algo.hpp
>> #usr/include/boost/icl/detail/mapped_reference.hpp
>> #usr/include/boost/icl/detail/notate.hpp
>> #usr/include/boost/icl/detail/on_absorbtion.hpp
>> #usr/include/boost/icl/detail/relation_state.hpp
>> #usr/include/boost/icl/detail/requires_cxx11.hpp
>> +#usr/include/boost/icl/detail/set_adaptor.hpp
>> #usr/include/boost/icl/detail/set_algo.hpp
>> #usr/include/boost/icl/detail/std_set.hpp
>> #usr/include/boost/icl/detail/subset_comparer.hpp
>> @@ -7585,6 +7865,7 @@
>> #usr/include/boost/json/impl/value_ref.ipp
>> #usr/include/boost/json/impl/value_stack.ipp
>> #usr/include/boost/json/impl/visit.hpp
>> +#usr/include/boost/json/impl/visit.ipp
>> #usr/include/boost/json/is_deallocate_trivial.hpp
>> #usr/include/boost/json/kind.hpp
>> #usr/include/boost/json/monotonic_resource.hpp
>> @@ -7660,15 +7941,20 @@
>> #usr/include/boost/leaf/config/tls_cpp11.hpp
>> #usr/include/boost/leaf/config/tls_freertos.hpp
>> #usr/include/boost/leaf/config/tls_globals.hpp
>> +#usr/include/boost/leaf/config/tls_win32.hpp
>> +#usr/include/boost/leaf/config/visibility.hpp
>> #usr/include/boost/leaf/context.hpp
>> #usr/include/boost/leaf/detail
>> #usr/include/boost/leaf/detail/all.hpp
>> #usr/include/boost/leaf/detail/capture_list.hpp
>> #usr/include/boost/leaf/detail/demangle.hpp
>> +#usr/include/boost/leaf/detail/diagnostics_writer.hpp
>> +#usr/include/boost/leaf/detail/encoder.hpp
>> +#usr/include/boost/leaf/detail/exception_base.hpp
>> #usr/include/boost/leaf/detail/function_traits.hpp
>> #usr/include/boost/leaf/detail/mp11.hpp
>> #usr/include/boost/leaf/detail/optional.hpp
>> -#usr/include/boost/leaf/detail/print.hpp
>> +#usr/include/boost/leaf/detail/type_name.hpp
>> #usr/include/boost/leaf/diagnostics.hpp
>> #usr/include/boost/leaf/error.hpp
>> #usr/include/boost/leaf/exception.hpp
>> @@ -7676,12 +7962,16 @@
>> #usr/include/boost/leaf/on_error.hpp
>> #usr/include/boost/leaf/pred.hpp
>> #usr/include/boost/leaf/result.hpp
>> +#usr/include/boost/leaf/serialization
>> +#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
>> +#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
>> #usr/include/boost/leaf/to_variant.hpp
>> #usr/include/boost/lexical_cast
>> #usr/include/boost/lexical_cast.hpp
>> #usr/include/boost/lexical_cast/bad_lexical_cast.hpp
>> #usr/include/boost/lexical_cast/detail
>> #usr/include/boost/lexical_cast/detail/buffer_view.hpp
>> +#usr/include/boost/lexical_cast/detail/config.hpp
>> #usr/include/boost/lexical_cast/detail/converter_lexical.hpp
>> #usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
>> #usr/include/boost/lexical_cast/detail/converter_numeric.hpp
>> @@ -7689,6 +7979,7 @@
>> #usr/include/boost/lexical_cast/detail/is_character.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
>> +#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
>> #usr/include/boost/lexical_cast/detail/type_traits.hpp
>> #usr/include/boost/lexical_cast/detail/widest_char.hpp
>> @@ -7798,17 +8089,20 @@
>> #usr/include/boost/locale/util/locale_data.hpp
>> #usr/include/boost/locale/util/string.hpp
>> #usr/include/boost/lockfree
>> +#usr/include/boost/lockfree/bounded_ticket_queue.hpp
>> #usr/include/boost/lockfree/detail
>> #usr/include/boost/lockfree/detail/atomic.hpp
>> #usr/include/boost/lockfree/detail/copy_payload.hpp
>> #usr/include/boost/lockfree/detail/freelist.hpp
>> #usr/include/boost/lockfree/detail/parameter.hpp
>> +#usr/include/boost/lockfree/detail/power_of_two.hpp
>> #usr/include/boost/lockfree/detail/prefix.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
>> #usr/include/boost/lockfree/detail/uses_optional.hpp
>> #usr/include/boost/lockfree/lockfree_forward.hpp
>> +#usr/include/boost/lockfree/mpsc_weak_queue.hpp
>> #usr/include/boost/lockfree/policies.hpp
>> #usr/include/boost/lockfree/queue.hpp
>> #usr/include/boost/lockfree/spsc_queue.hpp
>> @@ -8283,8 +8577,17 @@
>> #usr/include/boost/math/optimization/cma_es.hpp
>> #usr/include/boost/math/optimization/detail
>> #usr/include/boost/math/optimization/detail/common.hpp
>> +#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
>> +#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
>> +#usr/include/boost/math/optimization/detail/line_search_policies.hpp
>> +#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
>> #usr/include/boost/math/optimization/differential_evolution.hpp
>> +#usr/include/boost/math/optimization/gradient_descent.hpp
>> +#usr/include/boost/math/optimization/gradient_optimizers.hpp
>> #usr/include/boost/math/optimization/jso.hpp
>> +#usr/include/boost/math/optimization/lbfgs.hpp
>> +#usr/include/boost/math/optimization/minimizer.hpp
>> +#usr/include/boost/math/optimization/nesterov.hpp
>> #usr/include/boost/math/optimization/random_search.hpp
>> #usr/include/boost/math/policies
>> #usr/include/boost/math/policies/error_handling.hpp
>> @@ -10296,12 +10599,23 @@
>> #usr/include/boost/msm/backmp11
>> #usr/include/boost/msm/backmp11/common_types.hpp
>> #usr/include/boost/msm/backmp11/detail
>> -#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
>> +#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
>> +#usr/include/boost/msm/backmp11/detail/common.hpp
>> +#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
>> #usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
>> #usr/include/boost/msm/backmp11/detail/history_impl.hpp
>> #usr/include/boost/msm/backmp11/detail/metafunctions.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_tags.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
>> +#usr/include/boost/msm/backmp11/detail/transition_table.hpp
>> #usr/include/boost/msm/backmp11/event_traits.hpp
>> #usr/include/boost/msm/backmp11/favor_compile_time.hpp
>> +#usr/include/boost/msm/backmp11/observer.hpp
>> +#usr/include/boost/msm/backmp11/serialization
>> +#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
>> +#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
>> +#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
>> #usr/include/boost/msm/backmp11/state_machine.hpp
>> #usr/include/boost/msm/backmp11/state_machine_config.hpp
>> #usr/include/boost/msm/common.hpp
>> @@ -10312,6 +10626,7 @@
>> #usr/include/boost/msm/front/detail
>> #usr/include/boost/msm/front/detail/common_states.hpp
>> #usr/include/boost/msm/front/detail/row2_helper.hpp
>> +#usr/include/boost/msm/front/detail/state_tags.hpp
>> #usr/include/boost/msm/front/euml
>> #usr/include/boost/msm/front/euml/algorithm.hpp
>> #usr/include/boost/msm/front/euml/common.hpp
>> @@ -10373,11 +10688,10 @@
>> #usr/include/boost/multi_index
>> #usr/include/boost/multi_index/composite_key.hpp
>> #usr/include/boost/multi_index/detail
>> -#usr/include/boost/multi_index/detail/access_specifier.hpp
>> #usr/include/boost/multi_index/detail/adl_swap.hpp
>> -#usr/include/boost/multi_index/detail/allocator_traits.hpp
>> #usr/include/boost/multi_index/detail/any_container_view.hpp
>> #usr/include/boost/multi_index/detail/archive_constructed.hpp
>> +#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
>> #usr/include/boost/multi_index/detail/auto_space.hpp
>> #usr/include/boost/multi_index/detail/bad_archive_exception.hpp
>> #usr/include/boost/multi_index/detail/base_type.hpp
>> @@ -10408,7 +10722,9 @@
>> #usr/include/boost/multi_index/detail/is_transparent.hpp
>> #usr/include/boost/multi_index/detail/iter_adaptor.hpp
>> #usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
>> +#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
>> #usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
>> +#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
>> #usr/include/boost/multi_index/detail/node_handle.hpp
>> #usr/include/boost/multi_index/detail/node_type.hpp
>> #usr/include/boost/multi_index/detail/ord_index_args.hpp
>> @@ -10431,11 +10747,11 @@
>> #usr/include/boost/multi_index/detail/seq_index_node.hpp
>> #usr/include/boost/multi_index/detail/seq_index_ops.hpp
>> #usr/include/boost/multi_index/detail/serialization_version.hpp
>> +#usr/include/boost/multi_index/detail/type_list.hpp
>> #usr/include/boost/multi_index/detail/uintptr_type.hpp
>> #usr/include/boost/multi_index/detail/unbounded.hpp
>> #usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
>> #usr/include/boost/multi_index/detail/value_compare.hpp
>> -#usr/include/boost/multi_index/detail/vartempl_support.hpp
>> #usr/include/boost/multi_index/global_fun.hpp
>> #usr/include/boost/multi_index/hashed_index.hpp
>> #usr/include/boost/multi_index/hashed_index_fwd.hpp
>> @@ -10678,6 +10994,7 @@
>> #usr/include/boost/mysql/impl/internal/error
>> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
>> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
>> +#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
>> #usr/include/boost/mysql/impl/internal/protocol
>> #usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
>> #usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
>> @@ -11176,6 +11493,7 @@
>> #usr/include/boost/openmethod/initialize.hpp
>> #usr/include/boost/openmethod/inplace_vptr.hpp
>> #usr/include/boost/openmethod/interop
>> +#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
>> #usr/include/boost/openmethod/interop/std_shared_ptr.hpp
>> #usr/include/boost/openmethod/interop/std_unique_ptr.hpp
>> #usr/include/boost/openmethod/macros.hpp
>> @@ -11197,14 +11515,17 @@
>> #usr/include/boost/optional/detail
>> #usr/include/boost/optional/detail/experimental_traits.hpp
>> #usr/include/boost/optional/detail/optional_aligned_storage.hpp
>> +#usr/include/boost/optional/detail/optional_common_defs.hpp
>> #usr/include/boost/optional/detail/optional_config.hpp
>> #usr/include/boost/optional/detail/optional_factory_support.hpp
>> #usr/include/boost/optional/detail/optional_hash.hpp
>> +#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
>> #usr/include/boost/optional/detail/optional_reference_spec.hpp
>> #usr/include/boost/optional/detail/optional_relops.hpp
>> +#usr/include/boost/optional/detail/optional_select_implementation.hpp
>> #usr/include/boost/optional/detail/optional_swap.hpp
>> #usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
>> -#usr/include/boost/optional/detail/optional_utility.hpp
>> +#usr/include/boost/optional/detail/union_optional.hpp
>> #usr/include/boost/optional/optional.hpp
>> #usr/include/boost/optional/optional_fwd.hpp
>> #usr/include/boost/optional/optional_io.hpp
>> @@ -11489,9 +11810,11 @@
>> #usr/include/boost/pfr/detail/core17.hpp
>> #usr/include/boost/pfr/detail/core17_generated.hpp
>> #usr/include/boost/pfr/detail/core26.hpp
>> +#usr/include/boost/pfr/detail/core26_reflection.hpp
>> #usr/include/boost/pfr/detail/core_name.hpp
>> #usr/include/boost/pfr/detail/core_name14_disabled.hpp
>> #usr/include/boost/pfr/detail/core_name20_static.hpp
>> +#usr/include/boost/pfr/detail/core_name26_reflection.hpp
>> #usr/include/boost/pfr/detail/detectors.hpp
>> #usr/include/boost/pfr/detail/fake_object.hpp
>> #usr/include/boost/pfr/detail/fields_count.hpp
>> @@ -13245,6 +13568,7 @@
>> #usr/include/boost/python/detail/pointee.hpp
>> #usr/include/boost/python/detail/prefix.hpp
>> #usr/include/boost/python/detail/preprocessor.hpp
>> +#usr/include/boost/python/detail/pymutex.hpp
>> #usr/include/boost/python/detail/python22_fixed.h
>> #usr/include/boost/python/detail/python_type.hpp
>> #usr/include/boost/python/detail/raw_pyobject.hpp
>> @@ -13750,15 +14074,20 @@
>> #usr/include/boost/redis/connection.hpp
>> #usr/include/boost/redis/detail
>> #usr/include/boost/redis/detail/connect_fsm.hpp
>> +#usr/include/boost/redis/detail/connect_params.hpp
>> #usr/include/boost/redis/detail/connection_state.hpp
>> #usr/include/boost/redis/detail/coroutine.hpp
>> #usr/include/boost/redis/detail/exec_fsm.hpp
>> +#usr/include/boost/redis/detail/exec_one_fsm.hpp
>> #usr/include/boost/redis/detail/multiplexer.hpp
>> #usr/include/boost/redis/detail/read_buffer.hpp
>> #usr/include/boost/redis/detail/reader_fsm.hpp
>> +#usr/include/boost/redis/detail/receive_fsm.hpp
>> #usr/include/boost/redis/detail/redis_stream.hpp
>> #usr/include/boost/redis/detail/resp3_type_to_error.hpp
>> #usr/include/boost/redis/detail/run_fsm.hpp
>> +#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
>> +#usr/include/boost/redis/detail/subscription_tracker.hpp
>> #usr/include/boost/redis/detail/write.hpp
>> #usr/include/boost/redis/detail/writer_fsm.hpp
>> #usr/include/boost/redis/error.hpp
>> @@ -13768,23 +14097,32 @@
>> #usr/include/boost/redis/impl/connection.ipp
>> #usr/include/boost/redis/impl/error.ipp
>> #usr/include/boost/redis/impl/exec_fsm.ipp
>> +#usr/include/boost/redis/impl/exec_one_fsm.ipp
>> +#usr/include/boost/redis/impl/flat_tree.ipp
>> #usr/include/boost/redis/impl/ignore.ipp
>> #usr/include/boost/redis/impl/is_terminal_cancel.hpp
>> #usr/include/boost/redis/impl/log_to_file.hpp
>> #usr/include/boost/redis/impl/log_utils.hpp
>> #usr/include/boost/redis/impl/logger.ipp
>> #usr/include/boost/redis/impl/multiplexer.ipp
>> +#usr/include/boost/redis/impl/push_parser.ipp
>> #usr/include/boost/redis/impl/read_buffer.ipp
>> #usr/include/boost/redis/impl/reader_fsm.ipp
>> +#usr/include/boost/redis/impl/receive_fsm.ipp
>> #usr/include/boost/redis/impl/request.ipp
>> #usr/include/boost/redis/impl/response.ipp
>> #usr/include/boost/redis/impl/run_fsm.ipp
>> +#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
>> +#usr/include/boost/redis/impl/sentinel_utils.hpp
>> #usr/include/boost/redis/impl/setup_request_utils.hpp
>> +#usr/include/boost/redis/impl/subscription_tracker.ipp
>> #usr/include/boost/redis/impl/writer_fsm.ipp
>> #usr/include/boost/redis/logger.hpp
>> #usr/include/boost/redis/operation.hpp
>> +#usr/include/boost/redis/push_parser.hpp
>> #usr/include/boost/redis/request.hpp
>> #usr/include/boost/redis/resp3
>> +#usr/include/boost/redis/resp3/flat_tree.hpp
>> #usr/include/boost/redis/resp3/impl
>> #usr/include/boost/redis/resp3/impl/parser.ipp
>> #usr/include/boost/redis/resp3/impl/serialization.ipp
>> @@ -13792,6 +14130,7 @@
>> #usr/include/boost/redis/resp3/node.hpp
>> #usr/include/boost/redis/resp3/parser.hpp
>> #usr/include/boost/redis/resp3/serialization.hpp
>> +#usr/include/boost/redis/resp3/tree.hpp
>> #usr/include/boost/redis/resp3/type.hpp
>> #usr/include/boost/redis/response.hpp
>> #usr/include/boost/redis/src.hpp
>> @@ -15352,9 +15691,11 @@
>> #usr/include/boost/stacktrace/detail/addr2line_impls.hpp
>> #usr/include/boost/stacktrace/detail/addr_base.hpp
>> #usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
>> +#usr/include/boost/stacktrace/detail/backend_config.hpp
>> #usr/include/boost/stacktrace/detail/collect_msvc.ipp
>> #usr/include/boost/stacktrace/detail/collect_noop.ipp
>> #usr/include/boost/stacktrace/detail/collect_unwind.ipp
>> +#usr/include/boost/stacktrace/detail/config.hpp
>> #usr/include/boost/stacktrace/detail/frame_decl.hpp
>> #usr/include/boost/stacktrace/detail/frame_msvc.ipp
>> #usr/include/boost/stacktrace/detail/frame_noop.ipp
>> @@ -15408,7 +15749,10 @@
>> #usr/include/boost/statechart/state_machine.hpp
>> #usr/include/boost/statechart/termination.hpp
>> #usr/include/boost/statechart/transition.hpp
>> +#usr/include/boost/static_assert
>> #usr/include/boost/static_assert.hpp
>> +#usr/include/boost/static_assert/detail
>> +#usr/include/boost/static_assert/detail/backward.hpp
>> #usr/include/boost/static_string
>> #usr/include/boost/static_string.hpp
>> #usr/include/boost/static_string/config.hpp
>> @@ -15442,6 +15786,7 @@
>> #usr/include/boost/system/detail/generic_category.hpp
>> #usr/include/boost/system/detail/generic_category_message.hpp
>> #usr/include/boost/system/detail/interop_category.hpp
>> +#usr/include/boost/system/detail/is_aggregate.hpp
>> #usr/include/boost/system/detail/is_same.hpp
>> #usr/include/boost/system/detail/mutex.hpp
>> #usr/include/boost/system/detail/snprintf.hpp
>> @@ -15464,6 +15809,7 @@
>> #usr/include/boost/system/result.hpp
>> #usr/include/boost/system/system_category.hpp
>> #usr/include/boost/system/system_error.hpp
>> +#usr/include/boost/system/unwrap_and_invoke.hpp
>> #usr/include/boost/system/windows_error.hpp
>> #usr/include/boost/test
>> #usr/include/boost/test/auto_unit_test.hpp
>> @@ -16595,6 +16941,7 @@
>> #usr/include/boost/unordered/detail/narrow_cast.hpp
>> #usr/include/boost/unordered/detail/opt_storage.hpp
>> #usr/include/boost/unordered/detail/prime_fmod.hpp
>> +#usr/include/boost/unordered/detail/ranges_support.hpp
>> #usr/include/boost/unordered/detail/serialization_version.hpp
>> #usr/include/boost/unordered/detail/serialize_container.hpp
>> #usr/include/boost/unordered/detail/serialize_fca_container.hpp
>> @@ -16623,19 +16970,33 @@
>> #usr/include/boost/url
>> #usr/include/boost/url.hpp
>> #usr/include/boost/url/authority_view.hpp
>> +#usr/include/boost/url/decode.hpp
>> #usr/include/boost/url/decode_view.hpp
>> #usr/include/boost/url/detail
>> #usr/include/boost/url/detail/any_params_iter.hpp
>> #usr/include/boost/url/detail/any_segments_iter.hpp
>> #usr/include/boost/url/detail/config.hpp
>> +#usr/include/boost/url/detail/decode.hpp
>> #usr/include/boost/url/detail/encode.hpp
>> #usr/include/boost/url/detail/except.hpp
>> +#usr/include/boost/url/detail/fnv_1a.hpp
>> #usr/include/boost/url/detail/format_args.hpp
>> #usr/include/boost/url/detail/impl
>> +#usr/include/boost/url/detail/impl/any_params_iter.hpp
>> +#usr/include/boost/url/detail/impl/any_segments_iter.hpp
>> #usr/include/boost/url/detail/impl/format_args.hpp
>> +#usr/include/boost/url/detail/impl/params_iter_impl.hpp
>> +#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
>> +#usr/include/boost/url/detail/impl/url_impl.hpp
>> +#usr/include/boost/url/detail/memcpy.hpp
>> +#usr/include/boost/url/detail/move_chars.hpp
>> +#usr/include/boost/url/detail/normalize.hpp
>> #usr/include/boost/url/detail/optional_string.hpp
>> +#usr/include/boost/url/detail/over_allocator.hpp
>> #usr/include/boost/url/detail/params_iter_impl.hpp
>> #usr/include/boost/url/detail/parts_base.hpp
>> +#usr/include/boost/url/detail/path.hpp
>> +#usr/include/boost/url/detail/print.hpp
>> #usr/include/boost/url/detail/replacement_field_rule.hpp
>> #usr/include/boost/url/detail/segments_iter_impl.hpp
>> #usr/include/boost/url/detail/segments_range.hpp
>> @@ -16659,13 +17020,17 @@
>> #usr/include/boost/url/grammar/detail
>> #usr/include/boost/url/grammar/detail/charset.hpp
>> #usr/include/boost/url/grammar/detail/ci_string.hpp
>> +#usr/include/boost/url/grammar/detail/range_rule.hpp
>> #usr/include/boost/url/grammar/detail/recycled.hpp
>> #usr/include/boost/url/grammar/detail/tuple.hpp
>> #usr/include/boost/url/grammar/digit_chars.hpp
>> #usr/include/boost/url/grammar/error.hpp
>> #usr/include/boost/url/grammar/hexdig_chars.hpp
>> #usr/include/boost/url/grammar/impl
>> +#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
>> +#usr/include/boost/url/grammar/impl/delim_rule.hpp
>> #usr/include/boost/url/grammar/impl/error.hpp
>> +#usr/include/boost/url/grammar/impl/literal_rule.hpp
>> #usr/include/boost/url/grammar/impl/not_empty_rule.hpp
>> #usr/include/boost/url/grammar/impl/optional_rule.hpp
>> #usr/include/boost/url/grammar/impl/parse.hpp
>> @@ -16693,17 +17058,30 @@
>> #usr/include/boost/url/host_type.hpp
>> #usr/include/boost/url/ignore_case.hpp
>> #usr/include/boost/url/impl
>> +#usr/include/boost/url/impl/authority_view.hpp
>> +#usr/include/boost/url/impl/decode.hpp
>> #usr/include/boost/url/impl/decode_view.hpp
>> #usr/include/boost/url/impl/encode.hpp
>> #usr/include/boost/url/impl/error.hpp
>> #usr/include/boost/url/impl/params_base.hpp
>> #usr/include/boost/url/impl/params_encoded_base.hpp
>> #usr/include/boost/url/impl/params_encoded_ref.hpp
>> +#usr/include/boost/url/impl/params_encoded_view.hpp
>> #usr/include/boost/url/impl/params_ref.hpp
>> +#usr/include/boost/url/impl/params_view.hpp
>> +#usr/include/boost/url/impl/parse.hpp
>> +#usr/include/boost/url/impl/scheme.hpp
>> #usr/include/boost/url/impl/segments_base.hpp
>> #usr/include/boost/url/impl/segments_encoded_base.hpp
>> #usr/include/boost/url/impl/segments_encoded_ref.hpp
>> +#usr/include/boost/url/impl/segments_encoded_view.hpp
>> #usr/include/boost/url/impl/segments_ref.hpp
>> +#usr/include/boost/url/impl/segments_view.hpp
>> +#usr/include/boost/url/impl/static_url.hpp
>> +#usr/include/boost/url/impl/url.hpp
>> +#usr/include/boost/url/impl/url_base.hpp
>> +#usr/include/boost/url/impl/url_view.hpp
>> +#usr/include/boost/url/impl/url_view_base.hpp
>> #usr/include/boost/url/ipv4_address.hpp
>> #usr/include/boost/url/ipv6_address.hpp
>> #usr/include/boost/url/optional.hpp
>> @@ -16722,10 +17100,44 @@
>> #usr/include/boost/url/rfc/absolute_uri_rule.hpp
>> #usr/include/boost/url/rfc/authority_rule.hpp
>> #usr/include/boost/url/rfc/detail
>> +#usr/include/boost/url/rfc/detail/charsets.hpp
>> +#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/h16_rule.hpp
>> +#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/host_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl
>> +#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
>> #usr/include/boost/url/rfc/detail/path_rules.hpp
>> +#usr/include/boost/url/rfc/detail/port_rule.hpp
>> +#usr/include/boost/url/rfc/detail/query_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
>> +#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/scheme_rule.hpp
>> +#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
>> #usr/include/boost/url/rfc/gen_delim_chars.hpp
>> #usr/include/boost/url/rfc/impl
>> +#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
>> +#usr/include/boost/url/rfc/impl/authority_rule.hpp
>> +#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
>> +#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
>> +#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
>> #usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
>> +#usr/include/boost/url/rfc/impl/query_rule.hpp
>> +#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
>> +#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
>> +#usr/include/boost/url/rfc/impl/uri_rule.hpp
>> #usr/include/boost/url/rfc/ipv4_address_rule.hpp
>> #usr/include/boost/url/rfc/ipv6_address_rule.hpp
>> #usr/include/boost/url/rfc/origin_form_rule.hpp
>> @@ -16788,21 +17200,33 @@
>> #usr/include/boost/uuid/detail/basic_name_generator.hpp
>> #usr/include/boost/uuid/detail/chacha20.hpp
>> #usr/include/boost/uuid/detail/config.hpp
>> +#usr/include/boost/uuid/detail/cstring.hpp
>> #usr/include/boost/uuid/detail/endian.hpp
>> +#usr/include/boost/uuid/detail/from_chars.hpp
>> +#usr/include/boost/uuid/detail/from_chars_generic.hpp
>> +#usr/include/boost/uuid/detail/from_chars_result.hpp
>> +#usr/include/boost/uuid/detail/from_chars_x86.hpp
>> #usr/include/boost/uuid/detail/hash_mix.hpp
>> +#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
>> #usr/include/boost/uuid/detail/md5.hpp
>> #usr/include/boost/uuid/detail/nil_uuid.hpp
>> #usr/include/boost/uuid/detail/numeric_cast.hpp
>> #usr/include/boost/uuid/detail/random_device.hpp
>> #usr/include/boost/uuid/detail/random_provider.hpp
>> #usr/include/boost/uuid/detail/sha1.hpp
>> +#usr/include/boost/uuid/detail/simd_vector.hpp
>> #usr/include/boost/uuid/detail/static_assert.hpp
>> +#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
>> #usr/include/boost/uuid/detail/to_chars.hpp
>> +#usr/include/boost/uuid/detail/to_chars_generic.hpp
>> +#usr/include/boost/uuid/detail/to_chars_x86.hpp
>> +#usr/include/boost/uuid/detail/uuid_from_string.hpp
>> #usr/include/boost/uuid/detail/uuid_generic.ipp
>> #usr/include/boost/uuid/detail/uuid_uint128.ipp
>> #usr/include/boost/uuid/detail/uuid_x86.ipp
>> #usr/include/boost/uuid/entropy_error.hpp
>> #usr/include/boost/uuid/generators.hpp
>> +#usr/include/boost/uuid/invalid_uuid.hpp
>> #usr/include/boost/uuid/name_generator.hpp
>> #usr/include/boost/uuid/name_generator_md5.hpp
>> #usr/include/boost/uuid/name_generator_sha1.hpp
>> @@ -17304,250 +17728,407 @@
>> #usr/include/boost/yap/print.hpp
>> #usr/include/boost/yap/user_macros.hpp
>> #usr/include/boost/yap/yap.hpp
>> -#usr/lib/cmake/Boost-1.90.0
>> -#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
>> -#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
>> -#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0
>> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0
>> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0
>> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
>> -#usr/lib/cmake/boost_container-1.90.0
>> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
>> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
>> -#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
>> -#usr/lib/cmake/boost_context-1.90.0
>> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
>> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
>> -#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0
>> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0
>> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
>> -#usr/lib/cmake/boost_exception-1.90.0
>> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
>> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0
>> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0
>> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
>> -#usr/lib/cmake/boost_headers-1.90.0
>> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
>> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0
>> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
>> -#usr/lib/cmake/boost_json-1.90.0
>> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
>> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
>> -#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0
>> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
>> -#usr/lib/cmake/boost_log-1.90.0
>> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
>> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
>> -#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0
>> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
>> -#usr/lib/cmake/boost_math-1.90.0
>> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
>> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0
>> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0
>> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
>> -#usr/lib/cmake/boost_numpy-1.90.0
>> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
>> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
>> -#usr/lib/cmake/boost_process-1.90.0
>> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
>> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
>> -#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
>> -#usr/lib/cmake/boost_python-1.90.0
>> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
>> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
>> -#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
>> -#usr/lib/cmake/boost_random-1.90.0
>> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
>> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
>> -#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0
>> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0
>> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0
>> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0
>> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
>> -#usr/lib/cmake/boost_url-1.90.0
>> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
>> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
>> -#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0
>> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0
>> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
>> -#usr/lib/libboost_atomic.so
>> -usr/lib/libboost_atomic.so.1.90.0
>> -#usr/lib/libboost_charconv.so
>> -usr/lib/libboost_charconv.so.1.90.0
>> -#usr/lib/libboost_chrono.so
>> -usr/lib/libboost_chrono.so.1.90.0
>> -#usr/lib/libboost_container.so
>> -usr/lib/libboost_container.so.1.90.0
>> -#usr/lib/libboost_context.so
>> -usr/lib/libboost_context.so.1.90.0
>> -#usr/lib/libboost_contract.so
>> -usr/lib/libboost_contract.so.1.90.0
>> -#usr/lib/libboost_date_time.so
>> -usr/lib/libboost_date_time.so.1.90.0
>> -#usr/lib/libboost_exception.a
>> -#usr/lib/libboost_filesystem.so
>> -usr/lib/libboost_filesystem.so.1.90.0
>> -#usr/lib/libboost_graph.so
>> -usr/lib/libboost_graph.so.1.90.0
>> -#usr/lib/libboost_iostreams.so
>> -usr/lib/libboost_iostreams.so.1.90.0
>> -#usr/lib/libboost_json.so
>> -usr/lib/libboost_json.so.1.90.0
>> -#usr/lib/libboost_locale.so
>> -usr/lib/libboost_locale.so.1.90.0
>> -#usr/lib/libboost_log.so
>> -usr/lib/libboost_log.so.1.90.0
>> -#usr/lib/libboost_log_setup.so
>> -usr/lib/libboost_log_setup.so.1.90.0
>> -#usr/lib/libboost_math_c99.so
>> -usr/lib/libboost_math_c99.so.1.90.0
>> -#usr/lib/libboost_math_c99f.so
>> -usr/lib/libboost_math_c99f.so.1.90.0
>> -#usr/lib/libboost_math_c99l.so
>> -usr/lib/libboost_math_c99l.so.1.90.0
>> -#usr/lib/libboost_math_tr1.so
>> -usr/lib/libboost_math_tr1.so.1.90.0
>> -#usr/lib/libboost_math_tr1f.so
>> -usr/lib/libboost_math_tr1f.so.1.90.0
>> -#usr/lib/libboost_math_tr1l.so
>> -usr/lib/libboost_math_tr1l.so.1.90.0
>> -#usr/lib/libboost_nowide.so
>> -usr/lib/libboost_nowide.so.1.90.0
>> -#usr/lib/libboost_prg_exec_monitor.so
>> -usr/lib/libboost_prg_exec_monitor.so.1.90.0
>> -#usr/lib/libboost_process.so
>> -usr/lib/libboost_process.so.1.90.0
>> -#usr/lib/libboost_python310.so
>> -usr/lib/libboost_python310.so.1.90.0
>> -#usr/lib/libboost_random.so
>> -usr/lib/libboost_random.so.1.90.0
>> -#usr/lib/libboost_regex.so
>> -usr/lib/libboost_regex.so.1.90.0
>> -#usr/lib/libboost_serialization.so
>> -usr/lib/libboost_serialization.so.1.90.0
>> -#usr/lib/libboost_stacktrace_addr2line.so
>> -usr/lib/libboost_stacktrace_addr2line.so.1.90.0
>> -#usr/lib/libboost_stacktrace_basic.so
>> -usr/lib/libboost_stacktrace_basic.so.1.90.0
>> -#usr/lib/libboost_stacktrace_noop.so
>> -usr/lib/libboost_stacktrace_noop.so.1.90.0
>> -#usr/lib/libboost_test_exec_monitor.a
>> -#usr/lib/libboost_thread.so
>> -usr/lib/libboost_thread.so.1.90.0
>> -#usr/lib/libboost_timer.so
>> -usr/lib/libboost_timer.so.1.90.0
>> -#usr/lib/libboost_type_erasure.so
>> -usr/lib/libboost_type_erasure.so.1.90.0
>> -#usr/lib/libboost_unit_test_framework.so
>> -usr/lib/libboost_unit_test_framework.so.1.90.0
>> -#usr/lib/libboost_url.so
>> -usr/lib/libboost_url.so.1.90.0
>> -#usr/lib/libboost_wave.so
>> -usr/lib/libboost_wave.so.1.90.0
>> -#usr/lib/libboost_wserialization.so
>> -usr/lib/libboost_wserialization.so.1.90.0
>> +#usr/lib/cmake/Boost-1.92.0
>> +#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
>> +#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
>> +#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0
>> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0
>> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0
>> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0
>> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_container-1.92.0
>> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_context-1.92.0
>> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0
>> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0
>> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_exception-1.92.0
>> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
>> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0
>> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0
>> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_headers-1.92.0
>> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
>> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0
>> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_json-1.92.0
>> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0
>> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_log-1.92.0
>> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0
>> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_math-1.92.0
>> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
>> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0
>> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0
>> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_numpy-1.92.0
>> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
>> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_process-1.92.0
>> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_python-1.92.0
>> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-a64-shared-py3.10.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-a64-shared-py3.10.cmake
>> +#usr/lib/cmake/boost_random-1.92.0
>> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_regex-1.92.0
>> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
>> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0
>> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0
>> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_system-1.92.0
>> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
>> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0
>> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0
>> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_url-1.92.0
>> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0
>> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-a64-shared.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0
>> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-a64-shared.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-a64-shared.cmake
>> +#usr/lib/libboost_atomic-mt-a64.so
>> +usr/lib/libboost_atomic-mt-a64.so.1.92.0
>> +#usr/lib/libboost_charconv-a64.so
>> +usr/lib/libboost_charconv-a64.so.1.92.0
>> +#usr/lib/libboost_charconv-mt-a64.so
>> +usr/lib/libboost_charconv-mt-a64.so.1.92.0
>> +#usr/lib/libboost_chrono-a64.so
>> +usr/lib/libboost_chrono-a64.so.1.92.0
>> +#usr/lib/libboost_chrono-mt-a64.so
>> +usr/lib/libboost_chrono-mt-a64.so.1.92.0
>> +#usr/lib/libboost_cobalt-a64.so
>> +usr/lib/libboost_cobalt-a64.so.1.92.0
>> +#usr/lib/libboost_cobalt-mt-a64.so
>> +usr/lib/libboost_cobalt-mt-a64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io-a64.so
>> +usr/lib/libboost_cobalt_io-a64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io-mt-a64.so
>> +usr/lib/libboost_cobalt_io-mt-a64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io_ssl-a64.so
>> +usr/lib/libboost_cobalt_io_ssl-a64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io_ssl-mt-a64.so
>> +usr/lib/libboost_cobalt_io_ssl-mt-a64.so.1.92.0
>> +#usr/lib/libboost_container-a64.so
>> +usr/lib/libboost_container-a64.so.1.92.0
>> +#usr/lib/libboost_container-mt-a64.so
>> +usr/lib/libboost_container-mt-a64.so.1.92.0
>> +#usr/lib/libboost_context-mt-a64.so
>> +usr/lib/libboost_context-mt-a64.so.1.92.0
>> +#usr/lib/libboost_contract-a64.so
>> +usr/lib/libboost_contract-a64.so.1.92.0
>> +#usr/lib/libboost_contract-mt-a64.so
>> +usr/lib/libboost_contract-mt-a64.so.1.92.0
>> +#usr/lib/libboost_date_time-a64.so
>> +usr/lib/libboost_date_time-a64.so.1.92.0
>> +#usr/lib/libboost_date_time-mt-a64.so
>> +usr/lib/libboost_date_time-mt-a64.so.1.92.0
>> +#usr/lib/libboost_exception-a64.a
>> +#usr/lib/libboost_exception-mt-a64.a
>> +#usr/lib/libboost_filesystem-a64.so
>> +usr/lib/libboost_filesystem-a64.so.1.92.0
>> +#usr/lib/libboost_filesystem-mt-a64.so
>> +usr/lib/libboost_filesystem-mt-a64.so.1.92.0
>> +#usr/lib/libboost_graph-a64.so
>> +usr/lib/libboost_graph-a64.so.1.92.0
>> +#usr/lib/libboost_graph-mt-a64.so
>> +usr/lib/libboost_graph-mt-a64.so.1.92.0
>> +#usr/lib/libboost_iostreams-a64.so
>> +usr/lib/libboost_iostreams-a64.so.1.92.0
>> +#usr/lib/libboost_iostreams-mt-a64.so
>> +usr/lib/libboost_iostreams-mt-a64.so.1.92.0
>> +#usr/lib/libboost_json-a64.so
>> +usr/lib/libboost_json-a64.so.1.92.0
>> +#usr/lib/libboost_json-mt-a64.so
>> +usr/lib/libboost_json-mt-a64.so.1.92.0
>> +#usr/lib/libboost_locale-mt-a64.so
>> +usr/lib/libboost_locale-mt-a64.so.1.92.0
>> +#usr/lib/libboost_log-a64.so
>> +usr/lib/libboost_log-a64.so.1.92.0
>> +#usr/lib/libboost_log-mt-a64.so
>> +usr/lib/libboost_log-mt-a64.so.1.92.0
>> +#usr/lib/libboost_log_setup-a64.so
>> +usr/lib/libboost_log_setup-a64.so.1.92.0
>> +#usr/lib/libboost_log_setup-mt-a64.so
>> +usr/lib/libboost_log_setup-mt-a64.so.1.92.0
>> +#usr/lib/libboost_math_c99-a64.so
>> +usr/lib/libboost_math_c99-a64.so.1.92.0
>> +#usr/lib/libboost_math_c99-mt-a64.so
>> +usr/lib/libboost_math_c99-mt-a64.so.1.92.0
>> +#usr/lib/libboost_math_c99f-a64.so
>> +usr/lib/libboost_math_c99f-a64.so.1.92.0
>> +#usr/lib/libboost_math_c99f-mt-a64.so
>> +usr/lib/libboost_math_c99f-mt-a64.so.1.92.0
>> +#usr/lib/libboost_math_c99l-a64.so
>> +usr/lib/libboost_math_c99l-a64.so.1.92.0
>> +#usr/lib/libboost_math_c99l-mt-a64.so
>> +usr/lib/libboost_math_c99l-mt-a64.so.1.92.0
>> +#usr/lib/libboost_math_tr1-a64.so
>> +usr/lib/libboost_math_tr1-a64.so.1.92.0
>> +#usr/lib/libboost_math_tr1-mt-a64.so
>> +usr/lib/libboost_math_tr1-mt-a64.so.1.92.0
>> +#usr/lib/libboost_math_tr1f-a64.so
>> +usr/lib/libboost_math_tr1f-a64.so.1.92.0
>> +#usr/lib/libboost_math_tr1f-mt-a64.so
>> +usr/lib/libboost_math_tr1f-mt-a64.so.1.92.0
>> +#usr/lib/libboost_math_tr1l-a64.so
>> +usr/lib/libboost_math_tr1l-a64.so.1.92.0
>> +#usr/lib/libboost_math_tr1l-mt-a64.so
>> +usr/lib/libboost_math_tr1l-mt-a64.so.1.92.0
>> +#usr/lib/libboost_nowide-a64.so
>> +usr/lib/libboost_nowide-a64.so.1.92.0
>> +#usr/lib/libboost_nowide-mt-a64.so
>> +usr/lib/libboost_nowide-mt-a64.so.1.92.0
>> +#usr/lib/libboost_prg_exec_monitor-a64.so
>> +usr/lib/libboost_prg_exec_monitor-a64.so.1.92.0
>> +#usr/lib/libboost_prg_exec_monitor-mt-a64.so
>> +usr/lib/libboost_prg_exec_monitor-mt-a64.so.1.92.0
>> +#usr/lib/libboost_process-a64.so
>> +usr/lib/libboost_process-a64.so.1.92.0
>> +#usr/lib/libboost_process-mt-a64.so
>> +usr/lib/libboost_process-mt-a64.so.1.92.0
>> +#usr/lib/libboost_python310-a64.so
>> +usr/lib/libboost_python310-a64.so.1.92.0
>> +#usr/lib/libboost_python310-mt-a64.so
>> +usr/lib/libboost_python310-mt-a64.so.1.92.0
>> +#usr/lib/libboost_random-a64.so
>> +usr/lib/libboost_random-a64.so.1.92.0
>> +#usr/lib/libboost_random-mt-a64.so
>> +usr/lib/libboost_random-mt-a64.so.1.92.0
>> +#usr/lib/libboost_regex-a64.so
>> +usr/lib/libboost_regex-a64.so.1.92.0
>> +#usr/lib/libboost_regex-mt-a64.so
>> +usr/lib/libboost_regex-mt-a64.so.1.92.0
>> +#usr/lib/libboost_serialization-a64.so
>> +usr/lib/libboost_serialization-a64.so.1.92.0
>> +#usr/lib/libboost_serialization-mt-a64.so
>> +usr/lib/libboost_serialization-mt-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_addr2line-a64.so
>> +usr/lib/libboost_stacktrace_addr2line-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_addr2line-mt-a64.so
>> +usr/lib/libboost_stacktrace_addr2line-mt-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_basic-a64.so
>> +usr/lib/libboost_stacktrace_basic-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_basic-mt-a64.so
>> +usr/lib/libboost_stacktrace_basic-mt-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_dump-a64.so
>> +usr/lib/libboost_stacktrace_dump-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_dump-mt-a64.so
>> +usr/lib/libboost_stacktrace_dump-mt-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_from_exception-a64.so
>> +usr/lib/libboost_stacktrace_from_exception-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_from_exception-mt-a64.so
>> +usr/lib/libboost_stacktrace_from_exception-mt-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_noop-a64.so
>> +usr/lib/libboost_stacktrace_noop-a64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_noop-mt-a64.so
>> +usr/lib/libboost_stacktrace_noop-mt-a64.so.1.92.0
>> +#usr/lib/libboost_test_exec_monitor-a64.a
>> +#usr/lib/libboost_test_exec_monitor-mt-a64.a
>> +#usr/lib/libboost_thread-mt-a64.so
>> +usr/lib/libboost_thread-mt-a64.so.1.92.0
>> +#usr/lib/libboost_timer-a64.so
>> +usr/lib/libboost_timer-a64.so.1.92.0
>> +#usr/lib/libboost_timer-mt-a64.so
>> +usr/lib/libboost_timer-mt-a64.so.1.92.0
>> +#usr/lib/libboost_type_erasure-a64.so
>> +usr/lib/libboost_type_erasure-a64.so.1.92.0
>> +#usr/lib/libboost_type_erasure-mt-a64.so
>> +usr/lib/libboost_type_erasure-mt-a64.so.1.92.0
>> +#usr/lib/libboost_unit_test_framework-a64.so
>> +usr/lib/libboost_unit_test_framework-a64.so.1.92.0
>> +#usr/lib/libboost_unit_test_framework-mt-a64.so
>> +usr/lib/libboost_unit_test_framework-mt-a64.so.1.92.0
>> +#usr/lib/libboost_url-a64.so
>> +usr/lib/libboost_url-a64.so.1.92.0
>> +#usr/lib/libboost_url-mt-a64.so
>> +usr/lib/libboost_url-mt-a64.so.1.92.0
>> +#usr/lib/libboost_wave-a64.so
>> +usr/lib/libboost_wave-a64.so.1.92.0
>> +#usr/lib/libboost_wave-mt-a64.so
>> +usr/lib/libboost_wave-mt-a64.so.1.92.0
>> +#usr/lib/libboost_wserialization-a64.so
>> +usr/lib/libboost_wserialization-a64.so.1.92.0
>> +#usr/lib/libboost_wserialization-mt-a64.so
>> +usr/lib/libboost_wserialization-mt-a64.so.1.92.0
>> #usr/share/boost_predef
>> #usr/share/boost_predef/build.jam
>> #usr/share/boost_predef/tools
>> diff --git a/config/rootfiles/common/riscv64/boost b/config/rootfiles/common/riscv64/boost
>> index e592447a3..1c115bc11 100644
>> --- a/config/rootfiles/common/riscv64/boost
>> +++ b/config/rootfiles/common/riscv64/boost
>> @@ -439,6 +439,7 @@
>> #usr/include/boost/asio/detail/array_fwd.hpp
>> #usr/include/boost/asio/detail/assert.hpp
>> #usr/include/boost/asio/detail/atomic_count.hpp
>> +#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
>> #usr/include/boost/asio/detail/base_from_cancellation_state.hpp
>> #usr/include/boost/asio/detail/base_from_completion_cond.hpp
>> #usr/include/boost/asio/detail/bind_handler.hpp
>> @@ -477,6 +478,7 @@
>> #usr/include/boost/asio/detail/fd_set_adapter.hpp
>> #usr/include/boost/asio/detail/fenced_block.hpp
>> #usr/include/boost/asio/detail/functional.hpp
>> +#usr/include/boost/asio/detail/futex_slim_mutex.hpp
>> #usr/include/boost/asio/detail/future.hpp
>> #usr/include/boost/asio/detail/global.hpp
>> #usr/include/boost/asio/detail/handler_alloc_helpers.hpp
>> @@ -527,6 +529,7 @@
>> #usr/include/boost/asio/detail/impl/thread_context.ipp
>> #usr/include/boost/asio/detail/impl/throw_error.ipp
>> #usr/include/boost/asio/detail/impl/timer_queue_set.ipp
>> +#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_event.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
>> @@ -534,7 +537,6 @@
>> #usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
>> -#usr/include/boost/asio/detail/impl/win_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
>> #usr/include/boost/asio/detail/impl/win_static_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_thread.ipp
>> @@ -641,6 +643,7 @@
>> #usr/include/boost/asio/detail/signal_init.hpp
>> #usr/include/boost/asio/detail/signal_op.hpp
>> #usr/include/boost/asio/detail/signal_set_service.hpp
>> +#usr/include/boost/asio/detail/slim_mutex.hpp
>> #usr/include/boost/asio/detail/socket_holder.hpp
>> #usr/include/boost/asio/detail/socket_ops.hpp
>> #usr/include/boost/asio/detail/socket_option.hpp
>> @@ -674,6 +677,7 @@
>> #usr/include/boost/asio/detail/utility.hpp
>> #usr/include/boost/asio/detail/wait_handler.hpp
>> #usr/include/boost/asio/detail/wait_op.hpp
>> +#usr/include/boost/asio/detail/win_critsec_mutex.hpp
>> #usr/include/boost/asio/detail/win_event.hpp
>> #usr/include/boost/asio/detail/win_fd_set_adapter.hpp
>> #usr/include/boost/asio/detail/win_global.hpp
>> @@ -731,8 +735,6 @@
>> #usr/include/boost/asio/execution/context.hpp
>> #usr/include/boost/asio/execution/context_as.hpp
>> #usr/include/boost/asio/execution/executor.hpp
>> -#usr/include/boost/asio/execution/impl
>> -#usr/include/boost/asio/execution/impl/bad_executor.ipp
>> #usr/include/boost/asio/execution/inline_exception_handling.hpp
>> #usr/include/boost/asio/execution/invocable_archetype.hpp
>> #usr/include/boost/asio/execution/mapping.hpp
>> @@ -782,6 +784,7 @@
>> #usr/include/boost/asio/experimental/use_coro.hpp
>> #usr/include/boost/asio/experimental/use_promise.hpp
>> #usr/include/boost/asio/file_base.hpp
>> +#usr/include/boost/asio/fwd.hpp
>> #usr/include/boost/asio/generic
>> #usr/include/boost/asio/generic/basic_endpoint.hpp
>> #usr/include/boost/asio/generic/datagram_protocol.hpp
>> @@ -820,10 +823,8 @@
>> #usr/include/boost/asio/impl/execution_context.hpp
>> #usr/include/boost/asio/impl/execution_context.ipp
>> #usr/include/boost/asio/impl/executor.hpp
>> -#usr/include/boost/asio/impl/executor.ipp
>> #usr/include/boost/asio/impl/io_context.hpp
>> #usr/include/boost/asio/impl/io_context.ipp
>> -#usr/include/boost/asio/impl/multiple_exceptions.ipp
>> #usr/include/boost/asio/impl/prepend.hpp
>> #usr/include/boost/asio/impl/read.hpp
>> #usr/include/boost/asio/impl/read_at.hpp
>> @@ -1511,6 +1512,7 @@
>> #usr/include/boost/bimap/detail/map_view_base.hpp
>> #usr/include/boost/bimap/detail/map_view_iterator.hpp
>> #usr/include/boost/bimap/detail/modifier_adaptor.hpp
>> +#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
>> #usr/include/boost/bimap/detail/non_unique_views_helper.hpp
>> #usr/include/boost/bimap/detail/set_view_base.hpp
>> #usr/include/boost/bimap/detail/set_view_iterator.hpp
>> @@ -2390,11 +2392,13 @@
>> #usr/include/boost/container/detail/addressof.hpp
>> #usr/include/boost/container/detail/advanced_insert_int.hpp
>> #usr/include/boost/container/detail/algorithm.hpp
>> +#usr/include/boost/container/detail/aligned_allocation.hpp
>> #usr/include/boost/container/detail/alloc_helpers.hpp
>> #usr/include/boost/container/detail/alloc_lib.h
>> #usr/include/boost/container/detail/allocation_type.hpp
>> #usr/include/boost/container/detail/allocator_version_traits.hpp
>> #usr/include/boost/container/detail/auto_link.hpp
>> +#usr/include/boost/container/detail/bit_utilities.hpp
>> #usr/include/boost/container/detail/block_list.hpp
>> #usr/include/boost/container/detail/block_slist.hpp
>> #usr/include/boost/container/detail/compare_functors.hpp
>> @@ -2404,12 +2408,14 @@
>> #usr/include/boost/container/detail/container_or_allocator_rebind.hpp
>> #usr/include/boost/container/detail/container_rebind.hpp
>> #usr/include/boost/container/detail/copy_move_algo.hpp
>> +#usr/include/boost/container/detail/deque_impl.hpp
>> #usr/include/boost/container/detail/destroyers.hpp
>> #usr/include/boost/container/detail/dispatch_uses_allocator.hpp
>> #usr/include/boost/container/detail/dlmalloc.hpp
>> #usr/include/boost/container/detail/flat_tree.hpp
>> #usr/include/boost/container/detail/function_detector.hpp
>> #usr/include/boost/container/detail/guards_dended.hpp
>> +#usr/include/boost/container/detail/is_constructible.hpp
>> #usr/include/boost/container/detail/is_container.hpp
>> #usr/include/boost/container/detail/is_contiguous_container.hpp
>> #usr/include/boost/container/detail/is_pair.hpp
>> @@ -2434,6 +2440,7 @@
>> #usr/include/boost/container/detail/pool_common.hpp
>> #usr/include/boost/container/detail/pool_common_alloc.hpp
>> #usr/include/boost/container/detail/pool_resource.hpp
>> +#usr/include/boost/container/detail/range_utils.hpp
>> #usr/include/boost/container/detail/singleton.hpp
>> #usr/include/boost/container/detail/std_fwd.hpp
>> #usr/include/boost/container/detail/thread_mutex.hpp
>> @@ -2446,8 +2453,60 @@
>> #usr/include/boost/container/detail/version_type.hpp
>> #usr/include/boost/container/detail/workaround.hpp
>> #usr/include/boost/container/devector.hpp
>> +#usr/include/boost/container/experimental
>> +#usr/include/boost/container/experimental/nest.hpp
>> +#usr/include/boost/container/experimental/pmr
>> +#usr/include/boost/container/experimental/pmr/nest.hpp
>> +#usr/include/boost/container/experimental/segmented_all_of.hpp
>> +#usr/include/boost/container/experimental/segmented_any_of.hpp
>> +#usr/include/boost/container/experimental/segmented_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_copy_if.hpp
>> +#usr/include/boost/container/experimental/segmented_copy_n.hpp
>> +#usr/include/boost/container/experimental/segmented_count.hpp
>> +#usr/include/boost/container/experimental/segmented_count_if.hpp
>> +#usr/include/boost/container/experimental/segmented_equal.hpp
>> +#usr/include/boost/container/experimental/segmented_fill.hpp
>> +#usr/include/boost/container/experimental/segmented_fill_n.hpp
>> +#usr/include/boost/container/experimental/segmented_find.hpp
>> +#usr/include/boost/container/experimental/segmented_find_if.hpp
>> +#usr/include/boost/container/experimental/segmented_find_if_not.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last_if.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
>> +#usr/include/boost/container/experimental/segmented_for_each.hpp
>> +#usr/include/boost/container/experimental/segmented_generate.hpp
>> +#usr/include/boost/container/experimental/segmented_generate_n.hpp
>> +#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
>> +#usr/include/boost/container/experimental/segmented_is_sorted.hpp
>> +#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
>> +#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
>> +#usr/include/boost/container/experimental/segmented_merge.hpp
>> +#usr/include/boost/container/experimental/segmented_mismatch.hpp
>> +#usr/include/boost/container/experimental/segmented_none_of.hpp
>> +#usr/include/boost/container/experimental/segmented_partition.hpp
>> +#usr/include/boost/container/experimental/segmented_partition_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_partition_point.hpp
>> +#usr/include/boost/container/experimental/segmented_remove.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_if.hpp
>> +#usr/include/boost/container/experimental/segmented_replace.hpp
>> +#usr/include/boost/container/experimental/segmented_replace_if.hpp
>> +#usr/include/boost/container/experimental/segmented_reverse.hpp
>> +#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_search.hpp
>> +#usr/include/boost/container/experimental/segmented_search_n.hpp
>> +#usr/include/boost/container/experimental/segmented_set_difference.hpp
>> +#usr/include/boost/container/experimental/segmented_set_intersection.hpp
>> +#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
>> +#usr/include/boost/container/experimental/segmented_set_union.hpp
>> +#usr/include/boost/container/experimental/segmented_stable_partition.hpp
>> +#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
>> +#usr/include/boost/container/experimental/segmented_transform.hpp
>> +#usr/include/boost/container/experimental/wrapped_iterator.hpp
>> #usr/include/boost/container/flat_map.hpp
>> #usr/include/boost/container/flat_set.hpp
>> +#usr/include/boost/container/hub.hpp
>> #usr/include/boost/container/list.hpp
>> #usr/include/boost/container/map.hpp
>> #usr/include/boost/container/new_allocator.hpp
>> @@ -2460,6 +2519,7 @@
>> #usr/include/boost/container/pmr/flat_map.hpp
>> #usr/include/boost/container/pmr/flat_set.hpp
>> #usr/include/boost/container/pmr/global_resource.hpp
>> +#usr/include/boost/container/pmr/hub.hpp
>> #usr/include/boost/container/pmr/list.hpp
>> #usr/include/boost/container/pmr/map.hpp
>> #usr/include/boost/container/pmr/memory_resource.hpp
>> @@ -2467,6 +2527,7 @@
>> #usr/include/boost/container/pmr/polymorphic_allocator.hpp
>> #usr/include/boost/container/pmr/pool_options.hpp
>> #usr/include/boost/container/pmr/resource_adaptor.hpp
>> +#usr/include/boost/container/pmr/segtor.hpp
>> #usr/include/boost/container/pmr/set.hpp
>> #usr/include/boost/container/pmr/slist.hpp
>> #usr/include/boost/container/pmr/small_vector.hpp
>> @@ -2477,6 +2538,7 @@
>> #usr/include/boost/container/pmr/vector.hpp
>> #usr/include/boost/container/scoped_allocator.hpp
>> #usr/include/boost/container/scoped_allocator_fwd.hpp
>> +#usr/include/boost/container/segtor.hpp
>> #usr/include/boost/container/set.hpp
>> #usr/include/boost/container/slist.hpp
>> #usr/include/boost/container/small_vector.hpp
>> @@ -2485,6 +2547,7 @@
>> #usr/include/boost/container/string.hpp
>> #usr/include/boost/container/throw_exception.hpp
>> #usr/include/boost/container/uses_allocator.hpp
>> +#usr/include/boost/container/uses_allocator_construction.hpp
>> #usr/include/boost/container/uses_allocator_fwd.hpp
>> #usr/include/boost/container/vector.hpp
>> #usr/include/boost/container_hash
>> @@ -2605,6 +2668,9 @@
>> #usr/include/boost/contract/override.hpp
>> #usr/include/boost/contract/public_function.hpp
>> #usr/include/boost/contract_macro.hpp
>> +#usr/include/boost/conversion
>> +#usr/include/boost/conversion/detail
>> +#usr/include/boost/conversion/detail/config.hpp
>> #usr/include/boost/convert
>> #usr/include/boost/convert.hpp
>> #usr/include/boost/convert/base.hpp
>> @@ -2865,6 +2931,211 @@
>> #usr/include/boost/date_time/tz_db_base.hpp
>> #usr/include/boost/date_time/wrapping_int.hpp
>> #usr/include/boost/date_time/year_month_day.hpp
>> +#usr/include/boost/decimal
>> +#usr/include/boost/decimal.hpp
>> +#usr/include/boost/decimal/bid_conversion.hpp
>> +#usr/include/boost/decimal/cfenv.hpp
>> +#usr/include/boost/decimal/cfloat.hpp
>> +#usr/include/boost/decimal/charconv.hpp
>> +#usr/include/boost/decimal/cmath.hpp
>> +#usr/include/boost/decimal/cstdio.hpp
>> +#usr/include/boost/decimal/cstdlib.hpp
>> +#usr/include/boost/decimal/decimal128_t.hpp
>> +#usr/include/boost/decimal/decimal32_t.hpp
>> +#usr/include/boost/decimal/decimal64_t.hpp
>> +#usr/include/boost/decimal/decimal_fast128_t.hpp
>> +#usr/include/boost/decimal/decimal_fast32_t.hpp
>> +#usr/include/boost/decimal/decimal_fast64_t.hpp
>> +#usr/include/boost/decimal/detail
>> +#usr/include/boost/decimal/detail/add_impl.hpp
>> +#usr/include/boost/decimal/detail/apply_sign.hpp
>> +#usr/include/boost/decimal/detail/attributes.hpp
>> +#usr/include/boost/decimal/detail/bit_cast.hpp
>> +#usr/include/boost/decimal/detail/bit_layouts.hpp
>> +#usr/include/boost/decimal/detail/buffer_sizing.hpp
>> +#usr/include/boost/decimal/detail/chars_format.hpp
>> +#usr/include/boost/decimal/detail/check_non_finite.hpp
>> +#usr/include/boost/decimal/detail/cmath
>> +#usr/include/boost/decimal/detail/cmath/abs.hpp
>> +#usr/include/boost/decimal/detail/cmath/acos.hpp
>> +#usr/include/boost/decimal/detail/cmath/acosh.hpp
>> +#usr/include/boost/decimal/detail/cmath/asin.hpp
>> +#usr/include/boost/decimal/detail/cmath/asinh.hpp
>> +#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
>> +#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
>> +#usr/include/boost/decimal/detail/cmath/atan.hpp
>> +#usr/include/boost/decimal/detail/cmath/atan2.hpp
>> +#usr/include/boost/decimal/detail/cmath/atanh.hpp
>> +#usr/include/boost/decimal/detail/cmath/beta.hpp
>> +#usr/include/boost/decimal/detail/cmath/cbrt.hpp
>> +#usr/include/boost/decimal/detail/cmath/ceil.hpp
>> +#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
>> +#usr/include/boost/decimal/detail/cmath/cos.hpp
>> +#usr/include/boost/decimal/detail/cmath/cosh.hpp
>> +#usr/include/boost/decimal/detail/cmath/decompose.hpp
>> +#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
>> +#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
>> +#usr/include/boost/decimal/detail/cmath/erf.hpp
>> +#usr/include/boost/decimal/detail/cmath/exp.hpp
>> +#usr/include/boost/decimal/detail/cmath/exp2.hpp
>> +#usr/include/boost/decimal/detail/cmath/expm1.hpp
>> +#usr/include/boost/decimal/detail/cmath/fabs.hpp
>> +#usr/include/boost/decimal/detail/cmath/fdim.hpp
>> +#usr/include/boost/decimal/detail/cmath/floor.hpp
>> +#usr/include/boost/decimal/detail/cmath/fma.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmax.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmin.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmod.hpp
>> +#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
>> +#usr/include/boost/decimal/detail/cmath/frexp.hpp
>> +#usr/include/boost/decimal/detail/cmath/frexp10.hpp
>> +#usr/include/boost/decimal/detail/cmath/hermite.hpp
>> +#usr/include/boost/decimal/detail/cmath/hypot.hpp
>> +#usr/include/boost/decimal/detail/cmath/ilogb.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl
>> +#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/isfinite.hpp
>> +#usr/include/boost/decimal/detail/cmath/isgreater.hpp
>> +#usr/include/boost/decimal/detail/cmath/isless.hpp
>> +#usr/include/boost/decimal/detail/cmath/isunordered.hpp
>> +#usr/include/boost/decimal/detail/cmath/laguerre.hpp
>> +#usr/include/boost/decimal/detail/cmath/ldexp.hpp
>> +#usr/include/boost/decimal/detail/cmath/legendre.hpp
>> +#usr/include/boost/decimal/detail/cmath/lgamma.hpp
>> +#usr/include/boost/decimal/detail/cmath/log.hpp
>> +#usr/include/boost/decimal/detail/cmath/log10.hpp
>> +#usr/include/boost/decimal/detail/cmath/log1p.hpp
>> +#usr/include/boost/decimal/detail/cmath/log2.hpp
>> +#usr/include/boost/decimal/detail/cmath/logb.hpp
>> +#usr/include/boost/decimal/detail/cmath/modf.hpp
>> +#usr/include/boost/decimal/detail/cmath/nan.hpp
>> +#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
>> +#usr/include/boost/decimal/detail/cmath/next.hpp
>> +#usr/include/boost/decimal/detail/cmath/normalize.hpp
>> +#usr/include/boost/decimal/detail/cmath/pow.hpp
>> +#usr/include/boost/decimal/detail/cmath/remainder.hpp
>> +#usr/include/boost/decimal/detail/cmath/remquo.hpp
>> +#usr/include/boost/decimal/detail/cmath/rescale.hpp
>> +#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
>> +#usr/include/boost/decimal/detail/cmath/rint.hpp
>> +#usr/include/boost/decimal/detail/cmath/round.hpp
>> +#usr/include/boost/decimal/detail/cmath/sin.hpp
>> +#usr/include/boost/decimal/detail/cmath/sinh.hpp
>> +#usr/include/boost/decimal/detail/cmath/sqrt.hpp
>> +#usr/include/boost/decimal/detail/cmath/tan.hpp
>> +#usr/include/boost/decimal/detail/cmath/tanh.hpp
>> +#usr/include/boost/decimal/detail/cmath/tgamma.hpp
>> +#usr/include/boost/decimal/detail/cmath/trunc.hpp
>> +#usr/include/boost/decimal/detail/comparison.hpp
>> +#usr/include/boost/decimal/detail/components.hpp
>> +#usr/include/boost/decimal/detail/concepts.hpp
>> +#usr/include/boost/decimal/detail/config.hpp
>> +#usr/include/boost/decimal/detail/construction_sign.hpp
>> +#usr/include/boost/decimal/detail/countl.hpp
>> +#usr/include/boost/decimal/detail/div_impl.hpp
>> +#usr/include/boost/decimal/detail/fast_float
>> +#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
>> +#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
>> +#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
>> +#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
>> +#usr/include/boost/decimal/detail/fenv_rounding.hpp
>> +#usr/include/boost/decimal/detail/formatting_limits.hpp
>> +#usr/include/boost/decimal/detail/from_chars_impl.hpp
>> +#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
>> +#usr/include/boost/decimal/detail/from_chars_result.hpp
>> +#usr/include/boost/decimal/detail/fwd_log.hpp
>> +#usr/include/boost/decimal/detail/i256.hpp
>> +#usr/include/boost/decimal/detail/int128
>> +#usr/include/boost/decimal/detail/int128.hpp
>> +#usr/include/boost/decimal/detail/int128/bit.hpp
>> +#usr/include/boost/decimal/detail/int128/climits.hpp
>> +#usr/include/boost/decimal/detail/int128/cstdlib.hpp
>> +#usr/include/boost/decimal/detail/int128/detail
>> +#usr/include/boost/decimal/detail/int128/detail/clz.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/config.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/constants.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/traits.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
>> +#usr/include/boost/decimal/detail/int128/fmt_format.hpp
>> +#usr/include/boost/decimal/detail/int128/format.hpp
>> +#usr/include/boost/decimal/detail/int128/int128.hpp
>> +#usr/include/boost/decimal/detail/int128/iostream.hpp
>> +#usr/include/boost/decimal/detail/int128/limits.hpp
>> +#usr/include/boost/decimal/detail/int128/literals.hpp
>> +#usr/include/boost/decimal/detail/int128/numeric.hpp
>> +#usr/include/boost/decimal/detail/int128/random.hpp
>> +#usr/include/boost/decimal/detail/int128/string.hpp
>> +#usr/include/boost/decimal/detail/integer_search_trees.hpp
>> +#usr/include/boost/decimal/detail/io.hpp
>> +#usr/include/boost/decimal/detail/is_power_of_10.hpp
>> +#usr/include/boost/decimal/detail/locale_conversion.hpp
>> +#usr/include/boost/decimal/detail/memcpy.hpp
>> +#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
>> +#usr/include/boost/decimal/detail/mod_impl.hpp
>> +#usr/include/boost/decimal/detail/mul_impl.hpp
>> +#usr/include/boost/decimal/detail/normalize.hpp
>> +#usr/include/boost/decimal/detail/parser.hpp
>> +#usr/include/boost/decimal/detail/power_tables.hpp
>> +#usr/include/boost/decimal/detail/promote_significand.hpp
>> +#usr/include/boost/decimal/detail/promotion.hpp
>> +#usr/include/boost/decimal/detail/quantize_impl.hpp
>> +#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
>> +#usr/include/boost/decimal/detail/ryu
>> +#usr/include/boost/decimal/detail/ryu/generic_128.hpp
>> +#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
>> +#usr/include/boost/decimal/detail/shrink_significand.hpp
>> +#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
>> +#usr/include/boost/decimal/detail/to_chars_result.hpp
>> +#usr/include/boost/decimal/detail/to_decimal.hpp
>> +#usr/include/boost/decimal/detail/to_float.hpp
>> +#usr/include/boost/decimal/detail/to_integral.hpp
>> +#usr/include/boost/decimal/detail/type_traits.hpp
>> +#usr/include/boost/decimal/detail/u256.hpp
>> +#usr/include/boost/decimal/detail/utilities.hpp
>> +#usr/include/boost/decimal/detail/write_payload.hpp
>> +#usr/include/boost/decimal/dpd_conversion.hpp
>> +#usr/include/boost/decimal/fmt_format.hpp
>> +#usr/include/boost/decimal/format.hpp
>> +#usr/include/boost/decimal/fwd.hpp
>> +#usr/include/boost/decimal/hash.hpp
>> +#usr/include/boost/decimal/iostream.hpp
>> +#usr/include/boost/decimal/literals.hpp
>> +#usr/include/boost/decimal/numbers.hpp
>> +#usr/include/boost/decimal/string.hpp
>> +#usr/include/boost/decimal/uint128_t.hpp
>> #usr/include/boost/describe
>> #usr/include/boost/describe.hpp
>> #usr/include/boost/describe/bases.hpp
>> @@ -2909,7 +3180,6 @@
>> #usr/include/boost/detail/is_sorted.hpp
>> #usr/include/boost/detail/is_xxx.hpp
>> #usr/include/boost/detail/iterator.hpp
>> -#usr/include/boost/detail/lcast_precision.hpp
>> #usr/include/boost/detail/lightweight_main.hpp
>> #usr/include/boost/detail/lightweight_mutex.hpp
>> #usr/include/boost/detail/lightweight_test.hpp
>> @@ -2993,6 +3263,7 @@
>> #usr/include/boost/dll/config.hpp
>> #usr/include/boost/dll/detail
>> #usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
>> +#usr/include/boost/dll/detail/config.hpp
>> #usr/include/boost/dll/detail/ctor_dtor.hpp
>> #usr/include/boost/dll/detail/demangling
>> #usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
>> @@ -3057,6 +3328,7 @@
>> #usr/include/boost/exception/current_exception_cast.hpp
>> #usr/include/boost/exception/detail
>> #usr/include/boost/exception/detail/clone_current_exception.hpp
>> +#usr/include/boost/exception/detail/encoder.hpp
>> #usr/include/boost/exception/detail/error_info_impl.hpp
>> #usr/include/boost/exception/detail/exception_ptr.hpp
>> #usr/include/boost/exception/detail/is_output_streamable.hpp
>> @@ -3080,6 +3352,9 @@
>> #usr/include/boost/exception/get_error_info.hpp
>> #usr/include/boost/exception/info.hpp
>> #usr/include/boost/exception/info_tuple.hpp
>> +#usr/include/boost/exception/serialization
>> +#usr/include/boost/exception/serialization/boost_json_encoder.hpp
>> +#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
>> #usr/include/boost/exception/to_string.hpp
>> #usr/include/boost/exception/to_string_stub.hpp
>> #usr/include/boost/exception_ptr.hpp
>> @@ -5091,8 +5366,6 @@
>> #usr/include/boost/geometry/index/detail/tags.hpp
>> #usr/include/boost/geometry/index/detail/translator.hpp
>> #usr/include/boost/geometry/index/detail/utilities.hpp
>> -#usr/include/boost/geometry/index/detail/varray.hpp
>> -#usr/include/boost/geometry/index/detail/varray_detail.hpp
>> #usr/include/boost/geometry/index/distance_predicates.hpp
>> #usr/include/boost/geometry/index/equal_to.hpp
>> #usr/include/boost/geometry/index/indexable.hpp
>> @@ -6077,6 +6350,8 @@
>> #usr/include/boost/graph/leda_graph.hpp
>> #usr/include/boost/graph/lookup_edge.hpp
>> #usr/include/boost/graph/loop_erased_random_walk.hpp
>> +#usr/include/boost/graph/louvain_clustering.hpp
>> +#usr/include/boost/graph/louvain_quality_functions.hpp
>> #usr/include/boost/graph/make_biconnected_planar.hpp
>> #usr/include/boost/graph/make_connected.hpp
>> #usr/include/boost/graph/make_maximal_planar.hpp
>> @@ -6679,6 +6954,7 @@
>> #usr/include/boost/heap/detail
>> #usr/include/boost/heap/detail/heap_comparison.hpp
>> #usr/include/boost/heap/detail/heap_node.hpp
>> +#usr/include/boost/heap/detail/heap_utils.hpp
>> #usr/include/boost/heap/detail/ilog2.hpp
>> #usr/include/boost/heap/detail/mutable_heap.hpp
>> #usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
>> @@ -6888,8 +7164,10 @@
>> #usr/include/boost/icl/concept/set_value.hpp
>> #usr/include/boost/icl/continuous_interval.hpp
>> #usr/include/boost/icl/detail
>> +#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
>> #usr/include/boost/icl/detail/associated_value.hpp
>> #usr/include/boost/icl/detail/boost_config.hpp
>> +#usr/include/boost/icl/detail/co_equal_fwd.hpp
>> #usr/include/boost/icl/detail/concept_check.hpp
>> #usr/include/boost/icl/detail/design_config.hpp
>> #usr/include/boost/icl/detail/element_comparer.hpp
>> @@ -6899,12 +7177,14 @@
>> #usr/include/boost/icl/detail/interval_morphism.hpp
>> #usr/include/boost/icl/detail/interval_set_algo.hpp
>> #usr/include/boost/icl/detail/interval_subset_comparer.hpp
>> +#usr/include/boost/icl/detail/map_adaptor.hpp
>> #usr/include/boost/icl/detail/map_algo.hpp
>> #usr/include/boost/icl/detail/mapped_reference.hpp
>> #usr/include/boost/icl/detail/notate.hpp
>> #usr/include/boost/icl/detail/on_absorbtion.hpp
>> #usr/include/boost/icl/detail/relation_state.hpp
>> #usr/include/boost/icl/detail/requires_cxx11.hpp
>> +#usr/include/boost/icl/detail/set_adaptor.hpp
>> #usr/include/boost/icl/detail/set_algo.hpp
>> #usr/include/boost/icl/detail/std_set.hpp
>> #usr/include/boost/icl/detail/subset_comparer.hpp
>> @@ -7585,6 +7865,7 @@
>> #usr/include/boost/json/impl/value_ref.ipp
>> #usr/include/boost/json/impl/value_stack.ipp
>> #usr/include/boost/json/impl/visit.hpp
>> +#usr/include/boost/json/impl/visit.ipp
>> #usr/include/boost/json/is_deallocate_trivial.hpp
>> #usr/include/boost/json/kind.hpp
>> #usr/include/boost/json/monotonic_resource.hpp
>> @@ -7660,15 +7941,20 @@
>> #usr/include/boost/leaf/config/tls_cpp11.hpp
>> #usr/include/boost/leaf/config/tls_freertos.hpp
>> #usr/include/boost/leaf/config/tls_globals.hpp
>> +#usr/include/boost/leaf/config/tls_win32.hpp
>> +#usr/include/boost/leaf/config/visibility.hpp
>> #usr/include/boost/leaf/context.hpp
>> #usr/include/boost/leaf/detail
>> #usr/include/boost/leaf/detail/all.hpp
>> #usr/include/boost/leaf/detail/capture_list.hpp
>> #usr/include/boost/leaf/detail/demangle.hpp
>> +#usr/include/boost/leaf/detail/diagnostics_writer.hpp
>> +#usr/include/boost/leaf/detail/encoder.hpp
>> +#usr/include/boost/leaf/detail/exception_base.hpp
>> #usr/include/boost/leaf/detail/function_traits.hpp
>> #usr/include/boost/leaf/detail/mp11.hpp
>> #usr/include/boost/leaf/detail/optional.hpp
>> -#usr/include/boost/leaf/detail/print.hpp
>> +#usr/include/boost/leaf/detail/type_name.hpp
>> #usr/include/boost/leaf/diagnostics.hpp
>> #usr/include/boost/leaf/error.hpp
>> #usr/include/boost/leaf/exception.hpp
>> @@ -7676,12 +7962,16 @@
>> #usr/include/boost/leaf/on_error.hpp
>> #usr/include/boost/leaf/pred.hpp
>> #usr/include/boost/leaf/result.hpp
>> +#usr/include/boost/leaf/serialization
>> +#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
>> +#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
>> #usr/include/boost/leaf/to_variant.hpp
>> #usr/include/boost/lexical_cast
>> #usr/include/boost/lexical_cast.hpp
>> #usr/include/boost/lexical_cast/bad_lexical_cast.hpp
>> #usr/include/boost/lexical_cast/detail
>> #usr/include/boost/lexical_cast/detail/buffer_view.hpp
>> +#usr/include/boost/lexical_cast/detail/config.hpp
>> #usr/include/boost/lexical_cast/detail/converter_lexical.hpp
>> #usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
>> #usr/include/boost/lexical_cast/detail/converter_numeric.hpp
>> @@ -7689,6 +7979,7 @@
>> #usr/include/boost/lexical_cast/detail/is_character.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
>> +#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
>> #usr/include/boost/lexical_cast/detail/type_traits.hpp
>> #usr/include/boost/lexical_cast/detail/widest_char.hpp
>> @@ -7798,17 +8089,20 @@
>> #usr/include/boost/locale/util/locale_data.hpp
>> #usr/include/boost/locale/util/string.hpp
>> #usr/include/boost/lockfree
>> +#usr/include/boost/lockfree/bounded_ticket_queue.hpp
>> #usr/include/boost/lockfree/detail
>> #usr/include/boost/lockfree/detail/atomic.hpp
>> #usr/include/boost/lockfree/detail/copy_payload.hpp
>> #usr/include/boost/lockfree/detail/freelist.hpp
>> #usr/include/boost/lockfree/detail/parameter.hpp
>> +#usr/include/boost/lockfree/detail/power_of_two.hpp
>> #usr/include/boost/lockfree/detail/prefix.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
>> #usr/include/boost/lockfree/detail/uses_optional.hpp
>> #usr/include/boost/lockfree/lockfree_forward.hpp
>> +#usr/include/boost/lockfree/mpsc_weak_queue.hpp
>> #usr/include/boost/lockfree/policies.hpp
>> #usr/include/boost/lockfree/queue.hpp
>> #usr/include/boost/lockfree/spsc_queue.hpp
>> @@ -8283,8 +8577,17 @@
>> #usr/include/boost/math/optimization/cma_es.hpp
>> #usr/include/boost/math/optimization/detail
>> #usr/include/boost/math/optimization/detail/common.hpp
>> +#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
>> +#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
>> +#usr/include/boost/math/optimization/detail/line_search_policies.hpp
>> +#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
>> #usr/include/boost/math/optimization/differential_evolution.hpp
>> +#usr/include/boost/math/optimization/gradient_descent.hpp
>> +#usr/include/boost/math/optimization/gradient_optimizers.hpp
>> #usr/include/boost/math/optimization/jso.hpp
>> +#usr/include/boost/math/optimization/lbfgs.hpp
>> +#usr/include/boost/math/optimization/minimizer.hpp
>> +#usr/include/boost/math/optimization/nesterov.hpp
>> #usr/include/boost/math/optimization/random_search.hpp
>> #usr/include/boost/math/policies
>> #usr/include/boost/math/policies/error_handling.hpp
>> @@ -10296,12 +10599,23 @@
>> #usr/include/boost/msm/backmp11
>> #usr/include/boost/msm/backmp11/common_types.hpp
>> #usr/include/boost/msm/backmp11/detail
>> -#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
>> +#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
>> +#usr/include/boost/msm/backmp11/detail/common.hpp
>> +#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
>> #usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
>> #usr/include/boost/msm/backmp11/detail/history_impl.hpp
>> #usr/include/boost/msm/backmp11/detail/metafunctions.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_tags.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
>> +#usr/include/boost/msm/backmp11/detail/transition_table.hpp
>> #usr/include/boost/msm/backmp11/event_traits.hpp
>> #usr/include/boost/msm/backmp11/favor_compile_time.hpp
>> +#usr/include/boost/msm/backmp11/observer.hpp
>> +#usr/include/boost/msm/backmp11/serialization
>> +#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
>> +#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
>> +#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
>> #usr/include/boost/msm/backmp11/state_machine.hpp
>> #usr/include/boost/msm/backmp11/state_machine_config.hpp
>> #usr/include/boost/msm/common.hpp
>> @@ -10312,6 +10626,7 @@
>> #usr/include/boost/msm/front/detail
>> #usr/include/boost/msm/front/detail/common_states.hpp
>> #usr/include/boost/msm/front/detail/row2_helper.hpp
>> +#usr/include/boost/msm/front/detail/state_tags.hpp
>> #usr/include/boost/msm/front/euml
>> #usr/include/boost/msm/front/euml/algorithm.hpp
>> #usr/include/boost/msm/front/euml/common.hpp
>> @@ -10373,11 +10688,10 @@
>> #usr/include/boost/multi_index
>> #usr/include/boost/multi_index/composite_key.hpp
>> #usr/include/boost/multi_index/detail
>> -#usr/include/boost/multi_index/detail/access_specifier.hpp
>> #usr/include/boost/multi_index/detail/adl_swap.hpp
>> -#usr/include/boost/multi_index/detail/allocator_traits.hpp
>> #usr/include/boost/multi_index/detail/any_container_view.hpp
>> #usr/include/boost/multi_index/detail/archive_constructed.hpp
>> +#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
>> #usr/include/boost/multi_index/detail/auto_space.hpp
>> #usr/include/boost/multi_index/detail/bad_archive_exception.hpp
>> #usr/include/boost/multi_index/detail/base_type.hpp
>> @@ -10408,7 +10722,9 @@
>> #usr/include/boost/multi_index/detail/is_transparent.hpp
>> #usr/include/boost/multi_index/detail/iter_adaptor.hpp
>> #usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
>> +#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
>> #usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
>> +#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
>> #usr/include/boost/multi_index/detail/node_handle.hpp
>> #usr/include/boost/multi_index/detail/node_type.hpp
>> #usr/include/boost/multi_index/detail/ord_index_args.hpp
>> @@ -10431,11 +10747,11 @@
>> #usr/include/boost/multi_index/detail/seq_index_node.hpp
>> #usr/include/boost/multi_index/detail/seq_index_ops.hpp
>> #usr/include/boost/multi_index/detail/serialization_version.hpp
>> +#usr/include/boost/multi_index/detail/type_list.hpp
>> #usr/include/boost/multi_index/detail/uintptr_type.hpp
>> #usr/include/boost/multi_index/detail/unbounded.hpp
>> #usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
>> #usr/include/boost/multi_index/detail/value_compare.hpp
>> -#usr/include/boost/multi_index/detail/vartempl_support.hpp
>> #usr/include/boost/multi_index/global_fun.hpp
>> #usr/include/boost/multi_index/hashed_index.hpp
>> #usr/include/boost/multi_index/hashed_index_fwd.hpp
>> @@ -10678,6 +10994,7 @@
>> #usr/include/boost/mysql/impl/internal/error
>> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
>> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
>> +#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
>> #usr/include/boost/mysql/impl/internal/protocol
>> #usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
>> #usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
>> @@ -11176,6 +11493,7 @@
>> #usr/include/boost/openmethod/initialize.hpp
>> #usr/include/boost/openmethod/inplace_vptr.hpp
>> #usr/include/boost/openmethod/interop
>> +#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
>> #usr/include/boost/openmethod/interop/std_shared_ptr.hpp
>> #usr/include/boost/openmethod/interop/std_unique_ptr.hpp
>> #usr/include/boost/openmethod/macros.hpp
>> @@ -11197,14 +11515,17 @@
>> #usr/include/boost/optional/detail
>> #usr/include/boost/optional/detail/experimental_traits.hpp
>> #usr/include/boost/optional/detail/optional_aligned_storage.hpp
>> +#usr/include/boost/optional/detail/optional_common_defs.hpp
>> #usr/include/boost/optional/detail/optional_config.hpp
>> #usr/include/boost/optional/detail/optional_factory_support.hpp
>> #usr/include/boost/optional/detail/optional_hash.hpp
>> +#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
>> #usr/include/boost/optional/detail/optional_reference_spec.hpp
>> #usr/include/boost/optional/detail/optional_relops.hpp
>> +#usr/include/boost/optional/detail/optional_select_implementation.hpp
>> #usr/include/boost/optional/detail/optional_swap.hpp
>> #usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
>> -#usr/include/boost/optional/detail/optional_utility.hpp
>> +#usr/include/boost/optional/detail/union_optional.hpp
>> #usr/include/boost/optional/optional.hpp
>> #usr/include/boost/optional/optional_fwd.hpp
>> #usr/include/boost/optional/optional_io.hpp
>> @@ -11489,9 +11810,11 @@
>> #usr/include/boost/pfr/detail/core17.hpp
>> #usr/include/boost/pfr/detail/core17_generated.hpp
>> #usr/include/boost/pfr/detail/core26.hpp
>> +#usr/include/boost/pfr/detail/core26_reflection.hpp
>> #usr/include/boost/pfr/detail/core_name.hpp
>> #usr/include/boost/pfr/detail/core_name14_disabled.hpp
>> #usr/include/boost/pfr/detail/core_name20_static.hpp
>> +#usr/include/boost/pfr/detail/core_name26_reflection.hpp
>> #usr/include/boost/pfr/detail/detectors.hpp
>> #usr/include/boost/pfr/detail/fake_object.hpp
>> #usr/include/boost/pfr/detail/fields_count.hpp
>> @@ -13245,6 +13568,7 @@
>> #usr/include/boost/python/detail/pointee.hpp
>> #usr/include/boost/python/detail/prefix.hpp
>> #usr/include/boost/python/detail/preprocessor.hpp
>> +#usr/include/boost/python/detail/pymutex.hpp
>> #usr/include/boost/python/detail/python22_fixed.h
>> #usr/include/boost/python/detail/python_type.hpp
>> #usr/include/boost/python/detail/raw_pyobject.hpp
>> @@ -13750,15 +14074,20 @@
>> #usr/include/boost/redis/connection.hpp
>> #usr/include/boost/redis/detail
>> #usr/include/boost/redis/detail/connect_fsm.hpp
>> +#usr/include/boost/redis/detail/connect_params.hpp
>> #usr/include/boost/redis/detail/connection_state.hpp
>> #usr/include/boost/redis/detail/coroutine.hpp
>> #usr/include/boost/redis/detail/exec_fsm.hpp
>> +#usr/include/boost/redis/detail/exec_one_fsm.hpp
>> #usr/include/boost/redis/detail/multiplexer.hpp
>> #usr/include/boost/redis/detail/read_buffer.hpp
>> #usr/include/boost/redis/detail/reader_fsm.hpp
>> +#usr/include/boost/redis/detail/receive_fsm.hpp
>> #usr/include/boost/redis/detail/redis_stream.hpp
>> #usr/include/boost/redis/detail/resp3_type_to_error.hpp
>> #usr/include/boost/redis/detail/run_fsm.hpp
>> +#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
>> +#usr/include/boost/redis/detail/subscription_tracker.hpp
>> #usr/include/boost/redis/detail/write.hpp
>> #usr/include/boost/redis/detail/writer_fsm.hpp
>> #usr/include/boost/redis/error.hpp
>> @@ -13768,23 +14097,32 @@
>> #usr/include/boost/redis/impl/connection.ipp
>> #usr/include/boost/redis/impl/error.ipp
>> #usr/include/boost/redis/impl/exec_fsm.ipp
>> +#usr/include/boost/redis/impl/exec_one_fsm.ipp
>> +#usr/include/boost/redis/impl/flat_tree.ipp
>> #usr/include/boost/redis/impl/ignore.ipp
>> #usr/include/boost/redis/impl/is_terminal_cancel.hpp
>> #usr/include/boost/redis/impl/log_to_file.hpp
>> #usr/include/boost/redis/impl/log_utils.hpp
>> #usr/include/boost/redis/impl/logger.ipp
>> #usr/include/boost/redis/impl/multiplexer.ipp
>> +#usr/include/boost/redis/impl/push_parser.ipp
>> #usr/include/boost/redis/impl/read_buffer.ipp
>> #usr/include/boost/redis/impl/reader_fsm.ipp
>> +#usr/include/boost/redis/impl/receive_fsm.ipp
>> #usr/include/boost/redis/impl/request.ipp
>> #usr/include/boost/redis/impl/response.ipp
>> #usr/include/boost/redis/impl/run_fsm.ipp
>> +#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
>> +#usr/include/boost/redis/impl/sentinel_utils.hpp
>> #usr/include/boost/redis/impl/setup_request_utils.hpp
>> +#usr/include/boost/redis/impl/subscription_tracker.ipp
>> #usr/include/boost/redis/impl/writer_fsm.ipp
>> #usr/include/boost/redis/logger.hpp
>> #usr/include/boost/redis/operation.hpp
>> +#usr/include/boost/redis/push_parser.hpp
>> #usr/include/boost/redis/request.hpp
>> #usr/include/boost/redis/resp3
>> +#usr/include/boost/redis/resp3/flat_tree.hpp
>> #usr/include/boost/redis/resp3/impl
>> #usr/include/boost/redis/resp3/impl/parser.ipp
>> #usr/include/boost/redis/resp3/impl/serialization.ipp
>> @@ -13792,6 +14130,7 @@
>> #usr/include/boost/redis/resp3/node.hpp
>> #usr/include/boost/redis/resp3/parser.hpp
>> #usr/include/boost/redis/resp3/serialization.hpp
>> +#usr/include/boost/redis/resp3/tree.hpp
>> #usr/include/boost/redis/resp3/type.hpp
>> #usr/include/boost/redis/response.hpp
>> #usr/include/boost/redis/src.hpp
>> @@ -15352,9 +15691,11 @@
>> #usr/include/boost/stacktrace/detail/addr2line_impls.hpp
>> #usr/include/boost/stacktrace/detail/addr_base.hpp
>> #usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
>> +#usr/include/boost/stacktrace/detail/backend_config.hpp
>> #usr/include/boost/stacktrace/detail/collect_msvc.ipp
>> #usr/include/boost/stacktrace/detail/collect_noop.ipp
>> #usr/include/boost/stacktrace/detail/collect_unwind.ipp
>> +#usr/include/boost/stacktrace/detail/config.hpp
>> #usr/include/boost/stacktrace/detail/frame_decl.hpp
>> #usr/include/boost/stacktrace/detail/frame_msvc.ipp
>> #usr/include/boost/stacktrace/detail/frame_noop.ipp
>> @@ -15408,7 +15749,10 @@
>> #usr/include/boost/statechart/state_machine.hpp
>> #usr/include/boost/statechart/termination.hpp
>> #usr/include/boost/statechart/transition.hpp
>> +#usr/include/boost/static_assert
>> #usr/include/boost/static_assert.hpp
>> +#usr/include/boost/static_assert/detail
>> +#usr/include/boost/static_assert/detail/backward.hpp
>> #usr/include/boost/static_string
>> #usr/include/boost/static_string.hpp
>> #usr/include/boost/static_string/config.hpp
>> @@ -15442,6 +15786,7 @@
>> #usr/include/boost/system/detail/generic_category.hpp
>> #usr/include/boost/system/detail/generic_category_message.hpp
>> #usr/include/boost/system/detail/interop_category.hpp
>> +#usr/include/boost/system/detail/is_aggregate.hpp
>> #usr/include/boost/system/detail/is_same.hpp
>> #usr/include/boost/system/detail/mutex.hpp
>> #usr/include/boost/system/detail/snprintf.hpp
>> @@ -15464,6 +15809,7 @@
>> #usr/include/boost/system/result.hpp
>> #usr/include/boost/system/system_category.hpp
>> #usr/include/boost/system/system_error.hpp
>> +#usr/include/boost/system/unwrap_and_invoke.hpp
>> #usr/include/boost/system/windows_error.hpp
>> #usr/include/boost/test
>> #usr/include/boost/test/auto_unit_test.hpp
>> @@ -16595,6 +16941,7 @@
>> #usr/include/boost/unordered/detail/narrow_cast.hpp
>> #usr/include/boost/unordered/detail/opt_storage.hpp
>> #usr/include/boost/unordered/detail/prime_fmod.hpp
>> +#usr/include/boost/unordered/detail/ranges_support.hpp
>> #usr/include/boost/unordered/detail/serialization_version.hpp
>> #usr/include/boost/unordered/detail/serialize_container.hpp
>> #usr/include/boost/unordered/detail/serialize_fca_container.hpp
>> @@ -16623,19 +16970,33 @@
>> #usr/include/boost/url
>> #usr/include/boost/url.hpp
>> #usr/include/boost/url/authority_view.hpp
>> +#usr/include/boost/url/decode.hpp
>> #usr/include/boost/url/decode_view.hpp
>> #usr/include/boost/url/detail
>> #usr/include/boost/url/detail/any_params_iter.hpp
>> #usr/include/boost/url/detail/any_segments_iter.hpp
>> #usr/include/boost/url/detail/config.hpp
>> +#usr/include/boost/url/detail/decode.hpp
>> #usr/include/boost/url/detail/encode.hpp
>> #usr/include/boost/url/detail/except.hpp
>> +#usr/include/boost/url/detail/fnv_1a.hpp
>> #usr/include/boost/url/detail/format_args.hpp
>> #usr/include/boost/url/detail/impl
>> +#usr/include/boost/url/detail/impl/any_params_iter.hpp
>> +#usr/include/boost/url/detail/impl/any_segments_iter.hpp
>> #usr/include/boost/url/detail/impl/format_args.hpp
>> +#usr/include/boost/url/detail/impl/params_iter_impl.hpp
>> +#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
>> +#usr/include/boost/url/detail/impl/url_impl.hpp
>> +#usr/include/boost/url/detail/memcpy.hpp
>> +#usr/include/boost/url/detail/move_chars.hpp
>> +#usr/include/boost/url/detail/normalize.hpp
>> #usr/include/boost/url/detail/optional_string.hpp
>> +#usr/include/boost/url/detail/over_allocator.hpp
>> #usr/include/boost/url/detail/params_iter_impl.hpp
>> #usr/include/boost/url/detail/parts_base.hpp
>> +#usr/include/boost/url/detail/path.hpp
>> +#usr/include/boost/url/detail/print.hpp
>> #usr/include/boost/url/detail/replacement_field_rule.hpp
>> #usr/include/boost/url/detail/segments_iter_impl.hpp
>> #usr/include/boost/url/detail/segments_range.hpp
>> @@ -16659,13 +17020,17 @@
>> #usr/include/boost/url/grammar/detail
>> #usr/include/boost/url/grammar/detail/charset.hpp
>> #usr/include/boost/url/grammar/detail/ci_string.hpp
>> +#usr/include/boost/url/grammar/detail/range_rule.hpp
>> #usr/include/boost/url/grammar/detail/recycled.hpp
>> #usr/include/boost/url/grammar/detail/tuple.hpp
>> #usr/include/boost/url/grammar/digit_chars.hpp
>> #usr/include/boost/url/grammar/error.hpp
>> #usr/include/boost/url/grammar/hexdig_chars.hpp
>> #usr/include/boost/url/grammar/impl
>> +#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
>> +#usr/include/boost/url/grammar/impl/delim_rule.hpp
>> #usr/include/boost/url/grammar/impl/error.hpp
>> +#usr/include/boost/url/grammar/impl/literal_rule.hpp
>> #usr/include/boost/url/grammar/impl/not_empty_rule.hpp
>> #usr/include/boost/url/grammar/impl/optional_rule.hpp
>> #usr/include/boost/url/grammar/impl/parse.hpp
>> @@ -16693,17 +17058,30 @@
>> #usr/include/boost/url/host_type.hpp
>> #usr/include/boost/url/ignore_case.hpp
>> #usr/include/boost/url/impl
>> +#usr/include/boost/url/impl/authority_view.hpp
>> +#usr/include/boost/url/impl/decode.hpp
>> #usr/include/boost/url/impl/decode_view.hpp
>> #usr/include/boost/url/impl/encode.hpp
>> #usr/include/boost/url/impl/error.hpp
>> #usr/include/boost/url/impl/params_base.hpp
>> #usr/include/boost/url/impl/params_encoded_base.hpp
>> #usr/include/boost/url/impl/params_encoded_ref.hpp
>> +#usr/include/boost/url/impl/params_encoded_view.hpp
>> #usr/include/boost/url/impl/params_ref.hpp
>> +#usr/include/boost/url/impl/params_view.hpp
>> +#usr/include/boost/url/impl/parse.hpp
>> +#usr/include/boost/url/impl/scheme.hpp
>> #usr/include/boost/url/impl/segments_base.hpp
>> #usr/include/boost/url/impl/segments_encoded_base.hpp
>> #usr/include/boost/url/impl/segments_encoded_ref.hpp
>> +#usr/include/boost/url/impl/segments_encoded_view.hpp
>> #usr/include/boost/url/impl/segments_ref.hpp
>> +#usr/include/boost/url/impl/segments_view.hpp
>> +#usr/include/boost/url/impl/static_url.hpp
>> +#usr/include/boost/url/impl/url.hpp
>> +#usr/include/boost/url/impl/url_base.hpp
>> +#usr/include/boost/url/impl/url_view.hpp
>> +#usr/include/boost/url/impl/url_view_base.hpp
>> #usr/include/boost/url/ipv4_address.hpp
>> #usr/include/boost/url/ipv6_address.hpp
>> #usr/include/boost/url/optional.hpp
>> @@ -16722,10 +17100,44 @@
>> #usr/include/boost/url/rfc/absolute_uri_rule.hpp
>> #usr/include/boost/url/rfc/authority_rule.hpp
>> #usr/include/boost/url/rfc/detail
>> +#usr/include/boost/url/rfc/detail/charsets.hpp
>> +#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/h16_rule.hpp
>> +#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/host_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl
>> +#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
>> #usr/include/boost/url/rfc/detail/path_rules.hpp
>> +#usr/include/boost/url/rfc/detail/port_rule.hpp
>> +#usr/include/boost/url/rfc/detail/query_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
>> +#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/scheme_rule.hpp
>> +#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
>> #usr/include/boost/url/rfc/gen_delim_chars.hpp
>> #usr/include/boost/url/rfc/impl
>> +#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
>> +#usr/include/boost/url/rfc/impl/authority_rule.hpp
>> +#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
>> +#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
>> +#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
>> #usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
>> +#usr/include/boost/url/rfc/impl/query_rule.hpp
>> +#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
>> +#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
>> +#usr/include/boost/url/rfc/impl/uri_rule.hpp
>> #usr/include/boost/url/rfc/ipv4_address_rule.hpp
>> #usr/include/boost/url/rfc/ipv6_address_rule.hpp
>> #usr/include/boost/url/rfc/origin_form_rule.hpp
>> @@ -16788,21 +17200,33 @@
>> #usr/include/boost/uuid/detail/basic_name_generator.hpp
>> #usr/include/boost/uuid/detail/chacha20.hpp
>> #usr/include/boost/uuid/detail/config.hpp
>> +#usr/include/boost/uuid/detail/cstring.hpp
>> #usr/include/boost/uuid/detail/endian.hpp
>> +#usr/include/boost/uuid/detail/from_chars.hpp
>> +#usr/include/boost/uuid/detail/from_chars_generic.hpp
>> +#usr/include/boost/uuid/detail/from_chars_result.hpp
>> +#usr/include/boost/uuid/detail/from_chars_x86.hpp
>> #usr/include/boost/uuid/detail/hash_mix.hpp
>> +#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
>> #usr/include/boost/uuid/detail/md5.hpp
>> #usr/include/boost/uuid/detail/nil_uuid.hpp
>> #usr/include/boost/uuid/detail/numeric_cast.hpp
>> #usr/include/boost/uuid/detail/random_device.hpp
>> #usr/include/boost/uuid/detail/random_provider.hpp
>> #usr/include/boost/uuid/detail/sha1.hpp
>> +#usr/include/boost/uuid/detail/simd_vector.hpp
>> #usr/include/boost/uuid/detail/static_assert.hpp
>> +#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
>> #usr/include/boost/uuid/detail/to_chars.hpp
>> +#usr/include/boost/uuid/detail/to_chars_generic.hpp
>> +#usr/include/boost/uuid/detail/to_chars_x86.hpp
>> +#usr/include/boost/uuid/detail/uuid_from_string.hpp
>> #usr/include/boost/uuid/detail/uuid_generic.ipp
>> #usr/include/boost/uuid/detail/uuid_uint128.ipp
>> #usr/include/boost/uuid/detail/uuid_x86.ipp
>> #usr/include/boost/uuid/entropy_error.hpp
>> #usr/include/boost/uuid/generators.hpp
>> +#usr/include/boost/uuid/invalid_uuid.hpp
>> #usr/include/boost/uuid/name_generator.hpp
>> #usr/include/boost/uuid/name_generator_md5.hpp
>> #usr/include/boost/uuid/name_generator_sha1.hpp
>> @@ -17304,250 +17728,407 @@
>> #usr/include/boost/yap/print.hpp
>> #usr/include/boost/yap/user_macros.hpp
>> #usr/include/boost/yap/yap.hpp
>> -#usr/lib/cmake/Boost-1.90.0
>> -#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
>> -#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
>> -#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0
>> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0
>> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0
>> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
>> -#usr/lib/cmake/boost_container-1.90.0
>> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
>> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
>> -#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
>> -#usr/lib/cmake/boost_context-1.90.0
>> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
>> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
>> -#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0
>> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0
>> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
>> -#usr/lib/cmake/boost_exception-1.90.0
>> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
>> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0
>> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0
>> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
>> -#usr/lib/cmake/boost_headers-1.90.0
>> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
>> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0
>> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
>> -#usr/lib/cmake/boost_json-1.90.0
>> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
>> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
>> -#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0
>> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
>> -#usr/lib/cmake/boost_log-1.90.0
>> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
>> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
>> -#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0
>> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
>> -#usr/lib/cmake/boost_math-1.90.0
>> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
>> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0
>> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0
>> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
>> -#usr/lib/cmake/boost_numpy-1.90.0
>> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
>> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
>> -#usr/lib/cmake/boost_process-1.90.0
>> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
>> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
>> -#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
>> -#usr/lib/cmake/boost_python-1.90.0
>> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
>> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
>> -#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
>> -#usr/lib/cmake/boost_random-1.90.0
>> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
>> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
>> -#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0
>> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0
>> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0
>> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0
>> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
>> -#usr/lib/cmake/boost_url-1.90.0
>> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
>> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
>> -#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0
>> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0
>> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
>> -#usr/lib/libboost_atomic.so
>> -usr/lib/libboost_atomic.so.1.90.0
>> -#usr/lib/libboost_charconv.so
>> -usr/lib/libboost_charconv.so.1.90.0
>> -#usr/lib/libboost_chrono.so
>> -usr/lib/libboost_chrono.so.1.90.0
>> -#usr/lib/libboost_container.so
>> -usr/lib/libboost_container.so.1.90.0
>> -#usr/lib/libboost_context.so
>> -usr/lib/libboost_context.so.1.90.0
>> -#usr/lib/libboost_contract.so
>> -usr/lib/libboost_contract.so.1.90.0
>> -#usr/lib/libboost_date_time.so
>> -usr/lib/libboost_date_time.so.1.90.0
>> -#usr/lib/libboost_exception.a
>> -#usr/lib/libboost_filesystem.so
>> -usr/lib/libboost_filesystem.so.1.90.0
>> -#usr/lib/libboost_graph.so
>> -usr/lib/libboost_graph.so.1.90.0
>> -#usr/lib/libboost_iostreams.so
>> -usr/lib/libboost_iostreams.so.1.90.0
>> -#usr/lib/libboost_json.so
>> -usr/lib/libboost_json.so.1.90.0
>> -#usr/lib/libboost_locale.so
>> -usr/lib/libboost_locale.so.1.90.0
>> -#usr/lib/libboost_log.so
>> -usr/lib/libboost_log.so.1.90.0
>> -#usr/lib/libboost_log_setup.so
>> -usr/lib/libboost_log_setup.so.1.90.0
>> -#usr/lib/libboost_math_c99.so
>> -usr/lib/libboost_math_c99.so.1.90.0
>> -#usr/lib/libboost_math_c99f.so
>> -usr/lib/libboost_math_c99f.so.1.90.0
>> -#usr/lib/libboost_math_c99l.so
>> -usr/lib/libboost_math_c99l.so.1.90.0
>> -#usr/lib/libboost_math_tr1.so
>> -usr/lib/libboost_math_tr1.so.1.90.0
>> -#usr/lib/libboost_math_tr1f.so
>> -usr/lib/libboost_math_tr1f.so.1.90.0
>> -#usr/lib/libboost_math_tr1l.so
>> -usr/lib/libboost_math_tr1l.so.1.90.0
>> -#usr/lib/libboost_nowide.so
>> -usr/lib/libboost_nowide.so.1.90.0
>> -#usr/lib/libboost_prg_exec_monitor.so
>> -usr/lib/libboost_prg_exec_monitor.so.1.90.0
>> -#usr/lib/libboost_process.so
>> -usr/lib/libboost_process.so.1.90.0
>> -#usr/lib/libboost_python310.so
>> -usr/lib/libboost_python310.so.1.90.0
>> -#usr/lib/libboost_random.so
>> -usr/lib/libboost_random.so.1.90.0
>> -#usr/lib/libboost_regex.so
>> -usr/lib/libboost_regex.so.1.90.0
>> -#usr/lib/libboost_serialization.so
>> -usr/lib/libboost_serialization.so.1.90.0
>> -#usr/lib/libboost_stacktrace_addr2line.so
>> -usr/lib/libboost_stacktrace_addr2line.so.1.90.0
>> -#usr/lib/libboost_stacktrace_basic.so
>> -usr/lib/libboost_stacktrace_basic.so.1.90.0
>> -#usr/lib/libboost_stacktrace_noop.so
>> -usr/lib/libboost_stacktrace_noop.so.1.90.0
>> -#usr/lib/libboost_test_exec_monitor.a
>> -#usr/lib/libboost_thread.so
>> -usr/lib/libboost_thread.so.1.90.0
>> -#usr/lib/libboost_timer.so
>> -usr/lib/libboost_timer.so.1.90.0
>> -#usr/lib/libboost_type_erasure.so
>> -usr/lib/libboost_type_erasure.so.1.90.0
>> -#usr/lib/libboost_unit_test_framework.so
>> -usr/lib/libboost_unit_test_framework.so.1.90.0
>> -#usr/lib/libboost_url.so
>> -usr/lib/libboost_url.so.1.90.0
>> -#usr/lib/libboost_wave.so
>> -usr/lib/libboost_wave.so.1.90.0
>> -#usr/lib/libboost_wserialization.so
>> -usr/lib/libboost_wserialization.so.1.90.0
>> +#usr/lib/cmake/Boost-1.92.0
>> +#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
>> +#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
>> +#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0
>> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0
>> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0
>> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0
>> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_container-1.92.0
>> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_context-1.92.0
>> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0
>> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0
>> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_exception-1.92.0
>> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
>> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0
>> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0
>> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_headers-1.92.0
>> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
>> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0
>> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_json-1.92.0
>> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0
>> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_log-1.92.0
>> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0
>> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_math-1.92.0
>> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
>> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0
>> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0
>> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_numpy-1.92.0
>> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
>> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_process-1.92.0
>> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_python-1.92.0
>> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-r64-shared-py3.10.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-r64-shared-py3.10.cmake
>> +#usr/lib/cmake/boost_random-1.92.0
>> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_regex-1.92.0
>> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
>> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0
>> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0
>> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_system-1.92.0
>> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
>> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0
>> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0
>> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_url-1.92.0
>> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0
>> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-r64-shared.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0
>> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-r64-shared.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-r64-shared.cmake
>> +#usr/lib/libboost_atomic-mt-r64.so
>> +usr/lib/libboost_atomic-mt-r64.so.1.92.0
>> +#usr/lib/libboost_charconv-mt-r64.so
>> +usr/lib/libboost_charconv-mt-r64.so.1.92.0
>> +#usr/lib/libboost_charconv-r64.so
>> +usr/lib/libboost_charconv-r64.so.1.92.0
>> +#usr/lib/libboost_chrono-mt-r64.so
>> +usr/lib/libboost_chrono-mt-r64.so.1.92.0
>> +#usr/lib/libboost_chrono-r64.so
>> +usr/lib/libboost_chrono-r64.so.1.92.0
>> +#usr/lib/libboost_cobalt-mt-r64.so
>> +usr/lib/libboost_cobalt-mt-r64.so.1.92.0
>> +#usr/lib/libboost_cobalt-r64.so
>> +usr/lib/libboost_cobalt-r64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io-mt-r64.so
>> +usr/lib/libboost_cobalt_io-mt-r64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io-r64.so
>> +usr/lib/libboost_cobalt_io-r64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io_ssl-mt-r64.so
>> +usr/lib/libboost_cobalt_io_ssl-mt-r64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io_ssl-r64.so
>> +usr/lib/libboost_cobalt_io_ssl-r64.so.1.92.0
>> +#usr/lib/libboost_container-mt-r64.so
>> +usr/lib/libboost_container-mt-r64.so.1.92.0
>> +#usr/lib/libboost_container-r64.so
>> +usr/lib/libboost_container-r64.so.1.92.0
>> +#usr/lib/libboost_context-mt-r64.so
>> +usr/lib/libboost_context-mt-r64.so.1.92.0
>> +#usr/lib/libboost_contract-mt-r64.so
>> +usr/lib/libboost_contract-mt-r64.so.1.92.0
>> +#usr/lib/libboost_contract-r64.so
>> +usr/lib/libboost_contract-r64.so.1.92.0
>> +#usr/lib/libboost_date_time-mt-r64.so
>> +usr/lib/libboost_date_time-mt-r64.so.1.92.0
>> +#usr/lib/libboost_date_time-r64.so
>> +usr/lib/libboost_date_time-r64.so.1.92.0
>> +#usr/lib/libboost_exception-mt-r64.a
>> +#usr/lib/libboost_exception-r64.a
>> +#usr/lib/libboost_filesystem-mt-r64.so
>> +usr/lib/libboost_filesystem-mt-r64.so.1.92.0
>> +#usr/lib/libboost_filesystem-r64.so
>> +usr/lib/libboost_filesystem-r64.so.1.92.0
>> +#usr/lib/libboost_graph-mt-r64.so
>> +usr/lib/libboost_graph-mt-r64.so.1.92.0
>> +#usr/lib/libboost_graph-r64.so
>> +usr/lib/libboost_graph-r64.so.1.92.0
>> +#usr/lib/libboost_iostreams-mt-r64.so
>> +usr/lib/libboost_iostreams-mt-r64.so.1.92.0
>> +#usr/lib/libboost_iostreams-r64.so
>> +usr/lib/libboost_iostreams-r64.so.1.92.0
>> +#usr/lib/libboost_json-mt-r64.so
>> +usr/lib/libboost_json-mt-r64.so.1.92.0
>> +#usr/lib/libboost_json-r64.so
>> +usr/lib/libboost_json-r64.so.1.92.0
>> +#usr/lib/libboost_locale-mt-r64.so
>> +usr/lib/libboost_locale-mt-r64.so.1.92.0
>> +#usr/lib/libboost_log-mt-r64.so
>> +usr/lib/libboost_log-mt-r64.so.1.92.0
>> +#usr/lib/libboost_log-r64.so
>> +usr/lib/libboost_log-r64.so.1.92.0
>> +#usr/lib/libboost_log_setup-mt-r64.so
>> +usr/lib/libboost_log_setup-mt-r64.so.1.92.0
>> +#usr/lib/libboost_log_setup-r64.so
>> +usr/lib/libboost_log_setup-r64.so.1.92.0
>> +#usr/lib/libboost_math_c99-mt-r64.so
>> +usr/lib/libboost_math_c99-mt-r64.so.1.92.0
>> +#usr/lib/libboost_math_c99-r64.so
>> +usr/lib/libboost_math_c99-r64.so.1.92.0
>> +#usr/lib/libboost_math_c99f-mt-r64.so
>> +usr/lib/libboost_math_c99f-mt-r64.so.1.92.0
>> +#usr/lib/libboost_math_c99f-r64.so
>> +usr/lib/libboost_math_c99f-r64.so.1.92.0
>> +#usr/lib/libboost_math_c99l-mt-r64.so
>> +usr/lib/libboost_math_c99l-mt-r64.so.1.92.0
>> +#usr/lib/libboost_math_c99l-r64.so
>> +usr/lib/libboost_math_c99l-r64.so.1.92.0
>> +#usr/lib/libboost_math_tr1-mt-r64.so
>> +usr/lib/libboost_math_tr1-mt-r64.so.1.92.0
>> +#usr/lib/libboost_math_tr1-r64.so
>> +usr/lib/libboost_math_tr1-r64.so.1.92.0
>> +#usr/lib/libboost_math_tr1f-mt-r64.so
>> +usr/lib/libboost_math_tr1f-mt-r64.so.1.92.0
>> +#usr/lib/libboost_math_tr1f-r64.so
>> +usr/lib/libboost_math_tr1f-r64.so.1.92.0
>> +#usr/lib/libboost_math_tr1l-mt-r64.so
>> +usr/lib/libboost_math_tr1l-mt-r64.so.1.92.0
>> +#usr/lib/libboost_math_tr1l-r64.so
>> +usr/lib/libboost_math_tr1l-r64.so.1.92.0
>> +#usr/lib/libboost_nowide-mt-r64.so
>> +usr/lib/libboost_nowide-mt-r64.so.1.92.0
>> +#usr/lib/libboost_nowide-r64.so
>> +usr/lib/libboost_nowide-r64.so.1.92.0
>> +#usr/lib/libboost_prg_exec_monitor-mt-r64.so
>> +usr/lib/libboost_prg_exec_monitor-mt-r64.so.1.92.0
>> +#usr/lib/libboost_prg_exec_monitor-r64.so
>> +usr/lib/libboost_prg_exec_monitor-r64.so.1.92.0
>> +#usr/lib/libboost_process-mt-r64.so
>> +usr/lib/libboost_process-mt-r64.so.1.92.0
>> +#usr/lib/libboost_process-r64.so
>> +usr/lib/libboost_process-r64.so.1.92.0
>> +#usr/lib/libboost_python310-mt-r64.so
>> +usr/lib/libboost_python310-mt-r64.so.1.92.0
>> +#usr/lib/libboost_python310-r64.so
>> +usr/lib/libboost_python310-r64.so.1.92.0
>> +#usr/lib/libboost_random-mt-r64.so
>> +usr/lib/libboost_random-mt-r64.so.1.92.0
>> +#usr/lib/libboost_random-r64.so
>> +usr/lib/libboost_random-r64.so.1.92.0
>> +#usr/lib/libboost_regex-mt-r64.so
>> +usr/lib/libboost_regex-mt-r64.so.1.92.0
>> +#usr/lib/libboost_regex-r64.so
>> +usr/lib/libboost_regex-r64.so.1.92.0
>> +#usr/lib/libboost_serialization-mt-r64.so
>> +usr/lib/libboost_serialization-mt-r64.so.1.92.0
>> +#usr/lib/libboost_serialization-r64.so
>> +usr/lib/libboost_serialization-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_addr2line-mt-r64.so
>> +usr/lib/libboost_stacktrace_addr2line-mt-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_addr2line-r64.so
>> +usr/lib/libboost_stacktrace_addr2line-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_basic-mt-r64.so
>> +usr/lib/libboost_stacktrace_basic-mt-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_basic-r64.so
>> +usr/lib/libboost_stacktrace_basic-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_dump-mt-r64.so
>> +usr/lib/libboost_stacktrace_dump-mt-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_dump-r64.so
>> +usr/lib/libboost_stacktrace_dump-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_from_exception-mt-r64.so
>> +usr/lib/libboost_stacktrace_from_exception-mt-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_from_exception-r64.so
>> +usr/lib/libboost_stacktrace_from_exception-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_noop-mt-r64.so
>> +usr/lib/libboost_stacktrace_noop-mt-r64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_noop-r64.so
>> +usr/lib/libboost_stacktrace_noop-r64.so.1.92.0
>> +#usr/lib/libboost_test_exec_monitor-mt-r64.a
>> +#usr/lib/libboost_test_exec_monitor-r64.a
>> +#usr/lib/libboost_thread-mt-r64.so
>> +usr/lib/libboost_thread-mt-r64.so.1.92.0
>> +#usr/lib/libboost_timer-mt-r64.so
>> +usr/lib/libboost_timer-mt-r64.so.1.92.0
>> +#usr/lib/libboost_timer-r64.so
>> +usr/lib/libboost_timer-r64.so.1.92.0
>> +#usr/lib/libboost_type_erasure-mt-r64.so
>> +usr/lib/libboost_type_erasure-mt-r64.so.1.92.0
>> +#usr/lib/libboost_type_erasure-r64.so
>> +usr/lib/libboost_type_erasure-r64.so.1.92.0
>> +#usr/lib/libboost_unit_test_framework-mt-r64.so
>> +usr/lib/libboost_unit_test_framework-mt-r64.so.1.92.0
>> +#usr/lib/libboost_unit_test_framework-r64.so
>> +usr/lib/libboost_unit_test_framework-r64.so.1.92.0
>> +#usr/lib/libboost_url-mt-r64.so
>> +usr/lib/libboost_url-mt-r64.so.1.92.0
>> +#usr/lib/libboost_url-r64.so
>> +usr/lib/libboost_url-r64.so.1.92.0
>> +#usr/lib/libboost_wave-mt-r64.so
>> +usr/lib/libboost_wave-mt-r64.so.1.92.0
>> +#usr/lib/libboost_wave-r64.so
>> +usr/lib/libboost_wave-r64.so.1.92.0
>> +#usr/lib/libboost_wserialization-mt-r64.so
>> +usr/lib/libboost_wserialization-mt-r64.so.1.92.0
>> +#usr/lib/libboost_wserialization-r64.so
>> +usr/lib/libboost_wserialization-r64.so.1.92.0
>> #usr/share/boost_predef
>> #usr/share/boost_predef/build.jam
>> #usr/share/boost_predef/tools
>> diff --git a/config/rootfiles/common/x86_64/boost b/config/rootfiles/common/x86_64/boost
>> index 6342c206a..07ee68269 100644
>> --- a/config/rootfiles/common/x86_64/boost
>> +++ b/config/rootfiles/common/x86_64/boost
>> @@ -439,6 +439,7 @@
>> #usr/include/boost/asio/detail/array_fwd.hpp
>> #usr/include/boost/asio/detail/assert.hpp
>> #usr/include/boost/asio/detail/atomic_count.hpp
>> +#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
>> #usr/include/boost/asio/detail/base_from_cancellation_state.hpp
>> #usr/include/boost/asio/detail/base_from_completion_cond.hpp
>> #usr/include/boost/asio/detail/bind_handler.hpp
>> @@ -477,6 +478,7 @@
>> #usr/include/boost/asio/detail/fd_set_adapter.hpp
>> #usr/include/boost/asio/detail/fenced_block.hpp
>> #usr/include/boost/asio/detail/functional.hpp
>> +#usr/include/boost/asio/detail/futex_slim_mutex.hpp
>> #usr/include/boost/asio/detail/future.hpp
>> #usr/include/boost/asio/detail/global.hpp
>> #usr/include/boost/asio/detail/handler_alloc_helpers.hpp
>> @@ -527,6 +529,7 @@
>> #usr/include/boost/asio/detail/impl/thread_context.ipp
>> #usr/include/boost/asio/detail/impl/throw_error.ipp
>> #usr/include/boost/asio/detail/impl/timer_queue_set.ipp
>> +#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_event.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
>> @@ -534,7 +537,6 @@
>> #usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
>> #usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
>> -#usr/include/boost/asio/detail/impl/win_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
>> #usr/include/boost/asio/detail/impl/win_static_mutex.ipp
>> #usr/include/boost/asio/detail/impl/win_thread.ipp
>> @@ -641,6 +643,7 @@
>> #usr/include/boost/asio/detail/signal_init.hpp
>> #usr/include/boost/asio/detail/signal_op.hpp
>> #usr/include/boost/asio/detail/signal_set_service.hpp
>> +#usr/include/boost/asio/detail/slim_mutex.hpp
>> #usr/include/boost/asio/detail/socket_holder.hpp
>> #usr/include/boost/asio/detail/socket_ops.hpp
>> #usr/include/boost/asio/detail/socket_option.hpp
>> @@ -674,6 +677,7 @@
>> #usr/include/boost/asio/detail/utility.hpp
>> #usr/include/boost/asio/detail/wait_handler.hpp
>> #usr/include/boost/asio/detail/wait_op.hpp
>> +#usr/include/boost/asio/detail/win_critsec_mutex.hpp
>> #usr/include/boost/asio/detail/win_event.hpp
>> #usr/include/boost/asio/detail/win_fd_set_adapter.hpp
>> #usr/include/boost/asio/detail/win_global.hpp
>> @@ -731,8 +735,6 @@
>> #usr/include/boost/asio/execution/context.hpp
>> #usr/include/boost/asio/execution/context_as.hpp
>> #usr/include/boost/asio/execution/executor.hpp
>> -#usr/include/boost/asio/execution/impl
>> -#usr/include/boost/asio/execution/impl/bad_executor.ipp
>> #usr/include/boost/asio/execution/inline_exception_handling.hpp
>> #usr/include/boost/asio/execution/invocable_archetype.hpp
>> #usr/include/boost/asio/execution/mapping.hpp
>> @@ -782,6 +784,7 @@
>> #usr/include/boost/asio/experimental/use_coro.hpp
>> #usr/include/boost/asio/experimental/use_promise.hpp
>> #usr/include/boost/asio/file_base.hpp
>> +#usr/include/boost/asio/fwd.hpp
>> #usr/include/boost/asio/generic
>> #usr/include/boost/asio/generic/basic_endpoint.hpp
>> #usr/include/boost/asio/generic/datagram_protocol.hpp
>> @@ -820,10 +823,8 @@
>> #usr/include/boost/asio/impl/execution_context.hpp
>> #usr/include/boost/asio/impl/execution_context.ipp
>> #usr/include/boost/asio/impl/executor.hpp
>> -#usr/include/boost/asio/impl/executor.ipp
>> #usr/include/boost/asio/impl/io_context.hpp
>> #usr/include/boost/asio/impl/io_context.ipp
>> -#usr/include/boost/asio/impl/multiple_exceptions.ipp
>> #usr/include/boost/asio/impl/prepend.hpp
>> #usr/include/boost/asio/impl/read.hpp
>> #usr/include/boost/asio/impl/read_at.hpp
>> @@ -1511,6 +1512,7 @@
>> #usr/include/boost/bimap/detail/map_view_base.hpp
>> #usr/include/boost/bimap/detail/map_view_iterator.hpp
>> #usr/include/boost/bimap/detail/modifier_adaptor.hpp
>> +#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
>> #usr/include/boost/bimap/detail/non_unique_views_helper.hpp
>> #usr/include/boost/bimap/detail/set_view_base.hpp
>> #usr/include/boost/bimap/detail/set_view_iterator.hpp
>> @@ -2390,11 +2392,13 @@
>> #usr/include/boost/container/detail/addressof.hpp
>> #usr/include/boost/container/detail/advanced_insert_int.hpp
>> #usr/include/boost/container/detail/algorithm.hpp
>> +#usr/include/boost/container/detail/aligned_allocation.hpp
>> #usr/include/boost/container/detail/alloc_helpers.hpp
>> #usr/include/boost/container/detail/alloc_lib.h
>> #usr/include/boost/container/detail/allocation_type.hpp
>> #usr/include/boost/container/detail/allocator_version_traits.hpp
>> #usr/include/boost/container/detail/auto_link.hpp
>> +#usr/include/boost/container/detail/bit_utilities.hpp
>> #usr/include/boost/container/detail/block_list.hpp
>> #usr/include/boost/container/detail/block_slist.hpp
>> #usr/include/boost/container/detail/compare_functors.hpp
>> @@ -2404,12 +2408,14 @@
>> #usr/include/boost/container/detail/container_or_allocator_rebind.hpp
>> #usr/include/boost/container/detail/container_rebind.hpp
>> #usr/include/boost/container/detail/copy_move_algo.hpp
>> +#usr/include/boost/container/detail/deque_impl.hpp
>> #usr/include/boost/container/detail/destroyers.hpp
>> #usr/include/boost/container/detail/dispatch_uses_allocator.hpp
>> #usr/include/boost/container/detail/dlmalloc.hpp
>> #usr/include/boost/container/detail/flat_tree.hpp
>> #usr/include/boost/container/detail/function_detector.hpp
>> #usr/include/boost/container/detail/guards_dended.hpp
>> +#usr/include/boost/container/detail/is_constructible.hpp
>> #usr/include/boost/container/detail/is_container.hpp
>> #usr/include/boost/container/detail/is_contiguous_container.hpp
>> #usr/include/boost/container/detail/is_pair.hpp
>> @@ -2434,6 +2440,7 @@
>> #usr/include/boost/container/detail/pool_common.hpp
>> #usr/include/boost/container/detail/pool_common_alloc.hpp
>> #usr/include/boost/container/detail/pool_resource.hpp
>> +#usr/include/boost/container/detail/range_utils.hpp
>> #usr/include/boost/container/detail/singleton.hpp
>> #usr/include/boost/container/detail/std_fwd.hpp
>> #usr/include/boost/container/detail/thread_mutex.hpp
>> @@ -2446,8 +2453,60 @@
>> #usr/include/boost/container/detail/version_type.hpp
>> #usr/include/boost/container/detail/workaround.hpp
>> #usr/include/boost/container/devector.hpp
>> +#usr/include/boost/container/experimental
>> +#usr/include/boost/container/experimental/nest.hpp
>> +#usr/include/boost/container/experimental/pmr
>> +#usr/include/boost/container/experimental/pmr/nest.hpp
>> +#usr/include/boost/container/experimental/segmented_all_of.hpp
>> +#usr/include/boost/container/experimental/segmented_any_of.hpp
>> +#usr/include/boost/container/experimental/segmented_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_copy_if.hpp
>> +#usr/include/boost/container/experimental/segmented_copy_n.hpp
>> +#usr/include/boost/container/experimental/segmented_count.hpp
>> +#usr/include/boost/container/experimental/segmented_count_if.hpp
>> +#usr/include/boost/container/experimental/segmented_equal.hpp
>> +#usr/include/boost/container/experimental/segmented_fill.hpp
>> +#usr/include/boost/container/experimental/segmented_fill_n.hpp
>> +#usr/include/boost/container/experimental/segmented_find.hpp
>> +#usr/include/boost/container/experimental/segmented_find_if.hpp
>> +#usr/include/boost/container/experimental/segmented_find_if_not.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last_if.hpp
>> +#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
>> +#usr/include/boost/container/experimental/segmented_for_each.hpp
>> +#usr/include/boost/container/experimental/segmented_generate.hpp
>> +#usr/include/boost/container/experimental/segmented_generate_n.hpp
>> +#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
>> +#usr/include/boost/container/experimental/segmented_is_sorted.hpp
>> +#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
>> +#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
>> +#usr/include/boost/container/experimental/segmented_merge.hpp
>> +#usr/include/boost/container/experimental/segmented_mismatch.hpp
>> +#usr/include/boost/container/experimental/segmented_none_of.hpp
>> +#usr/include/boost/container/experimental/segmented_partition.hpp
>> +#usr/include/boost/container/experimental/segmented_partition_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_partition_point.hpp
>> +#usr/include/boost/container/experimental/segmented_remove.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
>> +#usr/include/boost/container/experimental/segmented_remove_if.hpp
>> +#usr/include/boost/container/experimental/segmented_replace.hpp
>> +#usr/include/boost/container/experimental/segmented_replace_if.hpp
>> +#usr/include/boost/container/experimental/segmented_reverse.hpp
>> +#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
>> +#usr/include/boost/container/experimental/segmented_search.hpp
>> +#usr/include/boost/container/experimental/segmented_search_n.hpp
>> +#usr/include/boost/container/experimental/segmented_set_difference.hpp
>> +#usr/include/boost/container/experimental/segmented_set_intersection.hpp
>> +#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
>> +#usr/include/boost/container/experimental/segmented_set_union.hpp
>> +#usr/include/boost/container/experimental/segmented_stable_partition.hpp
>> +#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
>> +#usr/include/boost/container/experimental/segmented_transform.hpp
>> +#usr/include/boost/container/experimental/wrapped_iterator.hpp
>> #usr/include/boost/container/flat_map.hpp
>> #usr/include/boost/container/flat_set.hpp
>> +#usr/include/boost/container/hub.hpp
>> #usr/include/boost/container/list.hpp
>> #usr/include/boost/container/map.hpp
>> #usr/include/boost/container/new_allocator.hpp
>> @@ -2460,6 +2519,7 @@
>> #usr/include/boost/container/pmr/flat_map.hpp
>> #usr/include/boost/container/pmr/flat_set.hpp
>> #usr/include/boost/container/pmr/global_resource.hpp
>> +#usr/include/boost/container/pmr/hub.hpp
>> #usr/include/boost/container/pmr/list.hpp
>> #usr/include/boost/container/pmr/map.hpp
>> #usr/include/boost/container/pmr/memory_resource.hpp
>> @@ -2467,6 +2527,7 @@
>> #usr/include/boost/container/pmr/polymorphic_allocator.hpp
>> #usr/include/boost/container/pmr/pool_options.hpp
>> #usr/include/boost/container/pmr/resource_adaptor.hpp
>> +#usr/include/boost/container/pmr/segtor.hpp
>> #usr/include/boost/container/pmr/set.hpp
>> #usr/include/boost/container/pmr/slist.hpp
>> #usr/include/boost/container/pmr/small_vector.hpp
>> @@ -2477,6 +2538,7 @@
>> #usr/include/boost/container/pmr/vector.hpp
>> #usr/include/boost/container/scoped_allocator.hpp
>> #usr/include/boost/container/scoped_allocator_fwd.hpp
>> +#usr/include/boost/container/segtor.hpp
>> #usr/include/boost/container/set.hpp
>> #usr/include/boost/container/slist.hpp
>> #usr/include/boost/container/small_vector.hpp
>> @@ -2485,6 +2547,7 @@
>> #usr/include/boost/container/string.hpp
>> #usr/include/boost/container/throw_exception.hpp
>> #usr/include/boost/container/uses_allocator.hpp
>> +#usr/include/boost/container/uses_allocator_construction.hpp
>> #usr/include/boost/container/uses_allocator_fwd.hpp
>> #usr/include/boost/container/vector.hpp
>> #usr/include/boost/container_hash
>> @@ -2605,6 +2668,9 @@
>> #usr/include/boost/contract/override.hpp
>> #usr/include/boost/contract/public_function.hpp
>> #usr/include/boost/contract_macro.hpp
>> +#usr/include/boost/conversion
>> +#usr/include/boost/conversion/detail
>> +#usr/include/boost/conversion/detail/config.hpp
>> #usr/include/boost/convert
>> #usr/include/boost/convert.hpp
>> #usr/include/boost/convert/base.hpp
>> @@ -2865,6 +2931,211 @@
>> #usr/include/boost/date_time/tz_db_base.hpp
>> #usr/include/boost/date_time/wrapping_int.hpp
>> #usr/include/boost/date_time/year_month_day.hpp
>> +#usr/include/boost/decimal
>> +#usr/include/boost/decimal.hpp
>> +#usr/include/boost/decimal/bid_conversion.hpp
>> +#usr/include/boost/decimal/cfenv.hpp
>> +#usr/include/boost/decimal/cfloat.hpp
>> +#usr/include/boost/decimal/charconv.hpp
>> +#usr/include/boost/decimal/cmath.hpp
>> +#usr/include/boost/decimal/cstdio.hpp
>> +#usr/include/boost/decimal/cstdlib.hpp
>> +#usr/include/boost/decimal/decimal128_t.hpp
>> +#usr/include/boost/decimal/decimal32_t.hpp
>> +#usr/include/boost/decimal/decimal64_t.hpp
>> +#usr/include/boost/decimal/decimal_fast128_t.hpp
>> +#usr/include/boost/decimal/decimal_fast32_t.hpp
>> +#usr/include/boost/decimal/decimal_fast64_t.hpp
>> +#usr/include/boost/decimal/detail
>> +#usr/include/boost/decimal/detail/add_impl.hpp
>> +#usr/include/boost/decimal/detail/apply_sign.hpp
>> +#usr/include/boost/decimal/detail/attributes.hpp
>> +#usr/include/boost/decimal/detail/bit_cast.hpp
>> +#usr/include/boost/decimal/detail/bit_layouts.hpp
>> +#usr/include/boost/decimal/detail/buffer_sizing.hpp
>> +#usr/include/boost/decimal/detail/chars_format.hpp
>> +#usr/include/boost/decimal/detail/check_non_finite.hpp
>> +#usr/include/boost/decimal/detail/cmath
>> +#usr/include/boost/decimal/detail/cmath/abs.hpp
>> +#usr/include/boost/decimal/detail/cmath/acos.hpp
>> +#usr/include/boost/decimal/detail/cmath/acosh.hpp
>> +#usr/include/boost/decimal/detail/cmath/asin.hpp
>> +#usr/include/boost/decimal/detail/cmath/asinh.hpp
>> +#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
>> +#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
>> +#usr/include/boost/decimal/detail/cmath/atan.hpp
>> +#usr/include/boost/decimal/detail/cmath/atan2.hpp
>> +#usr/include/boost/decimal/detail/cmath/atanh.hpp
>> +#usr/include/boost/decimal/detail/cmath/beta.hpp
>> +#usr/include/boost/decimal/detail/cmath/cbrt.hpp
>> +#usr/include/boost/decimal/detail/cmath/ceil.hpp
>> +#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
>> +#usr/include/boost/decimal/detail/cmath/cos.hpp
>> +#usr/include/boost/decimal/detail/cmath/cosh.hpp
>> +#usr/include/boost/decimal/detail/cmath/decompose.hpp
>> +#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
>> +#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
>> +#usr/include/boost/decimal/detail/cmath/erf.hpp
>> +#usr/include/boost/decimal/detail/cmath/exp.hpp
>> +#usr/include/boost/decimal/detail/cmath/exp2.hpp
>> +#usr/include/boost/decimal/detail/cmath/expm1.hpp
>> +#usr/include/boost/decimal/detail/cmath/fabs.hpp
>> +#usr/include/boost/decimal/detail/cmath/fdim.hpp
>> +#usr/include/boost/decimal/detail/cmath/floor.hpp
>> +#usr/include/boost/decimal/detail/cmath/fma.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmax.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmin.hpp
>> +#usr/include/boost/decimal/detail/cmath/fmod.hpp
>> +#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
>> +#usr/include/boost/decimal/detail/cmath/frexp.hpp
>> +#usr/include/boost/decimal/detail/cmath/frexp10.hpp
>> +#usr/include/boost/decimal/detail/cmath/hermite.hpp
>> +#usr/include/boost/decimal/detail/cmath/hypot.hpp
>> +#usr/include/boost/decimal/detail/cmath/ilogb.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl
>> +#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
>> +#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
>> +#usr/include/boost/decimal/detail/cmath/isfinite.hpp
>> +#usr/include/boost/decimal/detail/cmath/isgreater.hpp
>> +#usr/include/boost/decimal/detail/cmath/isless.hpp
>> +#usr/include/boost/decimal/detail/cmath/isunordered.hpp
>> +#usr/include/boost/decimal/detail/cmath/laguerre.hpp
>> +#usr/include/boost/decimal/detail/cmath/ldexp.hpp
>> +#usr/include/boost/decimal/detail/cmath/legendre.hpp
>> +#usr/include/boost/decimal/detail/cmath/lgamma.hpp
>> +#usr/include/boost/decimal/detail/cmath/log.hpp
>> +#usr/include/boost/decimal/detail/cmath/log10.hpp
>> +#usr/include/boost/decimal/detail/cmath/log1p.hpp
>> +#usr/include/boost/decimal/detail/cmath/log2.hpp
>> +#usr/include/boost/decimal/detail/cmath/logb.hpp
>> +#usr/include/boost/decimal/detail/cmath/modf.hpp
>> +#usr/include/boost/decimal/detail/cmath/nan.hpp
>> +#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
>> +#usr/include/boost/decimal/detail/cmath/next.hpp
>> +#usr/include/boost/decimal/detail/cmath/normalize.hpp
>> +#usr/include/boost/decimal/detail/cmath/pow.hpp
>> +#usr/include/boost/decimal/detail/cmath/remainder.hpp
>> +#usr/include/boost/decimal/detail/cmath/remquo.hpp
>> +#usr/include/boost/decimal/detail/cmath/rescale.hpp
>> +#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
>> +#usr/include/boost/decimal/detail/cmath/rint.hpp
>> +#usr/include/boost/decimal/detail/cmath/round.hpp
>> +#usr/include/boost/decimal/detail/cmath/sin.hpp
>> +#usr/include/boost/decimal/detail/cmath/sinh.hpp
>> +#usr/include/boost/decimal/detail/cmath/sqrt.hpp
>> +#usr/include/boost/decimal/detail/cmath/tan.hpp
>> +#usr/include/boost/decimal/detail/cmath/tanh.hpp
>> +#usr/include/boost/decimal/detail/cmath/tgamma.hpp
>> +#usr/include/boost/decimal/detail/cmath/trunc.hpp
>> +#usr/include/boost/decimal/detail/comparison.hpp
>> +#usr/include/boost/decimal/detail/components.hpp
>> +#usr/include/boost/decimal/detail/concepts.hpp
>> +#usr/include/boost/decimal/detail/config.hpp
>> +#usr/include/boost/decimal/detail/construction_sign.hpp
>> +#usr/include/boost/decimal/detail/countl.hpp
>> +#usr/include/boost/decimal/detail/div_impl.hpp
>> +#usr/include/boost/decimal/detail/fast_float
>> +#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
>> +#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
>> +#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
>> +#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
>> +#usr/include/boost/decimal/detail/fenv_rounding.hpp
>> +#usr/include/boost/decimal/detail/formatting_limits.hpp
>> +#usr/include/boost/decimal/detail/from_chars_impl.hpp
>> +#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
>> +#usr/include/boost/decimal/detail/from_chars_result.hpp
>> +#usr/include/boost/decimal/detail/fwd_log.hpp
>> +#usr/include/boost/decimal/detail/i256.hpp
>> +#usr/include/boost/decimal/detail/int128
>> +#usr/include/boost/decimal/detail/int128.hpp
>> +#usr/include/boost/decimal/detail/int128/bit.hpp
>> +#usr/include/boost/decimal/detail/int128/climits.hpp
>> +#usr/include/boost/decimal/detail/int128/cstdlib.hpp
>> +#usr/include/boost/decimal/detail/int128/detail
>> +#usr/include/boost/decimal/detail/int128/detail/clz.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/config.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/constants.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/traits.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
>> +#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
>> +#usr/include/boost/decimal/detail/int128/fmt_format.hpp
>> +#usr/include/boost/decimal/detail/int128/format.hpp
>> +#usr/include/boost/decimal/detail/int128/int128.hpp
>> +#usr/include/boost/decimal/detail/int128/iostream.hpp
>> +#usr/include/boost/decimal/detail/int128/limits.hpp
>> +#usr/include/boost/decimal/detail/int128/literals.hpp
>> +#usr/include/boost/decimal/detail/int128/numeric.hpp
>> +#usr/include/boost/decimal/detail/int128/random.hpp
>> +#usr/include/boost/decimal/detail/int128/string.hpp
>> +#usr/include/boost/decimal/detail/integer_search_trees.hpp
>> +#usr/include/boost/decimal/detail/io.hpp
>> +#usr/include/boost/decimal/detail/is_power_of_10.hpp
>> +#usr/include/boost/decimal/detail/locale_conversion.hpp
>> +#usr/include/boost/decimal/detail/memcpy.hpp
>> +#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
>> +#usr/include/boost/decimal/detail/mod_impl.hpp
>> +#usr/include/boost/decimal/detail/mul_impl.hpp
>> +#usr/include/boost/decimal/detail/normalize.hpp
>> +#usr/include/boost/decimal/detail/parser.hpp
>> +#usr/include/boost/decimal/detail/power_tables.hpp
>> +#usr/include/boost/decimal/detail/promote_significand.hpp
>> +#usr/include/boost/decimal/detail/promotion.hpp
>> +#usr/include/boost/decimal/detail/quantize_impl.hpp
>> +#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
>> +#usr/include/boost/decimal/detail/ryu
>> +#usr/include/boost/decimal/detail/ryu/generic_128.hpp
>> +#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
>> +#usr/include/boost/decimal/detail/shrink_significand.hpp
>> +#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
>> +#usr/include/boost/decimal/detail/to_chars_result.hpp
>> +#usr/include/boost/decimal/detail/to_decimal.hpp
>> +#usr/include/boost/decimal/detail/to_float.hpp
>> +#usr/include/boost/decimal/detail/to_integral.hpp
>> +#usr/include/boost/decimal/detail/type_traits.hpp
>> +#usr/include/boost/decimal/detail/u256.hpp
>> +#usr/include/boost/decimal/detail/utilities.hpp
>> +#usr/include/boost/decimal/detail/write_payload.hpp
>> +#usr/include/boost/decimal/dpd_conversion.hpp
>> +#usr/include/boost/decimal/fmt_format.hpp
>> +#usr/include/boost/decimal/format.hpp
>> +#usr/include/boost/decimal/fwd.hpp
>> +#usr/include/boost/decimal/hash.hpp
>> +#usr/include/boost/decimal/iostream.hpp
>> +#usr/include/boost/decimal/literals.hpp
>> +#usr/include/boost/decimal/numbers.hpp
>> +#usr/include/boost/decimal/string.hpp
>> +#usr/include/boost/decimal/uint128_t.hpp
>> #usr/include/boost/describe
>> #usr/include/boost/describe.hpp
>> #usr/include/boost/describe/bases.hpp
>> @@ -2909,7 +3180,6 @@
>> #usr/include/boost/detail/is_sorted.hpp
>> #usr/include/boost/detail/is_xxx.hpp
>> #usr/include/boost/detail/iterator.hpp
>> -#usr/include/boost/detail/lcast_precision.hpp
>> #usr/include/boost/detail/lightweight_main.hpp
>> #usr/include/boost/detail/lightweight_mutex.hpp
>> #usr/include/boost/detail/lightweight_test.hpp
>> @@ -2993,6 +3263,7 @@
>> #usr/include/boost/dll/config.hpp
>> #usr/include/boost/dll/detail
>> #usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
>> +#usr/include/boost/dll/detail/config.hpp
>> #usr/include/boost/dll/detail/ctor_dtor.hpp
>> #usr/include/boost/dll/detail/demangling
>> #usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
>> @@ -3057,6 +3328,7 @@
>> #usr/include/boost/exception/current_exception_cast.hpp
>> #usr/include/boost/exception/detail
>> #usr/include/boost/exception/detail/clone_current_exception.hpp
>> +#usr/include/boost/exception/detail/encoder.hpp
>> #usr/include/boost/exception/detail/error_info_impl.hpp
>> #usr/include/boost/exception/detail/exception_ptr.hpp
>> #usr/include/boost/exception/detail/is_output_streamable.hpp
>> @@ -3080,6 +3352,9 @@
>> #usr/include/boost/exception/get_error_info.hpp
>> #usr/include/boost/exception/info.hpp
>> #usr/include/boost/exception/info_tuple.hpp
>> +#usr/include/boost/exception/serialization
>> +#usr/include/boost/exception/serialization/boost_json_encoder.hpp
>> +#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
>> #usr/include/boost/exception/to_string.hpp
>> #usr/include/boost/exception/to_string_stub.hpp
>> #usr/include/boost/exception_ptr.hpp
>> @@ -5091,8 +5366,6 @@
>> #usr/include/boost/geometry/index/detail/tags.hpp
>> #usr/include/boost/geometry/index/detail/translator.hpp
>> #usr/include/boost/geometry/index/detail/utilities.hpp
>> -#usr/include/boost/geometry/index/detail/varray.hpp
>> -#usr/include/boost/geometry/index/detail/varray_detail.hpp
>> #usr/include/boost/geometry/index/distance_predicates.hpp
>> #usr/include/boost/geometry/index/equal_to.hpp
>> #usr/include/boost/geometry/index/indexable.hpp
>> @@ -6077,6 +6350,8 @@
>> #usr/include/boost/graph/leda_graph.hpp
>> #usr/include/boost/graph/lookup_edge.hpp
>> #usr/include/boost/graph/loop_erased_random_walk.hpp
>> +#usr/include/boost/graph/louvain_clustering.hpp
>> +#usr/include/boost/graph/louvain_quality_functions.hpp
>> #usr/include/boost/graph/make_biconnected_planar.hpp
>> #usr/include/boost/graph/make_connected.hpp
>> #usr/include/boost/graph/make_maximal_planar.hpp
>> @@ -6679,6 +6954,7 @@
>> #usr/include/boost/heap/detail
>> #usr/include/boost/heap/detail/heap_comparison.hpp
>> #usr/include/boost/heap/detail/heap_node.hpp
>> +#usr/include/boost/heap/detail/heap_utils.hpp
>> #usr/include/boost/heap/detail/ilog2.hpp
>> #usr/include/boost/heap/detail/mutable_heap.hpp
>> #usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
>> @@ -6888,8 +7164,10 @@
>> #usr/include/boost/icl/concept/set_value.hpp
>> #usr/include/boost/icl/continuous_interval.hpp
>> #usr/include/boost/icl/detail
>> +#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
>> #usr/include/boost/icl/detail/associated_value.hpp
>> #usr/include/boost/icl/detail/boost_config.hpp
>> +#usr/include/boost/icl/detail/co_equal_fwd.hpp
>> #usr/include/boost/icl/detail/concept_check.hpp
>> #usr/include/boost/icl/detail/design_config.hpp
>> #usr/include/boost/icl/detail/element_comparer.hpp
>> @@ -6899,12 +7177,14 @@
>> #usr/include/boost/icl/detail/interval_morphism.hpp
>> #usr/include/boost/icl/detail/interval_set_algo.hpp
>> #usr/include/boost/icl/detail/interval_subset_comparer.hpp
>> +#usr/include/boost/icl/detail/map_adaptor.hpp
>> #usr/include/boost/icl/detail/map_algo.hpp
>> #usr/include/boost/icl/detail/mapped_reference.hpp
>> #usr/include/boost/icl/detail/notate.hpp
>> #usr/include/boost/icl/detail/on_absorbtion.hpp
>> #usr/include/boost/icl/detail/relation_state.hpp
>> #usr/include/boost/icl/detail/requires_cxx11.hpp
>> +#usr/include/boost/icl/detail/set_adaptor.hpp
>> #usr/include/boost/icl/detail/set_algo.hpp
>> #usr/include/boost/icl/detail/std_set.hpp
>> #usr/include/boost/icl/detail/subset_comparer.hpp
>> @@ -7585,6 +7865,7 @@
>> #usr/include/boost/json/impl/value_ref.ipp
>> #usr/include/boost/json/impl/value_stack.ipp
>> #usr/include/boost/json/impl/visit.hpp
>> +#usr/include/boost/json/impl/visit.ipp
>> #usr/include/boost/json/is_deallocate_trivial.hpp
>> #usr/include/boost/json/kind.hpp
>> #usr/include/boost/json/monotonic_resource.hpp
>> @@ -7660,15 +7941,20 @@
>> #usr/include/boost/leaf/config/tls_cpp11.hpp
>> #usr/include/boost/leaf/config/tls_freertos.hpp
>> #usr/include/boost/leaf/config/tls_globals.hpp
>> +#usr/include/boost/leaf/config/tls_win32.hpp
>> +#usr/include/boost/leaf/config/visibility.hpp
>> #usr/include/boost/leaf/context.hpp
>> #usr/include/boost/leaf/detail
>> #usr/include/boost/leaf/detail/all.hpp
>> #usr/include/boost/leaf/detail/capture_list.hpp
>> #usr/include/boost/leaf/detail/demangle.hpp
>> +#usr/include/boost/leaf/detail/diagnostics_writer.hpp
>> +#usr/include/boost/leaf/detail/encoder.hpp
>> +#usr/include/boost/leaf/detail/exception_base.hpp
>> #usr/include/boost/leaf/detail/function_traits.hpp
>> #usr/include/boost/leaf/detail/mp11.hpp
>> #usr/include/boost/leaf/detail/optional.hpp
>> -#usr/include/boost/leaf/detail/print.hpp
>> +#usr/include/boost/leaf/detail/type_name.hpp
>> #usr/include/boost/leaf/diagnostics.hpp
>> #usr/include/boost/leaf/error.hpp
>> #usr/include/boost/leaf/exception.hpp
>> @@ -7676,12 +7962,16 @@
>> #usr/include/boost/leaf/on_error.hpp
>> #usr/include/boost/leaf/pred.hpp
>> #usr/include/boost/leaf/result.hpp
>> +#usr/include/boost/leaf/serialization
>> +#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
>> +#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
>> #usr/include/boost/leaf/to_variant.hpp
>> #usr/include/boost/lexical_cast
>> #usr/include/boost/lexical_cast.hpp
>> #usr/include/boost/lexical_cast/bad_lexical_cast.hpp
>> #usr/include/boost/lexical_cast/detail
>> #usr/include/boost/lexical_cast/detail/buffer_view.hpp
>> +#usr/include/boost/lexical_cast/detail/config.hpp
>> #usr/include/boost/lexical_cast/detail/converter_lexical.hpp
>> #usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
>> #usr/include/boost/lexical_cast/detail/converter_numeric.hpp
>> @@ -7689,6 +7979,7 @@
>> #usr/include/boost/lexical_cast/detail/is_character.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
>> +#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
>> #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
>> #usr/include/boost/lexical_cast/detail/type_traits.hpp
>> #usr/include/boost/lexical_cast/detail/widest_char.hpp
>> @@ -7798,17 +8089,20 @@
>> #usr/include/boost/locale/util/locale_data.hpp
>> #usr/include/boost/locale/util/string.hpp
>> #usr/include/boost/lockfree
>> +#usr/include/boost/lockfree/bounded_ticket_queue.hpp
>> #usr/include/boost/lockfree/detail
>> #usr/include/boost/lockfree/detail/atomic.hpp
>> #usr/include/boost/lockfree/detail/copy_payload.hpp
>> #usr/include/boost/lockfree/detail/freelist.hpp
>> #usr/include/boost/lockfree/detail/parameter.hpp
>> +#usr/include/boost/lockfree/detail/power_of_two.hpp
>> #usr/include/boost/lockfree/detail/prefix.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
>> #usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
>> #usr/include/boost/lockfree/detail/uses_optional.hpp
>> #usr/include/boost/lockfree/lockfree_forward.hpp
>> +#usr/include/boost/lockfree/mpsc_weak_queue.hpp
>> #usr/include/boost/lockfree/policies.hpp
>> #usr/include/boost/lockfree/queue.hpp
>> #usr/include/boost/lockfree/spsc_queue.hpp
>> @@ -8283,8 +8577,17 @@
>> #usr/include/boost/math/optimization/cma_es.hpp
>> #usr/include/boost/math/optimization/detail
>> #usr/include/boost/math/optimization/detail/common.hpp
>> +#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
>> +#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
>> +#usr/include/boost/math/optimization/detail/line_search_policies.hpp
>> +#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
>> #usr/include/boost/math/optimization/differential_evolution.hpp
>> +#usr/include/boost/math/optimization/gradient_descent.hpp
>> +#usr/include/boost/math/optimization/gradient_optimizers.hpp
>> #usr/include/boost/math/optimization/jso.hpp
>> +#usr/include/boost/math/optimization/lbfgs.hpp
>> +#usr/include/boost/math/optimization/minimizer.hpp
>> +#usr/include/boost/math/optimization/nesterov.hpp
>> #usr/include/boost/math/optimization/random_search.hpp
>> #usr/include/boost/math/policies
>> #usr/include/boost/math/policies/error_handling.hpp
>> @@ -10296,12 +10599,23 @@
>> #usr/include/boost/msm/backmp11
>> #usr/include/boost/msm/backmp11/common_types.hpp
>> #usr/include/boost/msm/backmp11/detail
>> -#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
>> +#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
>> +#usr/include/boost/msm/backmp11/detail/common.hpp
>> +#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
>> #usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
>> #usr/include/boost/msm/backmp11/detail/history_impl.hpp
>> #usr/include/boost/msm/backmp11/detail/metafunctions.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_tags.hpp
>> +#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
>> +#usr/include/boost/msm/backmp11/detail/transition_table.hpp
>> #usr/include/boost/msm/backmp11/event_traits.hpp
>> #usr/include/boost/msm/backmp11/favor_compile_time.hpp
>> +#usr/include/boost/msm/backmp11/observer.hpp
>> +#usr/include/boost/msm/backmp11/serialization
>> +#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
>> +#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
>> +#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
>> #usr/include/boost/msm/backmp11/state_machine.hpp
>> #usr/include/boost/msm/backmp11/state_machine_config.hpp
>> #usr/include/boost/msm/common.hpp
>> @@ -10312,6 +10626,7 @@
>> #usr/include/boost/msm/front/detail
>> #usr/include/boost/msm/front/detail/common_states.hpp
>> #usr/include/boost/msm/front/detail/row2_helper.hpp
>> +#usr/include/boost/msm/front/detail/state_tags.hpp
>> #usr/include/boost/msm/front/euml
>> #usr/include/boost/msm/front/euml/algorithm.hpp
>> #usr/include/boost/msm/front/euml/common.hpp
>> @@ -10373,11 +10688,10 @@
>> #usr/include/boost/multi_index
>> #usr/include/boost/multi_index/composite_key.hpp
>> #usr/include/boost/multi_index/detail
>> -#usr/include/boost/multi_index/detail/access_specifier.hpp
>> #usr/include/boost/multi_index/detail/adl_swap.hpp
>> -#usr/include/boost/multi_index/detail/allocator_traits.hpp
>> #usr/include/boost/multi_index/detail/any_container_view.hpp
>> #usr/include/boost/multi_index/detail/archive_constructed.hpp
>> +#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
>> #usr/include/boost/multi_index/detail/auto_space.hpp
>> #usr/include/boost/multi_index/detail/bad_archive_exception.hpp
>> #usr/include/boost/multi_index/detail/base_type.hpp
>> @@ -10408,7 +10722,9 @@
>> #usr/include/boost/multi_index/detail/is_transparent.hpp
>> #usr/include/boost/multi_index/detail/iter_adaptor.hpp
>> #usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
>> +#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
>> #usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
>> +#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
>> #usr/include/boost/multi_index/detail/node_handle.hpp
>> #usr/include/boost/multi_index/detail/node_type.hpp
>> #usr/include/boost/multi_index/detail/ord_index_args.hpp
>> @@ -10431,11 +10747,11 @@
>> #usr/include/boost/multi_index/detail/seq_index_node.hpp
>> #usr/include/boost/multi_index/detail/seq_index_ops.hpp
>> #usr/include/boost/multi_index/detail/serialization_version.hpp
>> +#usr/include/boost/multi_index/detail/type_list.hpp
>> #usr/include/boost/multi_index/detail/uintptr_type.hpp
>> #usr/include/boost/multi_index/detail/unbounded.hpp
>> #usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
>> #usr/include/boost/multi_index/detail/value_compare.hpp
>> -#usr/include/boost/multi_index/detail/vartempl_support.hpp
>> #usr/include/boost/multi_index/global_fun.hpp
>> #usr/include/boost/multi_index/hashed_index.hpp
>> #usr/include/boost/multi_index/hashed_index_fwd.hpp
>> @@ -10678,6 +10994,7 @@
>> #usr/include/boost/mysql/impl/internal/error
>> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
>> #usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
>> +#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
>> #usr/include/boost/mysql/impl/internal/protocol
>> #usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
>> #usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
>> @@ -11176,6 +11493,7 @@
>> #usr/include/boost/openmethod/initialize.hpp
>> #usr/include/boost/openmethod/inplace_vptr.hpp
>> #usr/include/boost/openmethod/interop
>> +#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
>> #usr/include/boost/openmethod/interop/std_shared_ptr.hpp
>> #usr/include/boost/openmethod/interop/std_unique_ptr.hpp
>> #usr/include/boost/openmethod/macros.hpp
>> @@ -11197,14 +11515,17 @@
>> #usr/include/boost/optional/detail
>> #usr/include/boost/optional/detail/experimental_traits.hpp
>> #usr/include/boost/optional/detail/optional_aligned_storage.hpp
>> +#usr/include/boost/optional/detail/optional_common_defs.hpp
>> #usr/include/boost/optional/detail/optional_config.hpp
>> #usr/include/boost/optional/detail/optional_factory_support.hpp
>> #usr/include/boost/optional/detail/optional_hash.hpp
>> +#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
>> #usr/include/boost/optional/detail/optional_reference_spec.hpp
>> #usr/include/boost/optional/detail/optional_relops.hpp
>> +#usr/include/boost/optional/detail/optional_select_implementation.hpp
>> #usr/include/boost/optional/detail/optional_swap.hpp
>> #usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
>> -#usr/include/boost/optional/detail/optional_utility.hpp
>> +#usr/include/boost/optional/detail/union_optional.hpp
>> #usr/include/boost/optional/optional.hpp
>> #usr/include/boost/optional/optional_fwd.hpp
>> #usr/include/boost/optional/optional_io.hpp
>> @@ -11489,9 +11810,11 @@
>> #usr/include/boost/pfr/detail/core17.hpp
>> #usr/include/boost/pfr/detail/core17_generated.hpp
>> #usr/include/boost/pfr/detail/core26.hpp
>> +#usr/include/boost/pfr/detail/core26_reflection.hpp
>> #usr/include/boost/pfr/detail/core_name.hpp
>> #usr/include/boost/pfr/detail/core_name14_disabled.hpp
>> #usr/include/boost/pfr/detail/core_name20_static.hpp
>> +#usr/include/boost/pfr/detail/core_name26_reflection.hpp
>> #usr/include/boost/pfr/detail/detectors.hpp
>> #usr/include/boost/pfr/detail/fake_object.hpp
>> #usr/include/boost/pfr/detail/fields_count.hpp
>> @@ -13245,6 +13568,7 @@
>> #usr/include/boost/python/detail/pointee.hpp
>> #usr/include/boost/python/detail/prefix.hpp
>> #usr/include/boost/python/detail/preprocessor.hpp
>> +#usr/include/boost/python/detail/pymutex.hpp
>> #usr/include/boost/python/detail/python22_fixed.h
>> #usr/include/boost/python/detail/python_type.hpp
>> #usr/include/boost/python/detail/raw_pyobject.hpp
>> @@ -13750,15 +14074,20 @@
>> #usr/include/boost/redis/connection.hpp
>> #usr/include/boost/redis/detail
>> #usr/include/boost/redis/detail/connect_fsm.hpp
>> +#usr/include/boost/redis/detail/connect_params.hpp
>> #usr/include/boost/redis/detail/connection_state.hpp
>> #usr/include/boost/redis/detail/coroutine.hpp
>> #usr/include/boost/redis/detail/exec_fsm.hpp
>> +#usr/include/boost/redis/detail/exec_one_fsm.hpp
>> #usr/include/boost/redis/detail/multiplexer.hpp
>> #usr/include/boost/redis/detail/read_buffer.hpp
>> #usr/include/boost/redis/detail/reader_fsm.hpp
>> +#usr/include/boost/redis/detail/receive_fsm.hpp
>> #usr/include/boost/redis/detail/redis_stream.hpp
>> #usr/include/boost/redis/detail/resp3_type_to_error.hpp
>> #usr/include/boost/redis/detail/run_fsm.hpp
>> +#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
>> +#usr/include/boost/redis/detail/subscription_tracker.hpp
>> #usr/include/boost/redis/detail/write.hpp
>> #usr/include/boost/redis/detail/writer_fsm.hpp
>> #usr/include/boost/redis/error.hpp
>> @@ -13768,23 +14097,32 @@
>> #usr/include/boost/redis/impl/connection.ipp
>> #usr/include/boost/redis/impl/error.ipp
>> #usr/include/boost/redis/impl/exec_fsm.ipp
>> +#usr/include/boost/redis/impl/exec_one_fsm.ipp
>> +#usr/include/boost/redis/impl/flat_tree.ipp
>> #usr/include/boost/redis/impl/ignore.ipp
>> #usr/include/boost/redis/impl/is_terminal_cancel.hpp
>> #usr/include/boost/redis/impl/log_to_file.hpp
>> #usr/include/boost/redis/impl/log_utils.hpp
>> #usr/include/boost/redis/impl/logger.ipp
>> #usr/include/boost/redis/impl/multiplexer.ipp
>> +#usr/include/boost/redis/impl/push_parser.ipp
>> #usr/include/boost/redis/impl/read_buffer.ipp
>> #usr/include/boost/redis/impl/reader_fsm.ipp
>> +#usr/include/boost/redis/impl/receive_fsm.ipp
>> #usr/include/boost/redis/impl/request.ipp
>> #usr/include/boost/redis/impl/response.ipp
>> #usr/include/boost/redis/impl/run_fsm.ipp
>> +#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
>> +#usr/include/boost/redis/impl/sentinel_utils.hpp
>> #usr/include/boost/redis/impl/setup_request_utils.hpp
>> +#usr/include/boost/redis/impl/subscription_tracker.ipp
>> #usr/include/boost/redis/impl/writer_fsm.ipp
>> #usr/include/boost/redis/logger.hpp
>> #usr/include/boost/redis/operation.hpp
>> +#usr/include/boost/redis/push_parser.hpp
>> #usr/include/boost/redis/request.hpp
>> #usr/include/boost/redis/resp3
>> +#usr/include/boost/redis/resp3/flat_tree.hpp
>> #usr/include/boost/redis/resp3/impl
>> #usr/include/boost/redis/resp3/impl/parser.ipp
>> #usr/include/boost/redis/resp3/impl/serialization.ipp
>> @@ -13792,6 +14130,7 @@
>> #usr/include/boost/redis/resp3/node.hpp
>> #usr/include/boost/redis/resp3/parser.hpp
>> #usr/include/boost/redis/resp3/serialization.hpp
>> +#usr/include/boost/redis/resp3/tree.hpp
>> #usr/include/boost/redis/resp3/type.hpp
>> #usr/include/boost/redis/response.hpp
>> #usr/include/boost/redis/src.hpp
>> @@ -15352,9 +15691,11 @@
>> #usr/include/boost/stacktrace/detail/addr2line_impls.hpp
>> #usr/include/boost/stacktrace/detail/addr_base.hpp
>> #usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
>> +#usr/include/boost/stacktrace/detail/backend_config.hpp
>> #usr/include/boost/stacktrace/detail/collect_msvc.ipp
>> #usr/include/boost/stacktrace/detail/collect_noop.ipp
>> #usr/include/boost/stacktrace/detail/collect_unwind.ipp
>> +#usr/include/boost/stacktrace/detail/config.hpp
>> #usr/include/boost/stacktrace/detail/frame_decl.hpp
>> #usr/include/boost/stacktrace/detail/frame_msvc.ipp
>> #usr/include/boost/stacktrace/detail/frame_noop.ipp
>> @@ -15408,7 +15749,10 @@
>> #usr/include/boost/statechart/state_machine.hpp
>> #usr/include/boost/statechart/termination.hpp
>> #usr/include/boost/statechart/transition.hpp
>> +#usr/include/boost/static_assert
>> #usr/include/boost/static_assert.hpp
>> +#usr/include/boost/static_assert/detail
>> +#usr/include/boost/static_assert/detail/backward.hpp
>> #usr/include/boost/static_string
>> #usr/include/boost/static_string.hpp
>> #usr/include/boost/static_string/config.hpp
>> @@ -15442,6 +15786,7 @@
>> #usr/include/boost/system/detail/generic_category.hpp
>> #usr/include/boost/system/detail/generic_category_message.hpp
>> #usr/include/boost/system/detail/interop_category.hpp
>> +#usr/include/boost/system/detail/is_aggregate.hpp
>> #usr/include/boost/system/detail/is_same.hpp
>> #usr/include/boost/system/detail/mutex.hpp
>> #usr/include/boost/system/detail/snprintf.hpp
>> @@ -15464,6 +15809,7 @@
>> #usr/include/boost/system/result.hpp
>> #usr/include/boost/system/system_category.hpp
>> #usr/include/boost/system/system_error.hpp
>> +#usr/include/boost/system/unwrap_and_invoke.hpp
>> #usr/include/boost/system/windows_error.hpp
>> #usr/include/boost/test
>> #usr/include/boost/test/auto_unit_test.hpp
>> @@ -16595,6 +16941,7 @@
>> #usr/include/boost/unordered/detail/narrow_cast.hpp
>> #usr/include/boost/unordered/detail/opt_storage.hpp
>> #usr/include/boost/unordered/detail/prime_fmod.hpp
>> +#usr/include/boost/unordered/detail/ranges_support.hpp
>> #usr/include/boost/unordered/detail/serialization_version.hpp
>> #usr/include/boost/unordered/detail/serialize_container.hpp
>> #usr/include/boost/unordered/detail/serialize_fca_container.hpp
>> @@ -16623,19 +16970,33 @@
>> #usr/include/boost/url
>> #usr/include/boost/url.hpp
>> #usr/include/boost/url/authority_view.hpp
>> +#usr/include/boost/url/decode.hpp
>> #usr/include/boost/url/decode_view.hpp
>> #usr/include/boost/url/detail
>> #usr/include/boost/url/detail/any_params_iter.hpp
>> #usr/include/boost/url/detail/any_segments_iter.hpp
>> #usr/include/boost/url/detail/config.hpp
>> +#usr/include/boost/url/detail/decode.hpp
>> #usr/include/boost/url/detail/encode.hpp
>> #usr/include/boost/url/detail/except.hpp
>> +#usr/include/boost/url/detail/fnv_1a.hpp
>> #usr/include/boost/url/detail/format_args.hpp
>> #usr/include/boost/url/detail/impl
>> +#usr/include/boost/url/detail/impl/any_params_iter.hpp
>> +#usr/include/boost/url/detail/impl/any_segments_iter.hpp
>> #usr/include/boost/url/detail/impl/format_args.hpp
>> +#usr/include/boost/url/detail/impl/params_iter_impl.hpp
>> +#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
>> +#usr/include/boost/url/detail/impl/url_impl.hpp
>> +#usr/include/boost/url/detail/memcpy.hpp
>> +#usr/include/boost/url/detail/move_chars.hpp
>> +#usr/include/boost/url/detail/normalize.hpp
>> #usr/include/boost/url/detail/optional_string.hpp
>> +#usr/include/boost/url/detail/over_allocator.hpp
>> #usr/include/boost/url/detail/params_iter_impl.hpp
>> #usr/include/boost/url/detail/parts_base.hpp
>> +#usr/include/boost/url/detail/path.hpp
>> +#usr/include/boost/url/detail/print.hpp
>> #usr/include/boost/url/detail/replacement_field_rule.hpp
>> #usr/include/boost/url/detail/segments_iter_impl.hpp
>> #usr/include/boost/url/detail/segments_range.hpp
>> @@ -16659,13 +17020,17 @@
>> #usr/include/boost/url/grammar/detail
>> #usr/include/boost/url/grammar/detail/charset.hpp
>> #usr/include/boost/url/grammar/detail/ci_string.hpp
>> +#usr/include/boost/url/grammar/detail/range_rule.hpp
>> #usr/include/boost/url/grammar/detail/recycled.hpp
>> #usr/include/boost/url/grammar/detail/tuple.hpp
>> #usr/include/boost/url/grammar/digit_chars.hpp
>> #usr/include/boost/url/grammar/error.hpp
>> #usr/include/boost/url/grammar/hexdig_chars.hpp
>> #usr/include/boost/url/grammar/impl
>> +#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
>> +#usr/include/boost/url/grammar/impl/delim_rule.hpp
>> #usr/include/boost/url/grammar/impl/error.hpp
>> +#usr/include/boost/url/grammar/impl/literal_rule.hpp
>> #usr/include/boost/url/grammar/impl/not_empty_rule.hpp
>> #usr/include/boost/url/grammar/impl/optional_rule.hpp
>> #usr/include/boost/url/grammar/impl/parse.hpp
>> @@ -16693,17 +17058,30 @@
>> #usr/include/boost/url/host_type.hpp
>> #usr/include/boost/url/ignore_case.hpp
>> #usr/include/boost/url/impl
>> +#usr/include/boost/url/impl/authority_view.hpp
>> +#usr/include/boost/url/impl/decode.hpp
>> #usr/include/boost/url/impl/decode_view.hpp
>> #usr/include/boost/url/impl/encode.hpp
>> #usr/include/boost/url/impl/error.hpp
>> #usr/include/boost/url/impl/params_base.hpp
>> #usr/include/boost/url/impl/params_encoded_base.hpp
>> #usr/include/boost/url/impl/params_encoded_ref.hpp
>> +#usr/include/boost/url/impl/params_encoded_view.hpp
>> #usr/include/boost/url/impl/params_ref.hpp
>> +#usr/include/boost/url/impl/params_view.hpp
>> +#usr/include/boost/url/impl/parse.hpp
>> +#usr/include/boost/url/impl/scheme.hpp
>> #usr/include/boost/url/impl/segments_base.hpp
>> #usr/include/boost/url/impl/segments_encoded_base.hpp
>> #usr/include/boost/url/impl/segments_encoded_ref.hpp
>> +#usr/include/boost/url/impl/segments_encoded_view.hpp
>> #usr/include/boost/url/impl/segments_ref.hpp
>> +#usr/include/boost/url/impl/segments_view.hpp
>> +#usr/include/boost/url/impl/static_url.hpp
>> +#usr/include/boost/url/impl/url.hpp
>> +#usr/include/boost/url/impl/url_base.hpp
>> +#usr/include/boost/url/impl/url_view.hpp
>> +#usr/include/boost/url/impl/url_view_base.hpp
>> #usr/include/boost/url/ipv4_address.hpp
>> #usr/include/boost/url/ipv6_address.hpp
>> #usr/include/boost/url/optional.hpp
>> @@ -16722,10 +17100,44 @@
>> #usr/include/boost/url/rfc/absolute_uri_rule.hpp
>> #usr/include/boost/url/rfc/authority_rule.hpp
>> #usr/include/boost/url/rfc/detail
>> +#usr/include/boost/url/rfc/detail/charsets.hpp
>> +#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/h16_rule.hpp
>> +#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/host_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl
>> +#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
>> +#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
>> +#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
>> #usr/include/boost/url/rfc/detail/path_rules.hpp
>> +#usr/include/boost/url/rfc/detail/port_rule.hpp
>> +#usr/include/boost/url/rfc/detail/query_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
>> +#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
>> +#usr/include/boost/url/rfc/detail/scheme_rule.hpp
>> +#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
>> #usr/include/boost/url/rfc/gen_delim_chars.hpp
>> #usr/include/boost/url/rfc/impl
>> +#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
>> +#usr/include/boost/url/rfc/impl/authority_rule.hpp
>> +#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
>> +#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
>> +#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
>> #usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
>> +#usr/include/boost/url/rfc/impl/query_rule.hpp
>> +#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
>> +#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
>> +#usr/include/boost/url/rfc/impl/uri_rule.hpp
>> #usr/include/boost/url/rfc/ipv4_address_rule.hpp
>> #usr/include/boost/url/rfc/ipv6_address_rule.hpp
>> #usr/include/boost/url/rfc/origin_form_rule.hpp
>> @@ -16788,21 +17200,33 @@
>> #usr/include/boost/uuid/detail/basic_name_generator.hpp
>> #usr/include/boost/uuid/detail/chacha20.hpp
>> #usr/include/boost/uuid/detail/config.hpp
>> +#usr/include/boost/uuid/detail/cstring.hpp
>> #usr/include/boost/uuid/detail/endian.hpp
>> +#usr/include/boost/uuid/detail/from_chars.hpp
>> +#usr/include/boost/uuid/detail/from_chars_generic.hpp
>> +#usr/include/boost/uuid/detail/from_chars_result.hpp
>> +#usr/include/boost/uuid/detail/from_chars_x86.hpp
>> #usr/include/boost/uuid/detail/hash_mix.hpp
>> +#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
>> #usr/include/boost/uuid/detail/md5.hpp
>> #usr/include/boost/uuid/detail/nil_uuid.hpp
>> #usr/include/boost/uuid/detail/numeric_cast.hpp
>> #usr/include/boost/uuid/detail/random_device.hpp
>> #usr/include/boost/uuid/detail/random_provider.hpp
>> #usr/include/boost/uuid/detail/sha1.hpp
>> +#usr/include/boost/uuid/detail/simd_vector.hpp
>> #usr/include/boost/uuid/detail/static_assert.hpp
>> +#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
>> #usr/include/boost/uuid/detail/to_chars.hpp
>> +#usr/include/boost/uuid/detail/to_chars_generic.hpp
>> +#usr/include/boost/uuid/detail/to_chars_x86.hpp
>> +#usr/include/boost/uuid/detail/uuid_from_string.hpp
>> #usr/include/boost/uuid/detail/uuid_generic.ipp
>> #usr/include/boost/uuid/detail/uuid_uint128.ipp
>> #usr/include/boost/uuid/detail/uuid_x86.ipp
>> #usr/include/boost/uuid/entropy_error.hpp
>> #usr/include/boost/uuid/generators.hpp
>> +#usr/include/boost/uuid/invalid_uuid.hpp
>> #usr/include/boost/uuid/name_generator.hpp
>> #usr/include/boost/uuid/name_generator_md5.hpp
>> #usr/include/boost/uuid/name_generator_sha1.hpp
>> @@ -17304,274 +17728,407 @@
>> #usr/include/boost/yap/print.hpp
>> #usr/include/boost/yap/user_macros.hpp
>> #usr/include/boost/yap/yap.hpp
>> -#usr/lib/cmake/Boost-1.90.0
>> -#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
>> -#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
>> -#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0
>> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
>> -#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0
>> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
>> -#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0
>> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
>> -#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
>> -#usr/lib/cmake/boost_cobalt-1.90.0
>> -#usr/lib/cmake/boost_cobalt-1.90.0/boost_cobalt-config-version.cmake
>> -#usr/lib/cmake/boost_cobalt-1.90.0/boost_cobalt-config.cmake
>> -#usr/lib/cmake/boost_cobalt-1.90.0/libboost_cobalt-variant-shared.cmake
>> -#usr/lib/cmake/boost_cobalt_io-1.90.0
>> -#usr/lib/cmake/boost_cobalt_io-1.90.0/boost_cobalt_io-config-version.cmake
>> -#usr/lib/cmake/boost_cobalt_io-1.90.0/boost_cobalt_io-config.cmake
>> -#usr/lib/cmake/boost_cobalt_io-1.90.0/libboost_cobalt_io-variant-shared.cmake
>> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0
>> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/boost_cobalt_io_ssl-config-version.cmake
>> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/boost_cobalt_io_ssl-config.cmake
>> -#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/libboost_cobalt_io_ssl-variant-shared.cmake
>> -#usr/lib/cmake/boost_container-1.90.0
>> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
>> -#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
>> -#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
>> -#usr/lib/cmake/boost_context-1.90.0
>> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
>> -#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
>> -#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0
>> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
>> -#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0
>> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
>> -#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
>> -#usr/lib/cmake/boost_exception-1.90.0
>> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
>> -#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0
>> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
>> -#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0
>> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
>> -#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
>> -#usr/lib/cmake/boost_headers-1.90.0
>> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
>> -#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0
>> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
>> -#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
>> -#usr/lib/cmake/boost_json-1.90.0
>> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
>> -#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
>> -#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0
>> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
>> -#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
>> -#usr/lib/cmake/boost_log-1.90.0
>> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
>> -#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
>> -#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0
>> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
>> -#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
>> -#usr/lib/cmake/boost_math-1.90.0
>> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
>> -#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0
>> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
>> -#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
>> -#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
>> -#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
>> -#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
>> -#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
>> -#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0
>> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
>> -#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
>> -#usr/lib/cmake/boost_numpy-1.90.0
>> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
>> -#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
>> -#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
>> -#usr/lib/cmake/boost_process-1.90.0
>> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
>> -#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
>> -#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
>> -#usr/lib/cmake/boost_python-1.90.0
>> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
>> -#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
>> -#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
>> -#usr/lib/cmake/boost_random-1.90.0
>> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
>> -#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
>> -#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0
>> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
>> -#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0
>> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
>> -#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/libboost_stacktrace_from_exception-variant-shared.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
>> -#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
>> -#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0
>> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
>> -#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0
>> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
>> -#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
>> -#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
>> -#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
>> -#usr/lib/cmake/boost_url-1.90.0
>> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
>> -#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
>> -#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0
>> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
>> -#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0
>> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
>> -#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
>> -#usr/lib/libboost_atomic.so
>> -usr/lib/libboost_atomic.so.1.90.0
>> -#usr/lib/libboost_charconv.so
>> -usr/lib/libboost_charconv.so.1.90.0
>> -#usr/lib/libboost_chrono.so
>> -usr/lib/libboost_chrono.so.1.90.0
>> -#usr/lib/libboost_cobalt.so
>> -usr/lib/libboost_cobalt.so.1.90.0
>> -#usr/lib/libboost_cobalt_io.so
>> -usr/lib/libboost_cobalt_io.so.1.90.0
>> -#usr/lib/libboost_cobalt_io_ssl.so
>> -usr/lib/libboost_cobalt_io_ssl.so.1.90.0
>> -#usr/lib/libboost_container.so
>> -usr/lib/libboost_container.so.1.90.0
>> -#usr/lib/libboost_context.so
>> -usr/lib/libboost_context.so.1.90.0
>> -#usr/lib/libboost_contract.so
>> -usr/lib/libboost_contract.so.1.90.0
>> -#usr/lib/libboost_date_time.so
>> -usr/lib/libboost_date_time.so.1.90.0
>> -#usr/lib/libboost_exception.a
>> -#usr/lib/libboost_filesystem.so
>> -usr/lib/libboost_filesystem.so.1.90.0
>> -#usr/lib/libboost_graph.so
>> -usr/lib/libboost_graph.so.1.90.0
>> -#usr/lib/libboost_iostreams.so
>> -usr/lib/libboost_iostreams.so.1.90.0
>> -#usr/lib/libboost_json.so
>> -usr/lib/libboost_json.so.1.90.0
>> -#usr/lib/libboost_locale.so
>> -usr/lib/libboost_locale.so.1.90.0
>> -#usr/lib/libboost_log.so
>> -usr/lib/libboost_log.so.1.90.0
>> -#usr/lib/libboost_log_setup.so
>> -usr/lib/libboost_log_setup.so.1.90.0
>> -#usr/lib/libboost_math_c99.so
>> -usr/lib/libboost_math_c99.so.1.90.0
>> -#usr/lib/libboost_math_c99f.so
>> -usr/lib/libboost_math_c99f.so.1.90.0
>> -#usr/lib/libboost_math_c99l.so
>> -usr/lib/libboost_math_c99l.so.1.90.0
>> -#usr/lib/libboost_math_tr1.so
>> -usr/lib/libboost_math_tr1.so.1.90.0
>> -#usr/lib/libboost_math_tr1f.so
>> -usr/lib/libboost_math_tr1f.so.1.90.0
>> -#usr/lib/libboost_math_tr1l.so
>> -usr/lib/libboost_math_tr1l.so.1.90.0
>> -#usr/lib/libboost_nowide.so
>> -usr/lib/libboost_nowide.so.1.90.0
>> -#usr/lib/libboost_prg_exec_monitor.so
>> -usr/lib/libboost_prg_exec_monitor.so.1.90.0
>> -#usr/lib/libboost_process.so
>> -usr/lib/libboost_process.so.1.90.0
>> -#usr/lib/libboost_python310.so
>> -usr/lib/libboost_python310.so.1.90.0
>> -#usr/lib/libboost_random.so
>> -usr/lib/libboost_random.so.1.90.0
>> -#usr/lib/libboost_regex.so
>> -usr/lib/libboost_regex.so.1.90.0
>> -#usr/lib/libboost_serialization.so
>> -usr/lib/libboost_serialization.so.1.90.0
>> -#usr/lib/libboost_stacktrace_addr2line.so
>> -usr/lib/libboost_stacktrace_addr2line.so.1.90.0
>> -#usr/lib/libboost_stacktrace_basic.so
>> -usr/lib/libboost_stacktrace_basic.so.1.90.0
>> -#usr/lib/libboost_stacktrace_from_exception.so
>> -usr/lib/libboost_stacktrace_from_exception.so.1.90.0
>> -#usr/lib/libboost_stacktrace_noop.so
>> -usr/lib/libboost_stacktrace_noop.so.1.90.0
>> -#usr/lib/libboost_test_exec_monitor.a
>> -#usr/lib/libboost_thread.so
>> -usr/lib/libboost_thread.so.1.90.0
>> -#usr/lib/libboost_timer.so
>> -usr/lib/libboost_timer.so.1.90.0
>> -#usr/lib/libboost_type_erasure.so
>> -usr/lib/libboost_type_erasure.so.1.90.0
>> -#usr/lib/libboost_unit_test_framework.so
>> -usr/lib/libboost_unit_test_framework.so.1.90.0
>> -#usr/lib/libboost_url.so
>> -usr/lib/libboost_url.so.1.90.0
>> -#usr/lib/libboost_wave.so
>> -usr/lib/libboost_wave.so.1.90.0
>> -#usr/lib/libboost_wserialization.so
>> -usr/lib/libboost_wserialization.so.1.90.0
>> +#usr/lib/cmake/Boost-1.92.0
>> +#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
>> +#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
>> +#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0
>> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0
>> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0
>> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0
>> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_container-1.92.0
>> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_context-1.92.0
>> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0
>> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0
>> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_exception-1.92.0
>> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
>> +#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0
>> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0
>> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_headers-1.92.0
>> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
>> +#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0
>> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_json-1.92.0
>> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0
>> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_log-1.92.0
>> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0
>> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_math-1.92.0
>> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
>> +#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0
>> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0
>> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_numpy-1.92.0
>> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
>> +#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_process-1.92.0
>> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_python-1.92.0
>> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-x64-shared-py3.10.cmake
>> +#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-x64-shared-py3.10.cmake
>> +#usr/lib/cmake/boost_random-1.92.0
>> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_regex-1.92.0
>> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
>> +#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0
>> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0
>> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_system-1.92.0
>> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
>> +#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0
>> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0
>> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_url-1.92.0
>> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0
>> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-x64-shared.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0
>> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-x64-shared.cmake
>> +#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-x64-shared.cmake
>> +#usr/lib/libboost_atomic-mt-x64.so
>> +usr/lib/libboost_atomic-mt-x64.so.1.92.0
>> +#usr/lib/libboost_charconv-mt-x64.so
>> +usr/lib/libboost_charconv-mt-x64.so.1.92.0
>> +#usr/lib/libboost_charconv-x64.so
>> +usr/lib/libboost_charconv-x64.so.1.92.0
>> +#usr/lib/libboost_chrono-mt-x64.so
>> +usr/lib/libboost_chrono-mt-x64.so.1.92.0
>> +#usr/lib/libboost_chrono-x64.so
>> +usr/lib/libboost_chrono-x64.so.1.92.0
>> +#usr/lib/libboost_cobalt-mt-x64.so
>> +usr/lib/libboost_cobalt-mt-x64.so.1.92.0
>> +#usr/lib/libboost_cobalt-x64.so
>> +usr/lib/libboost_cobalt-x64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io-mt-x64.so
>> +usr/lib/libboost_cobalt_io-mt-x64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io-x64.so
>> +usr/lib/libboost_cobalt_io-x64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io_ssl-mt-x64.so
>> +usr/lib/libboost_cobalt_io_ssl-mt-x64.so.1.92.0
>> +#usr/lib/libboost_cobalt_io_ssl-x64.so
>> +usr/lib/libboost_cobalt_io_ssl-x64.so.1.92.0
>> +#usr/lib/libboost_container-mt-x64.so
>> +usr/lib/libboost_container-mt-x64.so.1.92.0
>> +#usr/lib/libboost_container-x64.so
>> +usr/lib/libboost_container-x64.so.1.92.0
>> +#usr/lib/libboost_context-mt-x64.so
>> +usr/lib/libboost_context-mt-x64.so.1.92.0
>> +#usr/lib/libboost_contract-mt-x64.so
>> +usr/lib/libboost_contract-mt-x64.so.1.92.0
>> +#usr/lib/libboost_contract-x64.so
>> +usr/lib/libboost_contract-x64.so.1.92.0
>> +#usr/lib/libboost_date_time-mt-x64.so
>> +usr/lib/libboost_date_time-mt-x64.so.1.92.0
>> +#usr/lib/libboost_date_time-x64.so
>> +usr/lib/libboost_date_time-x64.so.1.92.0
>> +#usr/lib/libboost_exception-mt-x64.a
>> +#usr/lib/libboost_exception-x64.a
>> +#usr/lib/libboost_filesystem-mt-x64.so
>> +usr/lib/libboost_filesystem-mt-x64.so.1.92.0
>> +#usr/lib/libboost_filesystem-x64.so
>> +usr/lib/libboost_filesystem-x64.so.1.92.0
>> +#usr/lib/libboost_graph-mt-x64.so
>> +usr/lib/libboost_graph-mt-x64.so.1.92.0
>> +#usr/lib/libboost_graph-x64.so
>> +usr/lib/libboost_graph-x64.so.1.92.0
>> +#usr/lib/libboost_iostreams-mt-x64.so
>> +usr/lib/libboost_iostreams-mt-x64.so.1.92.0
>> +#usr/lib/libboost_iostreams-x64.so
>> +usr/lib/libboost_iostreams-x64.so.1.92.0
>> +#usr/lib/libboost_json-mt-x64.so
>> +usr/lib/libboost_json-mt-x64.so.1.92.0
>> +#usr/lib/libboost_json-x64.so
>> +usr/lib/libboost_json-x64.so.1.92.0
>> +#usr/lib/libboost_locale-mt-x64.so
>> +usr/lib/libboost_locale-mt-x64.so.1.92.0
>> +#usr/lib/libboost_log-mt-x64.so
>> +usr/lib/libboost_log-mt-x64.so.1.92.0
>> +#usr/lib/libboost_log-x64.so
>> +usr/lib/libboost_log-x64.so.1.92.0
>> +#usr/lib/libboost_log_setup-mt-x64.so
>> +usr/lib/libboost_log_setup-mt-x64.so.1.92.0
>> +#usr/lib/libboost_log_setup-x64.so
>> +usr/lib/libboost_log_setup-x64.so.1.92.0
>> +#usr/lib/libboost_math_c99-mt-x64.so
>> +usr/lib/libboost_math_c99-mt-x64.so.1.92.0
>> +#usr/lib/libboost_math_c99-x64.so
>> +usr/lib/libboost_math_c99-x64.so.1.92.0
>> +#usr/lib/libboost_math_c99f-mt-x64.so
>> +usr/lib/libboost_math_c99f-mt-x64.so.1.92.0
>> +#usr/lib/libboost_math_c99f-x64.so
>> +usr/lib/libboost_math_c99f-x64.so.1.92.0
>> +#usr/lib/libboost_math_c99l-mt-x64.so
>> +usr/lib/libboost_math_c99l-mt-x64.so.1.92.0
>> +#usr/lib/libboost_math_c99l-x64.so
>> +usr/lib/libboost_math_c99l-x64.so.1.92.0
>> +#usr/lib/libboost_math_tr1-mt-x64.so
>> +usr/lib/libboost_math_tr1-mt-x64.so.1.92.0
>> +#usr/lib/libboost_math_tr1-x64.so
>> +usr/lib/libboost_math_tr1-x64.so.1.92.0
>> +#usr/lib/libboost_math_tr1f-mt-x64.so
>> +usr/lib/libboost_math_tr1f-mt-x64.so.1.92.0
>> +#usr/lib/libboost_math_tr1f-x64.so
>> +usr/lib/libboost_math_tr1f-x64.so.1.92.0
>> +#usr/lib/libboost_math_tr1l-mt-x64.so
>> +usr/lib/libboost_math_tr1l-mt-x64.so.1.92.0
>> +#usr/lib/libboost_math_tr1l-x64.so
>> +usr/lib/libboost_math_tr1l-x64.so.1.92.0
>> +#usr/lib/libboost_nowide-mt-x64.so
>> +usr/lib/libboost_nowide-mt-x64.so.1.92.0
>> +#usr/lib/libboost_nowide-x64.so
>> +usr/lib/libboost_nowide-x64.so.1.92.0
>> +#usr/lib/libboost_prg_exec_monitor-mt-x64.so
>> +usr/lib/libboost_prg_exec_monitor-mt-x64.so.1.92.0
>> +#usr/lib/libboost_prg_exec_monitor-x64.so
>> +usr/lib/libboost_prg_exec_monitor-x64.so.1.92.0
>> +#usr/lib/libboost_process-mt-x64.so
>> +usr/lib/libboost_process-mt-x64.so.1.92.0
>> +#usr/lib/libboost_process-x64.so
>> +usr/lib/libboost_process-x64.so.1.92.0
>> +#usr/lib/libboost_python310-mt-x64.so
>> +usr/lib/libboost_python310-mt-x64.so.1.92.0
>> +#usr/lib/libboost_python310-x64.so
>> +usr/lib/libboost_python310-x64.so.1.92.0
>> +#usr/lib/libboost_random-mt-x64.so
>> +usr/lib/libboost_random-mt-x64.so.1.92.0
>> +#usr/lib/libboost_random-x64.so
>> +usr/lib/libboost_random-x64.so.1.92.0
>> +#usr/lib/libboost_regex-mt-x64.so
>> +usr/lib/libboost_regex-mt-x64.so.1.92.0
>> +#usr/lib/libboost_regex-x64.so
>> +usr/lib/libboost_regex-x64.so.1.92.0
>> +#usr/lib/libboost_serialization-mt-x64.so
>> +usr/lib/libboost_serialization-mt-x64.so.1.92.0
>> +#usr/lib/libboost_serialization-x64.so
>> +usr/lib/libboost_serialization-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_addr2line-mt-x64.so
>> +usr/lib/libboost_stacktrace_addr2line-mt-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_addr2line-x64.so
>> +usr/lib/libboost_stacktrace_addr2line-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_basic-mt-x64.so
>> +usr/lib/libboost_stacktrace_basic-mt-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_basic-x64.so
>> +usr/lib/libboost_stacktrace_basic-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_dump-mt-x64.so
>> +usr/lib/libboost_stacktrace_dump-mt-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_dump-x64.so
>> +usr/lib/libboost_stacktrace_dump-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_from_exception-mt-x64.so
>> +usr/lib/libboost_stacktrace_from_exception-mt-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_from_exception-x64.so
>> +usr/lib/libboost_stacktrace_from_exception-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_noop-mt-x64.so
>> +usr/lib/libboost_stacktrace_noop-mt-x64.so.1.92.0
>> +#usr/lib/libboost_stacktrace_noop-x64.so
>> +usr/lib/libboost_stacktrace_noop-x64.so.1.92.0
>> +#usr/lib/libboost_test_exec_monitor-mt-x64.a
>> +#usr/lib/libboost_test_exec_monitor-x64.a
>> +#usr/lib/libboost_thread-mt-x64.so
>> +usr/lib/libboost_thread-mt-x64.so.1.92.0
>> +#usr/lib/libboost_timer-mt-x64.so
>> +usr/lib/libboost_timer-mt-x64.so.1.92.0
>> +#usr/lib/libboost_timer-x64.so
>> +usr/lib/libboost_timer-x64.so.1.92.0
>> +#usr/lib/libboost_type_erasure-mt-x64.so
>> +usr/lib/libboost_type_erasure-mt-x64.so.1.92.0
>> +#usr/lib/libboost_type_erasure-x64.so
>> +usr/lib/libboost_type_erasure-x64.so.1.92.0
>> +#usr/lib/libboost_unit_test_framework-mt-x64.so
>> +usr/lib/libboost_unit_test_framework-mt-x64.so.1.92.0
>> +#usr/lib/libboost_unit_test_framework-x64.so
>> +usr/lib/libboost_unit_test_framework-x64.so.1.92.0
>> +#usr/lib/libboost_url-mt-x64.so
>> +usr/lib/libboost_url-mt-x64.so.1.92.0
>> +#usr/lib/libboost_url-x64.so
>> +usr/lib/libboost_url-x64.so.1.92.0
>> +#usr/lib/libboost_wave-mt-x64.so
>> +usr/lib/libboost_wave-mt-x64.so.1.92.0
>> +#usr/lib/libboost_wave-x64.so
>> +usr/lib/libboost_wave-x64.so.1.92.0
>> +#usr/lib/libboost_wserialization-mt-x64.so
>> +usr/lib/libboost_wserialization-mt-x64.so.1.92.0
>> +#usr/lib/libboost_wserialization-x64.so
>> +usr/lib/libboost_wserialization-x64.so.1.92.0
>> #usr/share/boost_predef
>> #usr/share/boost_predef/build.jam
>> #usr/share/boost_predef/tools
>> diff --git a/lfs/boost b/lfs/boost
>> index d6b028254..75cd034dc 100644
>> --- a/lfs/boost
>> +++ b/lfs/boost
>> @@ -24,7 +24,7 @@
>>
>> include Config
>>
>> -VER = 1_90_0
>> +VER = 1_92_0
>>
>> THISAPP = boost_$(VER)
>> DL_FILE = $(THISAPP).tar.bz2
>> @@ -39,7 +39,7 @@ MAX_PARALLELISM = $(shell echo $$(( $(SYSTEM_MEMORY) / 512)))
>>
>> CONFIGURE_OPTIONS = \
>> --prefix=/usr \
>> - --layout=system \
>> + --layout=tagged \
>> --without-chrono \
>> --without-context \
>> --without-coroutine \
>> @@ -50,11 +50,10 @@ CONFIGURE_OPTIONS = \
>> --without-program_options \
>> --build-dir=serial \
>> variant=release \
>> - threading=multi \
>> + threading=single,multi \
>> debug-symbols=off \
>> pch=off \
>> link=shared \
>> - runtime-link=shared \
>> cflags="$(CFLAGS)" \
>> cxxflags="$(CXXFLAGS)"
>>
>> @@ -66,7 +65,7 @@ objects = $(DL_FILE)
>>
>> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>>
>> -$(DL_FILE)_BLAKE2 = daaf524dd26c0e24bec6e461749305277b9b86059f3eb3435ae4928a6537eb198234c597324faa40eb372343233daaf5f5aae886160d9833b04992ac57e385c9
>> +$(DL_FILE)_BLAKE2 = 982237b4fa77fe93ac7e246b9df9a21b1da49ea512628dc41ec67230b4af9566c9b501d2f4c1d5d8c4daf5d0d35e80929deb57f1e758ba8b46569140b3901887
>>
>> install : $(TARGET)
>>
>> --
>> 2.55.0
>>
>>
>
@@ -439,6 +439,7 @@
#usr/include/boost/asio/detail/array_fwd.hpp
#usr/include/boost/asio/detail/assert.hpp
#usr/include/boost/asio/detail/atomic_count.hpp
+#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
#usr/include/boost/asio/detail/base_from_cancellation_state.hpp
#usr/include/boost/asio/detail/base_from_completion_cond.hpp
#usr/include/boost/asio/detail/bind_handler.hpp
@@ -477,6 +478,7 @@
#usr/include/boost/asio/detail/fd_set_adapter.hpp
#usr/include/boost/asio/detail/fenced_block.hpp
#usr/include/boost/asio/detail/functional.hpp
+#usr/include/boost/asio/detail/futex_slim_mutex.hpp
#usr/include/boost/asio/detail/future.hpp
#usr/include/boost/asio/detail/global.hpp
#usr/include/boost/asio/detail/handler_alloc_helpers.hpp
@@ -527,6 +529,7 @@
#usr/include/boost/asio/detail/impl/thread_context.ipp
#usr/include/boost/asio/detail/impl/throw_error.ipp
#usr/include/boost/asio/detail/impl/timer_queue_set.ipp
+#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
#usr/include/boost/asio/detail/impl/win_event.ipp
#usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
#usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
@@ -534,7 +537,6 @@
#usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
#usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
#usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
-#usr/include/boost/asio/detail/impl/win_mutex.ipp
#usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
#usr/include/boost/asio/detail/impl/win_static_mutex.ipp
#usr/include/boost/asio/detail/impl/win_thread.ipp
@@ -641,6 +643,7 @@
#usr/include/boost/asio/detail/signal_init.hpp
#usr/include/boost/asio/detail/signal_op.hpp
#usr/include/boost/asio/detail/signal_set_service.hpp
+#usr/include/boost/asio/detail/slim_mutex.hpp
#usr/include/boost/asio/detail/socket_holder.hpp
#usr/include/boost/asio/detail/socket_ops.hpp
#usr/include/boost/asio/detail/socket_option.hpp
@@ -674,6 +677,7 @@
#usr/include/boost/asio/detail/utility.hpp
#usr/include/boost/asio/detail/wait_handler.hpp
#usr/include/boost/asio/detail/wait_op.hpp
+#usr/include/boost/asio/detail/win_critsec_mutex.hpp
#usr/include/boost/asio/detail/win_event.hpp
#usr/include/boost/asio/detail/win_fd_set_adapter.hpp
#usr/include/boost/asio/detail/win_global.hpp
@@ -731,8 +735,6 @@
#usr/include/boost/asio/execution/context.hpp
#usr/include/boost/asio/execution/context_as.hpp
#usr/include/boost/asio/execution/executor.hpp
-#usr/include/boost/asio/execution/impl
-#usr/include/boost/asio/execution/impl/bad_executor.ipp
#usr/include/boost/asio/execution/inline_exception_handling.hpp
#usr/include/boost/asio/execution/invocable_archetype.hpp
#usr/include/boost/asio/execution/mapping.hpp
@@ -782,6 +784,7 @@
#usr/include/boost/asio/experimental/use_coro.hpp
#usr/include/boost/asio/experimental/use_promise.hpp
#usr/include/boost/asio/file_base.hpp
+#usr/include/boost/asio/fwd.hpp
#usr/include/boost/asio/generic
#usr/include/boost/asio/generic/basic_endpoint.hpp
#usr/include/boost/asio/generic/datagram_protocol.hpp
@@ -820,10 +823,8 @@
#usr/include/boost/asio/impl/execution_context.hpp
#usr/include/boost/asio/impl/execution_context.ipp
#usr/include/boost/asio/impl/executor.hpp
-#usr/include/boost/asio/impl/executor.ipp
#usr/include/boost/asio/impl/io_context.hpp
#usr/include/boost/asio/impl/io_context.ipp
-#usr/include/boost/asio/impl/multiple_exceptions.ipp
#usr/include/boost/asio/impl/prepend.hpp
#usr/include/boost/asio/impl/read.hpp
#usr/include/boost/asio/impl/read_at.hpp
@@ -1511,6 +1512,7 @@
#usr/include/boost/bimap/detail/map_view_base.hpp
#usr/include/boost/bimap/detail/map_view_iterator.hpp
#usr/include/boost/bimap/detail/modifier_adaptor.hpp
+#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
#usr/include/boost/bimap/detail/non_unique_views_helper.hpp
#usr/include/boost/bimap/detail/set_view_base.hpp
#usr/include/boost/bimap/detail/set_view_iterator.hpp
@@ -2390,11 +2392,13 @@
#usr/include/boost/container/detail/addressof.hpp
#usr/include/boost/container/detail/advanced_insert_int.hpp
#usr/include/boost/container/detail/algorithm.hpp
+#usr/include/boost/container/detail/aligned_allocation.hpp
#usr/include/boost/container/detail/alloc_helpers.hpp
#usr/include/boost/container/detail/alloc_lib.h
#usr/include/boost/container/detail/allocation_type.hpp
#usr/include/boost/container/detail/allocator_version_traits.hpp
#usr/include/boost/container/detail/auto_link.hpp
+#usr/include/boost/container/detail/bit_utilities.hpp
#usr/include/boost/container/detail/block_list.hpp
#usr/include/boost/container/detail/block_slist.hpp
#usr/include/boost/container/detail/compare_functors.hpp
@@ -2404,12 +2408,14 @@
#usr/include/boost/container/detail/container_or_allocator_rebind.hpp
#usr/include/boost/container/detail/container_rebind.hpp
#usr/include/boost/container/detail/copy_move_algo.hpp
+#usr/include/boost/container/detail/deque_impl.hpp
#usr/include/boost/container/detail/destroyers.hpp
#usr/include/boost/container/detail/dispatch_uses_allocator.hpp
#usr/include/boost/container/detail/dlmalloc.hpp
#usr/include/boost/container/detail/flat_tree.hpp
#usr/include/boost/container/detail/function_detector.hpp
#usr/include/boost/container/detail/guards_dended.hpp
+#usr/include/boost/container/detail/is_constructible.hpp
#usr/include/boost/container/detail/is_container.hpp
#usr/include/boost/container/detail/is_contiguous_container.hpp
#usr/include/boost/container/detail/is_pair.hpp
@@ -2434,6 +2440,7 @@
#usr/include/boost/container/detail/pool_common.hpp
#usr/include/boost/container/detail/pool_common_alloc.hpp
#usr/include/boost/container/detail/pool_resource.hpp
+#usr/include/boost/container/detail/range_utils.hpp
#usr/include/boost/container/detail/singleton.hpp
#usr/include/boost/container/detail/std_fwd.hpp
#usr/include/boost/container/detail/thread_mutex.hpp
@@ -2446,8 +2453,60 @@
#usr/include/boost/container/detail/version_type.hpp
#usr/include/boost/container/detail/workaround.hpp
#usr/include/boost/container/devector.hpp
+#usr/include/boost/container/experimental
+#usr/include/boost/container/experimental/nest.hpp
+#usr/include/boost/container/experimental/pmr
+#usr/include/boost/container/experimental/pmr/nest.hpp
+#usr/include/boost/container/experimental/segmented_all_of.hpp
+#usr/include/boost/container/experimental/segmented_any_of.hpp
+#usr/include/boost/container/experimental/segmented_copy.hpp
+#usr/include/boost/container/experimental/segmented_copy_if.hpp
+#usr/include/boost/container/experimental/segmented_copy_n.hpp
+#usr/include/boost/container/experimental/segmented_count.hpp
+#usr/include/boost/container/experimental/segmented_count_if.hpp
+#usr/include/boost/container/experimental/segmented_equal.hpp
+#usr/include/boost/container/experimental/segmented_fill.hpp
+#usr/include/boost/container/experimental/segmented_fill_n.hpp
+#usr/include/boost/container/experimental/segmented_find.hpp
+#usr/include/boost/container/experimental/segmented_find_if.hpp
+#usr/include/boost/container/experimental/segmented_find_if_not.hpp
+#usr/include/boost/container/experimental/segmented_find_last.hpp
+#usr/include/boost/container/experimental/segmented_find_last_if.hpp
+#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
+#usr/include/boost/container/experimental/segmented_for_each.hpp
+#usr/include/boost/container/experimental/segmented_generate.hpp
+#usr/include/boost/container/experimental/segmented_generate_n.hpp
+#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
+#usr/include/boost/container/experimental/segmented_is_sorted.hpp
+#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
+#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
+#usr/include/boost/container/experimental/segmented_merge.hpp
+#usr/include/boost/container/experimental/segmented_mismatch.hpp
+#usr/include/boost/container/experimental/segmented_none_of.hpp
+#usr/include/boost/container/experimental/segmented_partition.hpp
+#usr/include/boost/container/experimental/segmented_partition_copy.hpp
+#usr/include/boost/container/experimental/segmented_partition_point.hpp
+#usr/include/boost/container/experimental/segmented_remove.hpp
+#usr/include/boost/container/experimental/segmented_remove_copy.hpp
+#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
+#usr/include/boost/container/experimental/segmented_remove_if.hpp
+#usr/include/boost/container/experimental/segmented_replace.hpp
+#usr/include/boost/container/experimental/segmented_replace_if.hpp
+#usr/include/boost/container/experimental/segmented_reverse.hpp
+#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
+#usr/include/boost/container/experimental/segmented_search.hpp
+#usr/include/boost/container/experimental/segmented_search_n.hpp
+#usr/include/boost/container/experimental/segmented_set_difference.hpp
+#usr/include/boost/container/experimental/segmented_set_intersection.hpp
+#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
+#usr/include/boost/container/experimental/segmented_set_union.hpp
+#usr/include/boost/container/experimental/segmented_stable_partition.hpp
+#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
+#usr/include/boost/container/experimental/segmented_transform.hpp
+#usr/include/boost/container/experimental/wrapped_iterator.hpp
#usr/include/boost/container/flat_map.hpp
#usr/include/boost/container/flat_set.hpp
+#usr/include/boost/container/hub.hpp
#usr/include/boost/container/list.hpp
#usr/include/boost/container/map.hpp
#usr/include/boost/container/new_allocator.hpp
@@ -2460,6 +2519,7 @@
#usr/include/boost/container/pmr/flat_map.hpp
#usr/include/boost/container/pmr/flat_set.hpp
#usr/include/boost/container/pmr/global_resource.hpp
+#usr/include/boost/container/pmr/hub.hpp
#usr/include/boost/container/pmr/list.hpp
#usr/include/boost/container/pmr/map.hpp
#usr/include/boost/container/pmr/memory_resource.hpp
@@ -2467,6 +2527,7 @@
#usr/include/boost/container/pmr/polymorphic_allocator.hpp
#usr/include/boost/container/pmr/pool_options.hpp
#usr/include/boost/container/pmr/resource_adaptor.hpp
+#usr/include/boost/container/pmr/segtor.hpp
#usr/include/boost/container/pmr/set.hpp
#usr/include/boost/container/pmr/slist.hpp
#usr/include/boost/container/pmr/small_vector.hpp
@@ -2477,6 +2538,7 @@
#usr/include/boost/container/pmr/vector.hpp
#usr/include/boost/container/scoped_allocator.hpp
#usr/include/boost/container/scoped_allocator_fwd.hpp
+#usr/include/boost/container/segtor.hpp
#usr/include/boost/container/set.hpp
#usr/include/boost/container/slist.hpp
#usr/include/boost/container/small_vector.hpp
@@ -2485,6 +2547,7 @@
#usr/include/boost/container/string.hpp
#usr/include/boost/container/throw_exception.hpp
#usr/include/boost/container/uses_allocator.hpp
+#usr/include/boost/container/uses_allocator_construction.hpp
#usr/include/boost/container/uses_allocator_fwd.hpp
#usr/include/boost/container/vector.hpp
#usr/include/boost/container_hash
@@ -2605,6 +2668,9 @@
#usr/include/boost/contract/override.hpp
#usr/include/boost/contract/public_function.hpp
#usr/include/boost/contract_macro.hpp
+#usr/include/boost/conversion
+#usr/include/boost/conversion/detail
+#usr/include/boost/conversion/detail/config.hpp
#usr/include/boost/convert
#usr/include/boost/convert.hpp
#usr/include/boost/convert/base.hpp
@@ -2865,6 +2931,211 @@
#usr/include/boost/date_time/tz_db_base.hpp
#usr/include/boost/date_time/wrapping_int.hpp
#usr/include/boost/date_time/year_month_day.hpp
+#usr/include/boost/decimal
+#usr/include/boost/decimal.hpp
+#usr/include/boost/decimal/bid_conversion.hpp
+#usr/include/boost/decimal/cfenv.hpp
+#usr/include/boost/decimal/cfloat.hpp
+#usr/include/boost/decimal/charconv.hpp
+#usr/include/boost/decimal/cmath.hpp
+#usr/include/boost/decimal/cstdio.hpp
+#usr/include/boost/decimal/cstdlib.hpp
+#usr/include/boost/decimal/decimal128_t.hpp
+#usr/include/boost/decimal/decimal32_t.hpp
+#usr/include/boost/decimal/decimal64_t.hpp
+#usr/include/boost/decimal/decimal_fast128_t.hpp
+#usr/include/boost/decimal/decimal_fast32_t.hpp
+#usr/include/boost/decimal/decimal_fast64_t.hpp
+#usr/include/boost/decimal/detail
+#usr/include/boost/decimal/detail/add_impl.hpp
+#usr/include/boost/decimal/detail/apply_sign.hpp
+#usr/include/boost/decimal/detail/attributes.hpp
+#usr/include/boost/decimal/detail/bit_cast.hpp
+#usr/include/boost/decimal/detail/bit_layouts.hpp
+#usr/include/boost/decimal/detail/buffer_sizing.hpp
+#usr/include/boost/decimal/detail/chars_format.hpp
+#usr/include/boost/decimal/detail/check_non_finite.hpp
+#usr/include/boost/decimal/detail/cmath
+#usr/include/boost/decimal/detail/cmath/abs.hpp
+#usr/include/boost/decimal/detail/cmath/acos.hpp
+#usr/include/boost/decimal/detail/cmath/acosh.hpp
+#usr/include/boost/decimal/detail/cmath/asin.hpp
+#usr/include/boost/decimal/detail/cmath/asinh.hpp
+#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
+#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
+#usr/include/boost/decimal/detail/cmath/atan.hpp
+#usr/include/boost/decimal/detail/cmath/atan2.hpp
+#usr/include/boost/decimal/detail/cmath/atanh.hpp
+#usr/include/boost/decimal/detail/cmath/beta.hpp
+#usr/include/boost/decimal/detail/cmath/cbrt.hpp
+#usr/include/boost/decimal/detail/cmath/ceil.hpp
+#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
+#usr/include/boost/decimal/detail/cmath/cos.hpp
+#usr/include/boost/decimal/detail/cmath/cosh.hpp
+#usr/include/boost/decimal/detail/cmath/decompose.hpp
+#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
+#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
+#usr/include/boost/decimal/detail/cmath/erf.hpp
+#usr/include/boost/decimal/detail/cmath/exp.hpp
+#usr/include/boost/decimal/detail/cmath/exp2.hpp
+#usr/include/boost/decimal/detail/cmath/expm1.hpp
+#usr/include/boost/decimal/detail/cmath/fabs.hpp
+#usr/include/boost/decimal/detail/cmath/fdim.hpp
+#usr/include/boost/decimal/detail/cmath/floor.hpp
+#usr/include/boost/decimal/detail/cmath/fma.hpp
+#usr/include/boost/decimal/detail/cmath/fmax.hpp
+#usr/include/boost/decimal/detail/cmath/fmin.hpp
+#usr/include/boost/decimal/detail/cmath/fmod.hpp
+#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
+#usr/include/boost/decimal/detail/cmath/frexp.hpp
+#usr/include/boost/decimal/detail/cmath/frexp10.hpp
+#usr/include/boost/decimal/detail/cmath/hermite.hpp
+#usr/include/boost/decimal/detail/cmath/hypot.hpp
+#usr/include/boost/decimal/detail/cmath/ilogb.hpp
+#usr/include/boost/decimal/detail/cmath/impl
+#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
+#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
+#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
+#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
+#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
+#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
+#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
+#usr/include/boost/decimal/detail/cmath/isfinite.hpp
+#usr/include/boost/decimal/detail/cmath/isgreater.hpp
+#usr/include/boost/decimal/detail/cmath/isless.hpp
+#usr/include/boost/decimal/detail/cmath/isunordered.hpp
+#usr/include/boost/decimal/detail/cmath/laguerre.hpp
+#usr/include/boost/decimal/detail/cmath/ldexp.hpp
+#usr/include/boost/decimal/detail/cmath/legendre.hpp
+#usr/include/boost/decimal/detail/cmath/lgamma.hpp
+#usr/include/boost/decimal/detail/cmath/log.hpp
+#usr/include/boost/decimal/detail/cmath/log10.hpp
+#usr/include/boost/decimal/detail/cmath/log1p.hpp
+#usr/include/boost/decimal/detail/cmath/log2.hpp
+#usr/include/boost/decimal/detail/cmath/logb.hpp
+#usr/include/boost/decimal/detail/cmath/modf.hpp
+#usr/include/boost/decimal/detail/cmath/nan.hpp
+#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
+#usr/include/boost/decimal/detail/cmath/next.hpp
+#usr/include/boost/decimal/detail/cmath/normalize.hpp
+#usr/include/boost/decimal/detail/cmath/pow.hpp
+#usr/include/boost/decimal/detail/cmath/remainder.hpp
+#usr/include/boost/decimal/detail/cmath/remquo.hpp
+#usr/include/boost/decimal/detail/cmath/rescale.hpp
+#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
+#usr/include/boost/decimal/detail/cmath/rint.hpp
+#usr/include/boost/decimal/detail/cmath/round.hpp
+#usr/include/boost/decimal/detail/cmath/sin.hpp
+#usr/include/boost/decimal/detail/cmath/sinh.hpp
+#usr/include/boost/decimal/detail/cmath/sqrt.hpp
+#usr/include/boost/decimal/detail/cmath/tan.hpp
+#usr/include/boost/decimal/detail/cmath/tanh.hpp
+#usr/include/boost/decimal/detail/cmath/tgamma.hpp
+#usr/include/boost/decimal/detail/cmath/trunc.hpp
+#usr/include/boost/decimal/detail/comparison.hpp
+#usr/include/boost/decimal/detail/components.hpp
+#usr/include/boost/decimal/detail/concepts.hpp
+#usr/include/boost/decimal/detail/config.hpp
+#usr/include/boost/decimal/detail/construction_sign.hpp
+#usr/include/boost/decimal/detail/countl.hpp
+#usr/include/boost/decimal/detail/div_impl.hpp
+#usr/include/boost/decimal/detail/fast_float
+#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
+#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
+#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
+#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
+#usr/include/boost/decimal/detail/fenv_rounding.hpp
+#usr/include/boost/decimal/detail/formatting_limits.hpp
+#usr/include/boost/decimal/detail/from_chars_impl.hpp
+#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
+#usr/include/boost/decimal/detail/from_chars_result.hpp
+#usr/include/boost/decimal/detail/fwd_log.hpp
+#usr/include/boost/decimal/detail/i256.hpp
+#usr/include/boost/decimal/detail/int128
+#usr/include/boost/decimal/detail/int128.hpp
+#usr/include/boost/decimal/detail/int128/bit.hpp
+#usr/include/boost/decimal/detail/int128/climits.hpp
+#usr/include/boost/decimal/detail/int128/cstdlib.hpp
+#usr/include/boost/decimal/detail/int128/detail
+#usr/include/boost/decimal/detail/int128/detail/clz.hpp
+#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
+#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
+#usr/include/boost/decimal/detail/int128/detail/config.hpp
+#usr/include/boost/decimal/detail/int128/detail/constants.hpp
+#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
+#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
+#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
+#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
+#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
+#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
+#usr/include/boost/decimal/detail/int128/detail/traits.hpp
+#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
+#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
+#usr/include/boost/decimal/detail/int128/fmt_format.hpp
+#usr/include/boost/decimal/detail/int128/format.hpp
+#usr/include/boost/decimal/detail/int128/int128.hpp
+#usr/include/boost/decimal/detail/int128/iostream.hpp
+#usr/include/boost/decimal/detail/int128/limits.hpp
+#usr/include/boost/decimal/detail/int128/literals.hpp
+#usr/include/boost/decimal/detail/int128/numeric.hpp
+#usr/include/boost/decimal/detail/int128/random.hpp
+#usr/include/boost/decimal/detail/int128/string.hpp
+#usr/include/boost/decimal/detail/integer_search_trees.hpp
+#usr/include/boost/decimal/detail/io.hpp
+#usr/include/boost/decimal/detail/is_power_of_10.hpp
+#usr/include/boost/decimal/detail/locale_conversion.hpp
+#usr/include/boost/decimal/detail/memcpy.hpp
+#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
+#usr/include/boost/decimal/detail/mod_impl.hpp
+#usr/include/boost/decimal/detail/mul_impl.hpp
+#usr/include/boost/decimal/detail/normalize.hpp
+#usr/include/boost/decimal/detail/parser.hpp
+#usr/include/boost/decimal/detail/power_tables.hpp
+#usr/include/boost/decimal/detail/promote_significand.hpp
+#usr/include/boost/decimal/detail/promotion.hpp
+#usr/include/boost/decimal/detail/quantize_impl.hpp
+#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
+#usr/include/boost/decimal/detail/ryu
+#usr/include/boost/decimal/detail/ryu/generic_128.hpp
+#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
+#usr/include/boost/decimal/detail/shrink_significand.hpp
+#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
+#usr/include/boost/decimal/detail/to_chars_result.hpp
+#usr/include/boost/decimal/detail/to_decimal.hpp
+#usr/include/boost/decimal/detail/to_float.hpp
+#usr/include/boost/decimal/detail/to_integral.hpp
+#usr/include/boost/decimal/detail/type_traits.hpp
+#usr/include/boost/decimal/detail/u256.hpp
+#usr/include/boost/decimal/detail/utilities.hpp
+#usr/include/boost/decimal/detail/write_payload.hpp
+#usr/include/boost/decimal/dpd_conversion.hpp
+#usr/include/boost/decimal/fmt_format.hpp
+#usr/include/boost/decimal/format.hpp
+#usr/include/boost/decimal/fwd.hpp
+#usr/include/boost/decimal/hash.hpp
+#usr/include/boost/decimal/iostream.hpp
+#usr/include/boost/decimal/literals.hpp
+#usr/include/boost/decimal/numbers.hpp
+#usr/include/boost/decimal/string.hpp
+#usr/include/boost/decimal/uint128_t.hpp
#usr/include/boost/describe
#usr/include/boost/describe.hpp
#usr/include/boost/describe/bases.hpp
@@ -2909,7 +3180,6 @@
#usr/include/boost/detail/is_sorted.hpp
#usr/include/boost/detail/is_xxx.hpp
#usr/include/boost/detail/iterator.hpp
-#usr/include/boost/detail/lcast_precision.hpp
#usr/include/boost/detail/lightweight_main.hpp
#usr/include/boost/detail/lightweight_mutex.hpp
#usr/include/boost/detail/lightweight_test.hpp
@@ -2993,6 +3263,7 @@
#usr/include/boost/dll/config.hpp
#usr/include/boost/dll/detail
#usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
+#usr/include/boost/dll/detail/config.hpp
#usr/include/boost/dll/detail/ctor_dtor.hpp
#usr/include/boost/dll/detail/demangling
#usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
@@ -3057,6 +3328,7 @@
#usr/include/boost/exception/current_exception_cast.hpp
#usr/include/boost/exception/detail
#usr/include/boost/exception/detail/clone_current_exception.hpp
+#usr/include/boost/exception/detail/encoder.hpp
#usr/include/boost/exception/detail/error_info_impl.hpp
#usr/include/boost/exception/detail/exception_ptr.hpp
#usr/include/boost/exception/detail/is_output_streamable.hpp
@@ -3080,6 +3352,9 @@
#usr/include/boost/exception/get_error_info.hpp
#usr/include/boost/exception/info.hpp
#usr/include/boost/exception/info_tuple.hpp
+#usr/include/boost/exception/serialization
+#usr/include/boost/exception/serialization/boost_json_encoder.hpp
+#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
#usr/include/boost/exception/to_string.hpp
#usr/include/boost/exception/to_string_stub.hpp
#usr/include/boost/exception_ptr.hpp
@@ -5091,8 +5366,6 @@
#usr/include/boost/geometry/index/detail/tags.hpp
#usr/include/boost/geometry/index/detail/translator.hpp
#usr/include/boost/geometry/index/detail/utilities.hpp
-#usr/include/boost/geometry/index/detail/varray.hpp
-#usr/include/boost/geometry/index/detail/varray_detail.hpp
#usr/include/boost/geometry/index/distance_predicates.hpp
#usr/include/boost/geometry/index/equal_to.hpp
#usr/include/boost/geometry/index/indexable.hpp
@@ -6077,6 +6350,8 @@
#usr/include/boost/graph/leda_graph.hpp
#usr/include/boost/graph/lookup_edge.hpp
#usr/include/boost/graph/loop_erased_random_walk.hpp
+#usr/include/boost/graph/louvain_clustering.hpp
+#usr/include/boost/graph/louvain_quality_functions.hpp
#usr/include/boost/graph/make_biconnected_planar.hpp
#usr/include/boost/graph/make_connected.hpp
#usr/include/boost/graph/make_maximal_planar.hpp
@@ -6679,6 +6954,7 @@
#usr/include/boost/heap/detail
#usr/include/boost/heap/detail/heap_comparison.hpp
#usr/include/boost/heap/detail/heap_node.hpp
+#usr/include/boost/heap/detail/heap_utils.hpp
#usr/include/boost/heap/detail/ilog2.hpp
#usr/include/boost/heap/detail/mutable_heap.hpp
#usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
@@ -6888,8 +7164,10 @@
#usr/include/boost/icl/concept/set_value.hpp
#usr/include/boost/icl/continuous_interval.hpp
#usr/include/boost/icl/detail
+#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
#usr/include/boost/icl/detail/associated_value.hpp
#usr/include/boost/icl/detail/boost_config.hpp
+#usr/include/boost/icl/detail/co_equal_fwd.hpp
#usr/include/boost/icl/detail/concept_check.hpp
#usr/include/boost/icl/detail/design_config.hpp
#usr/include/boost/icl/detail/element_comparer.hpp
@@ -6899,12 +7177,14 @@
#usr/include/boost/icl/detail/interval_morphism.hpp
#usr/include/boost/icl/detail/interval_set_algo.hpp
#usr/include/boost/icl/detail/interval_subset_comparer.hpp
+#usr/include/boost/icl/detail/map_adaptor.hpp
#usr/include/boost/icl/detail/map_algo.hpp
#usr/include/boost/icl/detail/mapped_reference.hpp
#usr/include/boost/icl/detail/notate.hpp
#usr/include/boost/icl/detail/on_absorbtion.hpp
#usr/include/boost/icl/detail/relation_state.hpp
#usr/include/boost/icl/detail/requires_cxx11.hpp
+#usr/include/boost/icl/detail/set_adaptor.hpp
#usr/include/boost/icl/detail/set_algo.hpp
#usr/include/boost/icl/detail/std_set.hpp
#usr/include/boost/icl/detail/subset_comparer.hpp
@@ -7585,6 +7865,7 @@
#usr/include/boost/json/impl/value_ref.ipp
#usr/include/boost/json/impl/value_stack.ipp
#usr/include/boost/json/impl/visit.hpp
+#usr/include/boost/json/impl/visit.ipp
#usr/include/boost/json/is_deallocate_trivial.hpp
#usr/include/boost/json/kind.hpp
#usr/include/boost/json/monotonic_resource.hpp
@@ -7660,15 +7941,20 @@
#usr/include/boost/leaf/config/tls_cpp11.hpp
#usr/include/boost/leaf/config/tls_freertos.hpp
#usr/include/boost/leaf/config/tls_globals.hpp
+#usr/include/boost/leaf/config/tls_win32.hpp
+#usr/include/boost/leaf/config/visibility.hpp
#usr/include/boost/leaf/context.hpp
#usr/include/boost/leaf/detail
#usr/include/boost/leaf/detail/all.hpp
#usr/include/boost/leaf/detail/capture_list.hpp
#usr/include/boost/leaf/detail/demangle.hpp
+#usr/include/boost/leaf/detail/diagnostics_writer.hpp
+#usr/include/boost/leaf/detail/encoder.hpp
+#usr/include/boost/leaf/detail/exception_base.hpp
#usr/include/boost/leaf/detail/function_traits.hpp
#usr/include/boost/leaf/detail/mp11.hpp
#usr/include/boost/leaf/detail/optional.hpp
-#usr/include/boost/leaf/detail/print.hpp
+#usr/include/boost/leaf/detail/type_name.hpp
#usr/include/boost/leaf/diagnostics.hpp
#usr/include/boost/leaf/error.hpp
#usr/include/boost/leaf/exception.hpp
@@ -7676,12 +7962,16 @@
#usr/include/boost/leaf/on_error.hpp
#usr/include/boost/leaf/pred.hpp
#usr/include/boost/leaf/result.hpp
+#usr/include/boost/leaf/serialization
+#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
+#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
#usr/include/boost/leaf/to_variant.hpp
#usr/include/boost/lexical_cast
#usr/include/boost/lexical_cast.hpp
#usr/include/boost/lexical_cast/bad_lexical_cast.hpp
#usr/include/boost/lexical_cast/detail
#usr/include/boost/lexical_cast/detail/buffer_view.hpp
+#usr/include/boost/lexical_cast/detail/config.hpp
#usr/include/boost/lexical_cast/detail/converter_lexical.hpp
#usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
#usr/include/boost/lexical_cast/detail/converter_numeric.hpp
@@ -7689,6 +7979,7 @@
#usr/include/boost/lexical_cast/detail/is_character.hpp
#usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
#usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
+#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
#usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
#usr/include/boost/lexical_cast/detail/type_traits.hpp
#usr/include/boost/lexical_cast/detail/widest_char.hpp
@@ -7798,17 +8089,20 @@
#usr/include/boost/locale/util/locale_data.hpp
#usr/include/boost/locale/util/string.hpp
#usr/include/boost/lockfree
+#usr/include/boost/lockfree/bounded_ticket_queue.hpp
#usr/include/boost/lockfree/detail
#usr/include/boost/lockfree/detail/atomic.hpp
#usr/include/boost/lockfree/detail/copy_payload.hpp
#usr/include/boost/lockfree/detail/freelist.hpp
#usr/include/boost/lockfree/detail/parameter.hpp
+#usr/include/boost/lockfree/detail/power_of_two.hpp
#usr/include/boost/lockfree/detail/prefix.hpp
#usr/include/boost/lockfree/detail/tagged_ptr.hpp
#usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
#usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
#usr/include/boost/lockfree/detail/uses_optional.hpp
#usr/include/boost/lockfree/lockfree_forward.hpp
+#usr/include/boost/lockfree/mpsc_weak_queue.hpp
#usr/include/boost/lockfree/policies.hpp
#usr/include/boost/lockfree/queue.hpp
#usr/include/boost/lockfree/spsc_queue.hpp
@@ -8283,8 +8577,17 @@
#usr/include/boost/math/optimization/cma_es.hpp
#usr/include/boost/math/optimization/detail
#usr/include/boost/math/optimization/detail/common.hpp
+#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
+#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
+#usr/include/boost/math/optimization/detail/line_search_policies.hpp
+#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
#usr/include/boost/math/optimization/differential_evolution.hpp
+#usr/include/boost/math/optimization/gradient_descent.hpp
+#usr/include/boost/math/optimization/gradient_optimizers.hpp
#usr/include/boost/math/optimization/jso.hpp
+#usr/include/boost/math/optimization/lbfgs.hpp
+#usr/include/boost/math/optimization/minimizer.hpp
+#usr/include/boost/math/optimization/nesterov.hpp
#usr/include/boost/math/optimization/random_search.hpp
#usr/include/boost/math/policies
#usr/include/boost/math/policies/error_handling.hpp
@@ -10296,12 +10599,23 @@
#usr/include/boost/msm/backmp11
#usr/include/boost/msm/backmp11/common_types.hpp
#usr/include/boost/msm/backmp11/detail
-#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
+#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
+#usr/include/boost/msm/backmp11/detail/common.hpp
+#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
#usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
#usr/include/boost/msm/backmp11/detail/history_impl.hpp
#usr/include/boost/msm/backmp11/detail/metafunctions.hpp
+#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
+#usr/include/boost/msm/backmp11/detail/state_tags.hpp
+#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
+#usr/include/boost/msm/backmp11/detail/transition_table.hpp
#usr/include/boost/msm/backmp11/event_traits.hpp
#usr/include/boost/msm/backmp11/favor_compile_time.hpp
+#usr/include/boost/msm/backmp11/observer.hpp
+#usr/include/boost/msm/backmp11/serialization
+#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
+#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
+#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
#usr/include/boost/msm/backmp11/state_machine.hpp
#usr/include/boost/msm/backmp11/state_machine_config.hpp
#usr/include/boost/msm/common.hpp
@@ -10312,6 +10626,7 @@
#usr/include/boost/msm/front/detail
#usr/include/boost/msm/front/detail/common_states.hpp
#usr/include/boost/msm/front/detail/row2_helper.hpp
+#usr/include/boost/msm/front/detail/state_tags.hpp
#usr/include/boost/msm/front/euml
#usr/include/boost/msm/front/euml/algorithm.hpp
#usr/include/boost/msm/front/euml/common.hpp
@@ -10373,11 +10688,10 @@
#usr/include/boost/multi_index
#usr/include/boost/multi_index/composite_key.hpp
#usr/include/boost/multi_index/detail
-#usr/include/boost/multi_index/detail/access_specifier.hpp
#usr/include/boost/multi_index/detail/adl_swap.hpp
-#usr/include/boost/multi_index/detail/allocator_traits.hpp
#usr/include/boost/multi_index/detail/any_container_view.hpp
#usr/include/boost/multi_index/detail/archive_constructed.hpp
+#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
#usr/include/boost/multi_index/detail/auto_space.hpp
#usr/include/boost/multi_index/detail/bad_archive_exception.hpp
#usr/include/boost/multi_index/detail/base_type.hpp
@@ -10408,7 +10722,9 @@
#usr/include/boost/multi_index/detail/is_transparent.hpp
#usr/include/boost/multi_index/detail/iter_adaptor.hpp
#usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
+#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
#usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
+#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
#usr/include/boost/multi_index/detail/node_handle.hpp
#usr/include/boost/multi_index/detail/node_type.hpp
#usr/include/boost/multi_index/detail/ord_index_args.hpp
@@ -10431,11 +10747,11 @@
#usr/include/boost/multi_index/detail/seq_index_node.hpp
#usr/include/boost/multi_index/detail/seq_index_ops.hpp
#usr/include/boost/multi_index/detail/serialization_version.hpp
+#usr/include/boost/multi_index/detail/type_list.hpp
#usr/include/boost/multi_index/detail/uintptr_type.hpp
#usr/include/boost/multi_index/detail/unbounded.hpp
#usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
#usr/include/boost/multi_index/detail/value_compare.hpp
-#usr/include/boost/multi_index/detail/vartempl_support.hpp
#usr/include/boost/multi_index/global_fun.hpp
#usr/include/boost/multi_index/hashed_index.hpp
#usr/include/boost/multi_index/hashed_index_fwd.hpp
@@ -10678,6 +10994,7 @@
#usr/include/boost/mysql/impl/internal/error
#usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
#usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
+#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
#usr/include/boost/mysql/impl/internal/protocol
#usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
#usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
@@ -11176,6 +11493,7 @@
#usr/include/boost/openmethod/initialize.hpp
#usr/include/boost/openmethod/inplace_vptr.hpp
#usr/include/boost/openmethod/interop
+#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
#usr/include/boost/openmethod/interop/std_shared_ptr.hpp
#usr/include/boost/openmethod/interop/std_unique_ptr.hpp
#usr/include/boost/openmethod/macros.hpp
@@ -11197,14 +11515,17 @@
#usr/include/boost/optional/detail
#usr/include/boost/optional/detail/experimental_traits.hpp
#usr/include/boost/optional/detail/optional_aligned_storage.hpp
+#usr/include/boost/optional/detail/optional_common_defs.hpp
#usr/include/boost/optional/detail/optional_config.hpp
#usr/include/boost/optional/detail/optional_factory_support.hpp
#usr/include/boost/optional/detail/optional_hash.hpp
+#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
#usr/include/boost/optional/detail/optional_reference_spec.hpp
#usr/include/boost/optional/detail/optional_relops.hpp
+#usr/include/boost/optional/detail/optional_select_implementation.hpp
#usr/include/boost/optional/detail/optional_swap.hpp
#usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
-#usr/include/boost/optional/detail/optional_utility.hpp
+#usr/include/boost/optional/detail/union_optional.hpp
#usr/include/boost/optional/optional.hpp
#usr/include/boost/optional/optional_fwd.hpp
#usr/include/boost/optional/optional_io.hpp
@@ -11489,9 +11810,11 @@
#usr/include/boost/pfr/detail/core17.hpp
#usr/include/boost/pfr/detail/core17_generated.hpp
#usr/include/boost/pfr/detail/core26.hpp
+#usr/include/boost/pfr/detail/core26_reflection.hpp
#usr/include/boost/pfr/detail/core_name.hpp
#usr/include/boost/pfr/detail/core_name14_disabled.hpp
#usr/include/boost/pfr/detail/core_name20_static.hpp
+#usr/include/boost/pfr/detail/core_name26_reflection.hpp
#usr/include/boost/pfr/detail/detectors.hpp
#usr/include/boost/pfr/detail/fake_object.hpp
#usr/include/boost/pfr/detail/fields_count.hpp
@@ -13245,6 +13568,7 @@
#usr/include/boost/python/detail/pointee.hpp
#usr/include/boost/python/detail/prefix.hpp
#usr/include/boost/python/detail/preprocessor.hpp
+#usr/include/boost/python/detail/pymutex.hpp
#usr/include/boost/python/detail/python22_fixed.h
#usr/include/boost/python/detail/python_type.hpp
#usr/include/boost/python/detail/raw_pyobject.hpp
@@ -13750,15 +14074,20 @@
#usr/include/boost/redis/connection.hpp
#usr/include/boost/redis/detail
#usr/include/boost/redis/detail/connect_fsm.hpp
+#usr/include/boost/redis/detail/connect_params.hpp
#usr/include/boost/redis/detail/connection_state.hpp
#usr/include/boost/redis/detail/coroutine.hpp
#usr/include/boost/redis/detail/exec_fsm.hpp
+#usr/include/boost/redis/detail/exec_one_fsm.hpp
#usr/include/boost/redis/detail/multiplexer.hpp
#usr/include/boost/redis/detail/read_buffer.hpp
#usr/include/boost/redis/detail/reader_fsm.hpp
+#usr/include/boost/redis/detail/receive_fsm.hpp
#usr/include/boost/redis/detail/redis_stream.hpp
#usr/include/boost/redis/detail/resp3_type_to_error.hpp
#usr/include/boost/redis/detail/run_fsm.hpp
+#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
+#usr/include/boost/redis/detail/subscription_tracker.hpp
#usr/include/boost/redis/detail/write.hpp
#usr/include/boost/redis/detail/writer_fsm.hpp
#usr/include/boost/redis/error.hpp
@@ -13768,23 +14097,32 @@
#usr/include/boost/redis/impl/connection.ipp
#usr/include/boost/redis/impl/error.ipp
#usr/include/boost/redis/impl/exec_fsm.ipp
+#usr/include/boost/redis/impl/exec_one_fsm.ipp
+#usr/include/boost/redis/impl/flat_tree.ipp
#usr/include/boost/redis/impl/ignore.ipp
#usr/include/boost/redis/impl/is_terminal_cancel.hpp
#usr/include/boost/redis/impl/log_to_file.hpp
#usr/include/boost/redis/impl/log_utils.hpp
#usr/include/boost/redis/impl/logger.ipp
#usr/include/boost/redis/impl/multiplexer.ipp
+#usr/include/boost/redis/impl/push_parser.ipp
#usr/include/boost/redis/impl/read_buffer.ipp
#usr/include/boost/redis/impl/reader_fsm.ipp
+#usr/include/boost/redis/impl/receive_fsm.ipp
#usr/include/boost/redis/impl/request.ipp
#usr/include/boost/redis/impl/response.ipp
#usr/include/boost/redis/impl/run_fsm.ipp
+#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
+#usr/include/boost/redis/impl/sentinel_utils.hpp
#usr/include/boost/redis/impl/setup_request_utils.hpp
+#usr/include/boost/redis/impl/subscription_tracker.ipp
#usr/include/boost/redis/impl/writer_fsm.ipp
#usr/include/boost/redis/logger.hpp
#usr/include/boost/redis/operation.hpp
+#usr/include/boost/redis/push_parser.hpp
#usr/include/boost/redis/request.hpp
#usr/include/boost/redis/resp3
+#usr/include/boost/redis/resp3/flat_tree.hpp
#usr/include/boost/redis/resp3/impl
#usr/include/boost/redis/resp3/impl/parser.ipp
#usr/include/boost/redis/resp3/impl/serialization.ipp
@@ -13792,6 +14130,7 @@
#usr/include/boost/redis/resp3/node.hpp
#usr/include/boost/redis/resp3/parser.hpp
#usr/include/boost/redis/resp3/serialization.hpp
+#usr/include/boost/redis/resp3/tree.hpp
#usr/include/boost/redis/resp3/type.hpp
#usr/include/boost/redis/response.hpp
#usr/include/boost/redis/src.hpp
@@ -15352,9 +15691,11 @@
#usr/include/boost/stacktrace/detail/addr2line_impls.hpp
#usr/include/boost/stacktrace/detail/addr_base.hpp
#usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
+#usr/include/boost/stacktrace/detail/backend_config.hpp
#usr/include/boost/stacktrace/detail/collect_msvc.ipp
#usr/include/boost/stacktrace/detail/collect_noop.ipp
#usr/include/boost/stacktrace/detail/collect_unwind.ipp
+#usr/include/boost/stacktrace/detail/config.hpp
#usr/include/boost/stacktrace/detail/frame_decl.hpp
#usr/include/boost/stacktrace/detail/frame_msvc.ipp
#usr/include/boost/stacktrace/detail/frame_noop.ipp
@@ -15408,7 +15749,10 @@
#usr/include/boost/statechart/state_machine.hpp
#usr/include/boost/statechart/termination.hpp
#usr/include/boost/statechart/transition.hpp
+#usr/include/boost/static_assert
#usr/include/boost/static_assert.hpp
+#usr/include/boost/static_assert/detail
+#usr/include/boost/static_assert/detail/backward.hpp
#usr/include/boost/static_string
#usr/include/boost/static_string.hpp
#usr/include/boost/static_string/config.hpp
@@ -15442,6 +15786,7 @@
#usr/include/boost/system/detail/generic_category.hpp
#usr/include/boost/system/detail/generic_category_message.hpp
#usr/include/boost/system/detail/interop_category.hpp
+#usr/include/boost/system/detail/is_aggregate.hpp
#usr/include/boost/system/detail/is_same.hpp
#usr/include/boost/system/detail/mutex.hpp
#usr/include/boost/system/detail/snprintf.hpp
@@ -15464,6 +15809,7 @@
#usr/include/boost/system/result.hpp
#usr/include/boost/system/system_category.hpp
#usr/include/boost/system/system_error.hpp
+#usr/include/boost/system/unwrap_and_invoke.hpp
#usr/include/boost/system/windows_error.hpp
#usr/include/boost/test
#usr/include/boost/test/auto_unit_test.hpp
@@ -16595,6 +16941,7 @@
#usr/include/boost/unordered/detail/narrow_cast.hpp
#usr/include/boost/unordered/detail/opt_storage.hpp
#usr/include/boost/unordered/detail/prime_fmod.hpp
+#usr/include/boost/unordered/detail/ranges_support.hpp
#usr/include/boost/unordered/detail/serialization_version.hpp
#usr/include/boost/unordered/detail/serialize_container.hpp
#usr/include/boost/unordered/detail/serialize_fca_container.hpp
@@ -16623,19 +16970,33 @@
#usr/include/boost/url
#usr/include/boost/url.hpp
#usr/include/boost/url/authority_view.hpp
+#usr/include/boost/url/decode.hpp
#usr/include/boost/url/decode_view.hpp
#usr/include/boost/url/detail
#usr/include/boost/url/detail/any_params_iter.hpp
#usr/include/boost/url/detail/any_segments_iter.hpp
#usr/include/boost/url/detail/config.hpp
+#usr/include/boost/url/detail/decode.hpp
#usr/include/boost/url/detail/encode.hpp
#usr/include/boost/url/detail/except.hpp
+#usr/include/boost/url/detail/fnv_1a.hpp
#usr/include/boost/url/detail/format_args.hpp
#usr/include/boost/url/detail/impl
+#usr/include/boost/url/detail/impl/any_params_iter.hpp
+#usr/include/boost/url/detail/impl/any_segments_iter.hpp
#usr/include/boost/url/detail/impl/format_args.hpp
+#usr/include/boost/url/detail/impl/params_iter_impl.hpp
+#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
+#usr/include/boost/url/detail/impl/url_impl.hpp
+#usr/include/boost/url/detail/memcpy.hpp
+#usr/include/boost/url/detail/move_chars.hpp
+#usr/include/boost/url/detail/normalize.hpp
#usr/include/boost/url/detail/optional_string.hpp
+#usr/include/boost/url/detail/over_allocator.hpp
#usr/include/boost/url/detail/params_iter_impl.hpp
#usr/include/boost/url/detail/parts_base.hpp
+#usr/include/boost/url/detail/path.hpp
+#usr/include/boost/url/detail/print.hpp
#usr/include/boost/url/detail/replacement_field_rule.hpp
#usr/include/boost/url/detail/segments_iter_impl.hpp
#usr/include/boost/url/detail/segments_range.hpp
@@ -16659,13 +17020,17 @@
#usr/include/boost/url/grammar/detail
#usr/include/boost/url/grammar/detail/charset.hpp
#usr/include/boost/url/grammar/detail/ci_string.hpp
+#usr/include/boost/url/grammar/detail/range_rule.hpp
#usr/include/boost/url/grammar/detail/recycled.hpp
#usr/include/boost/url/grammar/detail/tuple.hpp
#usr/include/boost/url/grammar/digit_chars.hpp
#usr/include/boost/url/grammar/error.hpp
#usr/include/boost/url/grammar/hexdig_chars.hpp
#usr/include/boost/url/grammar/impl
+#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
+#usr/include/boost/url/grammar/impl/delim_rule.hpp
#usr/include/boost/url/grammar/impl/error.hpp
+#usr/include/boost/url/grammar/impl/literal_rule.hpp
#usr/include/boost/url/grammar/impl/not_empty_rule.hpp
#usr/include/boost/url/grammar/impl/optional_rule.hpp
#usr/include/boost/url/grammar/impl/parse.hpp
@@ -16693,17 +17058,30 @@
#usr/include/boost/url/host_type.hpp
#usr/include/boost/url/ignore_case.hpp
#usr/include/boost/url/impl
+#usr/include/boost/url/impl/authority_view.hpp
+#usr/include/boost/url/impl/decode.hpp
#usr/include/boost/url/impl/decode_view.hpp
#usr/include/boost/url/impl/encode.hpp
#usr/include/boost/url/impl/error.hpp
#usr/include/boost/url/impl/params_base.hpp
#usr/include/boost/url/impl/params_encoded_base.hpp
#usr/include/boost/url/impl/params_encoded_ref.hpp
+#usr/include/boost/url/impl/params_encoded_view.hpp
#usr/include/boost/url/impl/params_ref.hpp
+#usr/include/boost/url/impl/params_view.hpp
+#usr/include/boost/url/impl/parse.hpp
+#usr/include/boost/url/impl/scheme.hpp
#usr/include/boost/url/impl/segments_base.hpp
#usr/include/boost/url/impl/segments_encoded_base.hpp
#usr/include/boost/url/impl/segments_encoded_ref.hpp
+#usr/include/boost/url/impl/segments_encoded_view.hpp
#usr/include/boost/url/impl/segments_ref.hpp
+#usr/include/boost/url/impl/segments_view.hpp
+#usr/include/boost/url/impl/static_url.hpp
+#usr/include/boost/url/impl/url.hpp
+#usr/include/boost/url/impl/url_base.hpp
+#usr/include/boost/url/impl/url_view.hpp
+#usr/include/boost/url/impl/url_view_base.hpp
#usr/include/boost/url/ipv4_address.hpp
#usr/include/boost/url/ipv6_address.hpp
#usr/include/boost/url/optional.hpp
@@ -16722,10 +17100,44 @@
#usr/include/boost/url/rfc/absolute_uri_rule.hpp
#usr/include/boost/url/rfc/authority_rule.hpp
#usr/include/boost/url/rfc/detail
+#usr/include/boost/url/rfc/detail/charsets.hpp
+#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
+#usr/include/boost/url/rfc/detail/h16_rule.hpp
+#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
+#usr/include/boost/url/rfc/detail/host_rule.hpp
+#usr/include/boost/url/rfc/detail/impl
+#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
+#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
+#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
+#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
#usr/include/boost/url/rfc/detail/path_rules.hpp
+#usr/include/boost/url/rfc/detail/port_rule.hpp
+#usr/include/boost/url/rfc/detail/query_part_rule.hpp
+#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
+#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
+#usr/include/boost/url/rfc/detail/scheme_rule.hpp
+#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
#usr/include/boost/url/rfc/gen_delim_chars.hpp
#usr/include/boost/url/rfc/impl
+#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
+#usr/include/boost/url/rfc/impl/authority_rule.hpp
+#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
+#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
+#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
#usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
+#usr/include/boost/url/rfc/impl/query_rule.hpp
+#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
+#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
+#usr/include/boost/url/rfc/impl/uri_rule.hpp
#usr/include/boost/url/rfc/ipv4_address_rule.hpp
#usr/include/boost/url/rfc/ipv6_address_rule.hpp
#usr/include/boost/url/rfc/origin_form_rule.hpp
@@ -16788,21 +17200,33 @@
#usr/include/boost/uuid/detail/basic_name_generator.hpp
#usr/include/boost/uuid/detail/chacha20.hpp
#usr/include/boost/uuid/detail/config.hpp
+#usr/include/boost/uuid/detail/cstring.hpp
#usr/include/boost/uuid/detail/endian.hpp
+#usr/include/boost/uuid/detail/from_chars.hpp
+#usr/include/boost/uuid/detail/from_chars_generic.hpp
+#usr/include/boost/uuid/detail/from_chars_result.hpp
+#usr/include/boost/uuid/detail/from_chars_x86.hpp
#usr/include/boost/uuid/detail/hash_mix.hpp
+#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
#usr/include/boost/uuid/detail/md5.hpp
#usr/include/boost/uuid/detail/nil_uuid.hpp
#usr/include/boost/uuid/detail/numeric_cast.hpp
#usr/include/boost/uuid/detail/random_device.hpp
#usr/include/boost/uuid/detail/random_provider.hpp
#usr/include/boost/uuid/detail/sha1.hpp
+#usr/include/boost/uuid/detail/simd_vector.hpp
#usr/include/boost/uuid/detail/static_assert.hpp
+#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
#usr/include/boost/uuid/detail/to_chars.hpp
+#usr/include/boost/uuid/detail/to_chars_generic.hpp
+#usr/include/boost/uuid/detail/to_chars_x86.hpp
+#usr/include/boost/uuid/detail/uuid_from_string.hpp
#usr/include/boost/uuid/detail/uuid_generic.ipp
#usr/include/boost/uuid/detail/uuid_uint128.ipp
#usr/include/boost/uuid/detail/uuid_x86.ipp
#usr/include/boost/uuid/entropy_error.hpp
#usr/include/boost/uuid/generators.hpp
+#usr/include/boost/uuid/invalid_uuid.hpp
#usr/include/boost/uuid/name_generator.hpp
#usr/include/boost/uuid/name_generator_md5.hpp
#usr/include/boost/uuid/name_generator_sha1.hpp
@@ -17304,250 +17728,407 @@
#usr/include/boost/yap/print.hpp
#usr/include/boost/yap/user_macros.hpp
#usr/include/boost/yap/yap.hpp
-#usr/lib/cmake/Boost-1.90.0
-#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
-#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
-#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
-#usr/lib/cmake/boost_atomic-1.90.0
-#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
-#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
-#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
-#usr/lib/cmake/boost_charconv-1.90.0
-#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
-#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
-#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
-#usr/lib/cmake/boost_chrono-1.90.0
-#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
-#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
-#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
-#usr/lib/cmake/boost_container-1.90.0
-#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
-#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
-#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
-#usr/lib/cmake/boost_context-1.90.0
-#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
-#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
-#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
-#usr/lib/cmake/boost_contract-1.90.0
-#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
-#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
-#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
-#usr/lib/cmake/boost_date_time-1.90.0
-#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
-#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
-#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
-#usr/lib/cmake/boost_exception-1.90.0
-#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
-#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0
-#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
-#usr/lib/cmake/boost_graph-1.90.0
-#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
-#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
-#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
-#usr/lib/cmake/boost_headers-1.90.0
-#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
-#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0
-#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
-#usr/lib/cmake/boost_json-1.90.0
-#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
-#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
-#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
-#usr/lib/cmake/boost_locale-1.90.0
-#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
-#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
-#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
-#usr/lib/cmake/boost_log-1.90.0
-#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
-#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
-#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0
-#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
-#usr/lib/cmake/boost_math-1.90.0
-#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
-#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0
-#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0
-#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0
-#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0
-#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0
-#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0
-#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
-#usr/lib/cmake/boost_nowide-1.90.0
-#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
-#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
-#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
-#usr/lib/cmake/boost_numpy-1.90.0
-#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
-#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
-#usr/lib/cmake/boost_process-1.90.0
-#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
-#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
-#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
-#usr/lib/cmake/boost_python-1.90.0
-#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
-#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
-#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
-#usr/lib/cmake/boost_random-1.90.0
-#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
-#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
-#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
-#usr/lib/cmake/boost_regex-1.90.0
-#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
-#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
-#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
-#usr/lib/cmake/boost_serialization-1.90.0
-#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
-#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
-#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
-#usr/lib/cmake/boost_thread-1.90.0
-#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
-#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
-#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
-#usr/lib/cmake/boost_timer-1.90.0
-#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
-#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
-#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0
-#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
-#usr/lib/cmake/boost_url-1.90.0
-#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
-#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
-#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
-#usr/lib/cmake/boost_wave-1.90.0
-#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
-#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
-#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0
-#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
-#usr/lib/libboost_atomic.so
-usr/lib/libboost_atomic.so.1.90.0
-#usr/lib/libboost_charconv.so
-usr/lib/libboost_charconv.so.1.90.0
-#usr/lib/libboost_chrono.so
-usr/lib/libboost_chrono.so.1.90.0
-#usr/lib/libboost_container.so
-usr/lib/libboost_container.so.1.90.0
-#usr/lib/libboost_context.so
-usr/lib/libboost_context.so.1.90.0
-#usr/lib/libboost_contract.so
-usr/lib/libboost_contract.so.1.90.0
-#usr/lib/libboost_date_time.so
-usr/lib/libboost_date_time.so.1.90.0
-#usr/lib/libboost_exception.a
-#usr/lib/libboost_filesystem.so
-usr/lib/libboost_filesystem.so.1.90.0
-#usr/lib/libboost_graph.so
-usr/lib/libboost_graph.so.1.90.0
-#usr/lib/libboost_iostreams.so
-usr/lib/libboost_iostreams.so.1.90.0
-#usr/lib/libboost_json.so
-usr/lib/libboost_json.so.1.90.0
-#usr/lib/libboost_locale.so
-usr/lib/libboost_locale.so.1.90.0
-#usr/lib/libboost_log.so
-usr/lib/libboost_log.so.1.90.0
-#usr/lib/libboost_log_setup.so
-usr/lib/libboost_log_setup.so.1.90.0
-#usr/lib/libboost_math_c99.so
-usr/lib/libboost_math_c99.so.1.90.0
-#usr/lib/libboost_math_c99f.so
-usr/lib/libboost_math_c99f.so.1.90.0
-#usr/lib/libboost_math_c99l.so
-usr/lib/libboost_math_c99l.so.1.90.0
-#usr/lib/libboost_math_tr1.so
-usr/lib/libboost_math_tr1.so.1.90.0
-#usr/lib/libboost_math_tr1f.so
-usr/lib/libboost_math_tr1f.so.1.90.0
-#usr/lib/libboost_math_tr1l.so
-usr/lib/libboost_math_tr1l.so.1.90.0
-#usr/lib/libboost_nowide.so
-usr/lib/libboost_nowide.so.1.90.0
-#usr/lib/libboost_prg_exec_monitor.so
-usr/lib/libboost_prg_exec_monitor.so.1.90.0
-#usr/lib/libboost_process.so
-usr/lib/libboost_process.so.1.90.0
-#usr/lib/libboost_python310.so
-usr/lib/libboost_python310.so.1.90.0
-#usr/lib/libboost_random.so
-usr/lib/libboost_random.so.1.90.0
-#usr/lib/libboost_regex.so
-usr/lib/libboost_regex.so.1.90.0
-#usr/lib/libboost_serialization.so
-usr/lib/libboost_serialization.so.1.90.0
-#usr/lib/libboost_stacktrace_addr2line.so
-usr/lib/libboost_stacktrace_addr2line.so.1.90.0
-#usr/lib/libboost_stacktrace_basic.so
-usr/lib/libboost_stacktrace_basic.so.1.90.0
-#usr/lib/libboost_stacktrace_noop.so
-usr/lib/libboost_stacktrace_noop.so.1.90.0
-#usr/lib/libboost_test_exec_monitor.a
-#usr/lib/libboost_thread.so
-usr/lib/libboost_thread.so.1.90.0
-#usr/lib/libboost_timer.so
-usr/lib/libboost_timer.so.1.90.0
-#usr/lib/libboost_type_erasure.so
-usr/lib/libboost_type_erasure.so.1.90.0
-#usr/lib/libboost_unit_test_framework.so
-usr/lib/libboost_unit_test_framework.so.1.90.0
-#usr/lib/libboost_url.so
-usr/lib/libboost_url.so.1.90.0
-#usr/lib/libboost_wave.so
-usr/lib/libboost_wave.so.1.90.0
-#usr/lib/libboost_wserialization.so
-usr/lib/libboost_wserialization.so.1.90.0
+#usr/lib/cmake/Boost-1.92.0
+#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
+#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
+#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
+#usr/lib/cmake/boost_atomic-1.92.0
+#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-a64-shared.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.92.0
+#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-a64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.92.0
+#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-a64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0
+#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-a64-shared.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0
+#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-a64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-a64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_container-1.92.0
+#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
+#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
+#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-a64-shared.cmake
+#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_context-1.92.0
+#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
+#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
+#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-a64-shared.cmake
+#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_contract-1.92.0
+#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
+#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
+#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-a64-shared.cmake
+#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.92.0
+#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-a64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_exception-1.92.0
+#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
+#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0
+#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-a64-shared.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_graph-1.92.0
+#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
+#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
+#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-a64-shared.cmake
+#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_headers-1.92.0
+#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
+#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0
+#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-a64-shared.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_json-1.92.0
+#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
+#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
+#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-a64-shared.cmake
+#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_locale-1.92.0
+#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
+#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
+#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-a64-shared.cmake
+#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_log-1.92.0
+#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
+#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
+#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-a64-shared.cmake
+#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0
+#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-a64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math-1.92.0
+#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
+#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0
+#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0
+#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0
+#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0
+#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0
+#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0
+#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.92.0
+#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-a64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_numpy-1.92.0
+#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
+#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-a64-shared.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_process-1.92.0
+#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
+#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
+#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-a64-shared.cmake
+#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_python-1.92.0
+#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
+#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
+#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-a64-shared-py3.10.cmake
+#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-a64-shared-py3.10.cmake
+#usr/lib/cmake/boost_random-1.92.0
+#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
+#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
+#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-a64-shared.cmake
+#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_regex-1.92.0
+#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
+#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0
+#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-a64-shared.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.92.0
+#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-a64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_system-1.92.0
+#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
+#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-a64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_thread-1.92.0
+#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
+#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
+#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-a64-shared.cmake
+#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_timer-1.92.0
+#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
+#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
+#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-a64-shared.cmake
+#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0
+#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-a64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-a64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_url-1.92.0
+#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
+#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
+#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-a64-shared.cmake
+#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_wave-1.92.0
+#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
+#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
+#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-a64-shared.cmake
+#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0
+#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-a64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-a64-shared.cmake
+#usr/lib/libboost_atomic-mt-a64.so
+usr/lib/libboost_atomic-mt-a64.so.1.92.0
+#usr/lib/libboost_charconv-a64.so
+usr/lib/libboost_charconv-a64.so.1.92.0
+#usr/lib/libboost_charconv-mt-a64.so
+usr/lib/libboost_charconv-mt-a64.so.1.92.0
+#usr/lib/libboost_chrono-a64.so
+usr/lib/libboost_chrono-a64.so.1.92.0
+#usr/lib/libboost_chrono-mt-a64.so
+usr/lib/libboost_chrono-mt-a64.so.1.92.0
+#usr/lib/libboost_cobalt-a64.so
+usr/lib/libboost_cobalt-a64.so.1.92.0
+#usr/lib/libboost_cobalt-mt-a64.so
+usr/lib/libboost_cobalt-mt-a64.so.1.92.0
+#usr/lib/libboost_cobalt_io-a64.so
+usr/lib/libboost_cobalt_io-a64.so.1.92.0
+#usr/lib/libboost_cobalt_io-mt-a64.so
+usr/lib/libboost_cobalt_io-mt-a64.so.1.92.0
+#usr/lib/libboost_cobalt_io_ssl-a64.so
+usr/lib/libboost_cobalt_io_ssl-a64.so.1.92.0
+#usr/lib/libboost_cobalt_io_ssl-mt-a64.so
+usr/lib/libboost_cobalt_io_ssl-mt-a64.so.1.92.0
+#usr/lib/libboost_container-a64.so
+usr/lib/libboost_container-a64.so.1.92.0
+#usr/lib/libboost_container-mt-a64.so
+usr/lib/libboost_container-mt-a64.so.1.92.0
+#usr/lib/libboost_context-mt-a64.so
+usr/lib/libboost_context-mt-a64.so.1.92.0
+#usr/lib/libboost_contract-a64.so
+usr/lib/libboost_contract-a64.so.1.92.0
+#usr/lib/libboost_contract-mt-a64.so
+usr/lib/libboost_contract-mt-a64.so.1.92.0
+#usr/lib/libboost_date_time-a64.so
+usr/lib/libboost_date_time-a64.so.1.92.0
+#usr/lib/libboost_date_time-mt-a64.so
+usr/lib/libboost_date_time-mt-a64.so.1.92.0
+#usr/lib/libboost_exception-a64.a
+#usr/lib/libboost_exception-mt-a64.a
+#usr/lib/libboost_filesystem-a64.so
+usr/lib/libboost_filesystem-a64.so.1.92.0
+#usr/lib/libboost_filesystem-mt-a64.so
+usr/lib/libboost_filesystem-mt-a64.so.1.92.0
+#usr/lib/libboost_graph-a64.so
+usr/lib/libboost_graph-a64.so.1.92.0
+#usr/lib/libboost_graph-mt-a64.so
+usr/lib/libboost_graph-mt-a64.so.1.92.0
+#usr/lib/libboost_iostreams-a64.so
+usr/lib/libboost_iostreams-a64.so.1.92.0
+#usr/lib/libboost_iostreams-mt-a64.so
+usr/lib/libboost_iostreams-mt-a64.so.1.92.0
+#usr/lib/libboost_json-a64.so
+usr/lib/libboost_json-a64.so.1.92.0
+#usr/lib/libboost_json-mt-a64.so
+usr/lib/libboost_json-mt-a64.so.1.92.0
+#usr/lib/libboost_locale-mt-a64.so
+usr/lib/libboost_locale-mt-a64.so.1.92.0
+#usr/lib/libboost_log-a64.so
+usr/lib/libboost_log-a64.so.1.92.0
+#usr/lib/libboost_log-mt-a64.so
+usr/lib/libboost_log-mt-a64.so.1.92.0
+#usr/lib/libboost_log_setup-a64.so
+usr/lib/libboost_log_setup-a64.so.1.92.0
+#usr/lib/libboost_log_setup-mt-a64.so
+usr/lib/libboost_log_setup-mt-a64.so.1.92.0
+#usr/lib/libboost_math_c99-a64.so
+usr/lib/libboost_math_c99-a64.so.1.92.0
+#usr/lib/libboost_math_c99-mt-a64.so
+usr/lib/libboost_math_c99-mt-a64.so.1.92.0
+#usr/lib/libboost_math_c99f-a64.so
+usr/lib/libboost_math_c99f-a64.so.1.92.0
+#usr/lib/libboost_math_c99f-mt-a64.so
+usr/lib/libboost_math_c99f-mt-a64.so.1.92.0
+#usr/lib/libboost_math_c99l-a64.so
+usr/lib/libboost_math_c99l-a64.so.1.92.0
+#usr/lib/libboost_math_c99l-mt-a64.so
+usr/lib/libboost_math_c99l-mt-a64.so.1.92.0
+#usr/lib/libboost_math_tr1-a64.so
+usr/lib/libboost_math_tr1-a64.so.1.92.0
+#usr/lib/libboost_math_tr1-mt-a64.so
+usr/lib/libboost_math_tr1-mt-a64.so.1.92.0
+#usr/lib/libboost_math_tr1f-a64.so
+usr/lib/libboost_math_tr1f-a64.so.1.92.0
+#usr/lib/libboost_math_tr1f-mt-a64.so
+usr/lib/libboost_math_tr1f-mt-a64.so.1.92.0
+#usr/lib/libboost_math_tr1l-a64.so
+usr/lib/libboost_math_tr1l-a64.so.1.92.0
+#usr/lib/libboost_math_tr1l-mt-a64.so
+usr/lib/libboost_math_tr1l-mt-a64.so.1.92.0
+#usr/lib/libboost_nowide-a64.so
+usr/lib/libboost_nowide-a64.so.1.92.0
+#usr/lib/libboost_nowide-mt-a64.so
+usr/lib/libboost_nowide-mt-a64.so.1.92.0
+#usr/lib/libboost_prg_exec_monitor-a64.so
+usr/lib/libboost_prg_exec_monitor-a64.so.1.92.0
+#usr/lib/libboost_prg_exec_monitor-mt-a64.so
+usr/lib/libboost_prg_exec_monitor-mt-a64.so.1.92.0
+#usr/lib/libboost_process-a64.so
+usr/lib/libboost_process-a64.so.1.92.0
+#usr/lib/libboost_process-mt-a64.so
+usr/lib/libboost_process-mt-a64.so.1.92.0
+#usr/lib/libboost_python310-a64.so
+usr/lib/libboost_python310-a64.so.1.92.0
+#usr/lib/libboost_python310-mt-a64.so
+usr/lib/libboost_python310-mt-a64.so.1.92.0
+#usr/lib/libboost_random-a64.so
+usr/lib/libboost_random-a64.so.1.92.0
+#usr/lib/libboost_random-mt-a64.so
+usr/lib/libboost_random-mt-a64.so.1.92.0
+#usr/lib/libboost_regex-a64.so
+usr/lib/libboost_regex-a64.so.1.92.0
+#usr/lib/libboost_regex-mt-a64.so
+usr/lib/libboost_regex-mt-a64.so.1.92.0
+#usr/lib/libboost_serialization-a64.so
+usr/lib/libboost_serialization-a64.so.1.92.0
+#usr/lib/libboost_serialization-mt-a64.so
+usr/lib/libboost_serialization-mt-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_addr2line-a64.so
+usr/lib/libboost_stacktrace_addr2line-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_addr2line-mt-a64.so
+usr/lib/libboost_stacktrace_addr2line-mt-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_basic-a64.so
+usr/lib/libboost_stacktrace_basic-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_basic-mt-a64.so
+usr/lib/libboost_stacktrace_basic-mt-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_dump-a64.so
+usr/lib/libboost_stacktrace_dump-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_dump-mt-a64.so
+usr/lib/libboost_stacktrace_dump-mt-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_from_exception-a64.so
+usr/lib/libboost_stacktrace_from_exception-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_from_exception-mt-a64.so
+usr/lib/libboost_stacktrace_from_exception-mt-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_noop-a64.so
+usr/lib/libboost_stacktrace_noop-a64.so.1.92.0
+#usr/lib/libboost_stacktrace_noop-mt-a64.so
+usr/lib/libboost_stacktrace_noop-mt-a64.so.1.92.0
+#usr/lib/libboost_test_exec_monitor-a64.a
+#usr/lib/libboost_test_exec_monitor-mt-a64.a
+#usr/lib/libboost_thread-mt-a64.so
+usr/lib/libboost_thread-mt-a64.so.1.92.0
+#usr/lib/libboost_timer-a64.so
+usr/lib/libboost_timer-a64.so.1.92.0
+#usr/lib/libboost_timer-mt-a64.so
+usr/lib/libboost_timer-mt-a64.so.1.92.0
+#usr/lib/libboost_type_erasure-a64.so
+usr/lib/libboost_type_erasure-a64.so.1.92.0
+#usr/lib/libboost_type_erasure-mt-a64.so
+usr/lib/libboost_type_erasure-mt-a64.so.1.92.0
+#usr/lib/libboost_unit_test_framework-a64.so
+usr/lib/libboost_unit_test_framework-a64.so.1.92.0
+#usr/lib/libboost_unit_test_framework-mt-a64.so
+usr/lib/libboost_unit_test_framework-mt-a64.so.1.92.0
+#usr/lib/libboost_url-a64.so
+usr/lib/libboost_url-a64.so.1.92.0
+#usr/lib/libboost_url-mt-a64.so
+usr/lib/libboost_url-mt-a64.so.1.92.0
+#usr/lib/libboost_wave-a64.so
+usr/lib/libboost_wave-a64.so.1.92.0
+#usr/lib/libboost_wave-mt-a64.so
+usr/lib/libboost_wave-mt-a64.so.1.92.0
+#usr/lib/libboost_wserialization-a64.so
+usr/lib/libboost_wserialization-a64.so.1.92.0
+#usr/lib/libboost_wserialization-mt-a64.so
+usr/lib/libboost_wserialization-mt-a64.so.1.92.0
#usr/share/boost_predef
#usr/share/boost_predef/build.jam
#usr/share/boost_predef/tools
@@ -439,6 +439,7 @@
#usr/include/boost/asio/detail/array_fwd.hpp
#usr/include/boost/asio/detail/assert.hpp
#usr/include/boost/asio/detail/atomic_count.hpp
+#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
#usr/include/boost/asio/detail/base_from_cancellation_state.hpp
#usr/include/boost/asio/detail/base_from_completion_cond.hpp
#usr/include/boost/asio/detail/bind_handler.hpp
@@ -477,6 +478,7 @@
#usr/include/boost/asio/detail/fd_set_adapter.hpp
#usr/include/boost/asio/detail/fenced_block.hpp
#usr/include/boost/asio/detail/functional.hpp
+#usr/include/boost/asio/detail/futex_slim_mutex.hpp
#usr/include/boost/asio/detail/future.hpp
#usr/include/boost/asio/detail/global.hpp
#usr/include/boost/asio/detail/handler_alloc_helpers.hpp
@@ -527,6 +529,7 @@
#usr/include/boost/asio/detail/impl/thread_context.ipp
#usr/include/boost/asio/detail/impl/throw_error.ipp
#usr/include/boost/asio/detail/impl/timer_queue_set.ipp
+#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
#usr/include/boost/asio/detail/impl/win_event.ipp
#usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
#usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
@@ -534,7 +537,6 @@
#usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
#usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
#usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
-#usr/include/boost/asio/detail/impl/win_mutex.ipp
#usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
#usr/include/boost/asio/detail/impl/win_static_mutex.ipp
#usr/include/boost/asio/detail/impl/win_thread.ipp
@@ -641,6 +643,7 @@
#usr/include/boost/asio/detail/signal_init.hpp
#usr/include/boost/asio/detail/signal_op.hpp
#usr/include/boost/asio/detail/signal_set_service.hpp
+#usr/include/boost/asio/detail/slim_mutex.hpp
#usr/include/boost/asio/detail/socket_holder.hpp
#usr/include/boost/asio/detail/socket_ops.hpp
#usr/include/boost/asio/detail/socket_option.hpp
@@ -674,6 +677,7 @@
#usr/include/boost/asio/detail/utility.hpp
#usr/include/boost/asio/detail/wait_handler.hpp
#usr/include/boost/asio/detail/wait_op.hpp
+#usr/include/boost/asio/detail/win_critsec_mutex.hpp
#usr/include/boost/asio/detail/win_event.hpp
#usr/include/boost/asio/detail/win_fd_set_adapter.hpp
#usr/include/boost/asio/detail/win_global.hpp
@@ -731,8 +735,6 @@
#usr/include/boost/asio/execution/context.hpp
#usr/include/boost/asio/execution/context_as.hpp
#usr/include/boost/asio/execution/executor.hpp
-#usr/include/boost/asio/execution/impl
-#usr/include/boost/asio/execution/impl/bad_executor.ipp
#usr/include/boost/asio/execution/inline_exception_handling.hpp
#usr/include/boost/asio/execution/invocable_archetype.hpp
#usr/include/boost/asio/execution/mapping.hpp
@@ -782,6 +784,7 @@
#usr/include/boost/asio/experimental/use_coro.hpp
#usr/include/boost/asio/experimental/use_promise.hpp
#usr/include/boost/asio/file_base.hpp
+#usr/include/boost/asio/fwd.hpp
#usr/include/boost/asio/generic
#usr/include/boost/asio/generic/basic_endpoint.hpp
#usr/include/boost/asio/generic/datagram_protocol.hpp
@@ -820,10 +823,8 @@
#usr/include/boost/asio/impl/execution_context.hpp
#usr/include/boost/asio/impl/execution_context.ipp
#usr/include/boost/asio/impl/executor.hpp
-#usr/include/boost/asio/impl/executor.ipp
#usr/include/boost/asio/impl/io_context.hpp
#usr/include/boost/asio/impl/io_context.ipp
-#usr/include/boost/asio/impl/multiple_exceptions.ipp
#usr/include/boost/asio/impl/prepend.hpp
#usr/include/boost/asio/impl/read.hpp
#usr/include/boost/asio/impl/read_at.hpp
@@ -1511,6 +1512,7 @@
#usr/include/boost/bimap/detail/map_view_base.hpp
#usr/include/boost/bimap/detail/map_view_iterator.hpp
#usr/include/boost/bimap/detail/modifier_adaptor.hpp
+#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
#usr/include/boost/bimap/detail/non_unique_views_helper.hpp
#usr/include/boost/bimap/detail/set_view_base.hpp
#usr/include/boost/bimap/detail/set_view_iterator.hpp
@@ -2390,11 +2392,13 @@
#usr/include/boost/container/detail/addressof.hpp
#usr/include/boost/container/detail/advanced_insert_int.hpp
#usr/include/boost/container/detail/algorithm.hpp
+#usr/include/boost/container/detail/aligned_allocation.hpp
#usr/include/boost/container/detail/alloc_helpers.hpp
#usr/include/boost/container/detail/alloc_lib.h
#usr/include/boost/container/detail/allocation_type.hpp
#usr/include/boost/container/detail/allocator_version_traits.hpp
#usr/include/boost/container/detail/auto_link.hpp
+#usr/include/boost/container/detail/bit_utilities.hpp
#usr/include/boost/container/detail/block_list.hpp
#usr/include/boost/container/detail/block_slist.hpp
#usr/include/boost/container/detail/compare_functors.hpp
@@ -2404,12 +2408,14 @@
#usr/include/boost/container/detail/container_or_allocator_rebind.hpp
#usr/include/boost/container/detail/container_rebind.hpp
#usr/include/boost/container/detail/copy_move_algo.hpp
+#usr/include/boost/container/detail/deque_impl.hpp
#usr/include/boost/container/detail/destroyers.hpp
#usr/include/boost/container/detail/dispatch_uses_allocator.hpp
#usr/include/boost/container/detail/dlmalloc.hpp
#usr/include/boost/container/detail/flat_tree.hpp
#usr/include/boost/container/detail/function_detector.hpp
#usr/include/boost/container/detail/guards_dended.hpp
+#usr/include/boost/container/detail/is_constructible.hpp
#usr/include/boost/container/detail/is_container.hpp
#usr/include/boost/container/detail/is_contiguous_container.hpp
#usr/include/boost/container/detail/is_pair.hpp
@@ -2434,6 +2440,7 @@
#usr/include/boost/container/detail/pool_common.hpp
#usr/include/boost/container/detail/pool_common_alloc.hpp
#usr/include/boost/container/detail/pool_resource.hpp
+#usr/include/boost/container/detail/range_utils.hpp
#usr/include/boost/container/detail/singleton.hpp
#usr/include/boost/container/detail/std_fwd.hpp
#usr/include/boost/container/detail/thread_mutex.hpp
@@ -2446,8 +2453,60 @@
#usr/include/boost/container/detail/version_type.hpp
#usr/include/boost/container/detail/workaround.hpp
#usr/include/boost/container/devector.hpp
+#usr/include/boost/container/experimental
+#usr/include/boost/container/experimental/nest.hpp
+#usr/include/boost/container/experimental/pmr
+#usr/include/boost/container/experimental/pmr/nest.hpp
+#usr/include/boost/container/experimental/segmented_all_of.hpp
+#usr/include/boost/container/experimental/segmented_any_of.hpp
+#usr/include/boost/container/experimental/segmented_copy.hpp
+#usr/include/boost/container/experimental/segmented_copy_if.hpp
+#usr/include/boost/container/experimental/segmented_copy_n.hpp
+#usr/include/boost/container/experimental/segmented_count.hpp
+#usr/include/boost/container/experimental/segmented_count_if.hpp
+#usr/include/boost/container/experimental/segmented_equal.hpp
+#usr/include/boost/container/experimental/segmented_fill.hpp
+#usr/include/boost/container/experimental/segmented_fill_n.hpp
+#usr/include/boost/container/experimental/segmented_find.hpp
+#usr/include/boost/container/experimental/segmented_find_if.hpp
+#usr/include/boost/container/experimental/segmented_find_if_not.hpp
+#usr/include/boost/container/experimental/segmented_find_last.hpp
+#usr/include/boost/container/experimental/segmented_find_last_if.hpp
+#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
+#usr/include/boost/container/experimental/segmented_for_each.hpp
+#usr/include/boost/container/experimental/segmented_generate.hpp
+#usr/include/boost/container/experimental/segmented_generate_n.hpp
+#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
+#usr/include/boost/container/experimental/segmented_is_sorted.hpp
+#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
+#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
+#usr/include/boost/container/experimental/segmented_merge.hpp
+#usr/include/boost/container/experimental/segmented_mismatch.hpp
+#usr/include/boost/container/experimental/segmented_none_of.hpp
+#usr/include/boost/container/experimental/segmented_partition.hpp
+#usr/include/boost/container/experimental/segmented_partition_copy.hpp
+#usr/include/boost/container/experimental/segmented_partition_point.hpp
+#usr/include/boost/container/experimental/segmented_remove.hpp
+#usr/include/boost/container/experimental/segmented_remove_copy.hpp
+#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
+#usr/include/boost/container/experimental/segmented_remove_if.hpp
+#usr/include/boost/container/experimental/segmented_replace.hpp
+#usr/include/boost/container/experimental/segmented_replace_if.hpp
+#usr/include/boost/container/experimental/segmented_reverse.hpp
+#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
+#usr/include/boost/container/experimental/segmented_search.hpp
+#usr/include/boost/container/experimental/segmented_search_n.hpp
+#usr/include/boost/container/experimental/segmented_set_difference.hpp
+#usr/include/boost/container/experimental/segmented_set_intersection.hpp
+#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
+#usr/include/boost/container/experimental/segmented_set_union.hpp
+#usr/include/boost/container/experimental/segmented_stable_partition.hpp
+#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
+#usr/include/boost/container/experimental/segmented_transform.hpp
+#usr/include/boost/container/experimental/wrapped_iterator.hpp
#usr/include/boost/container/flat_map.hpp
#usr/include/boost/container/flat_set.hpp
+#usr/include/boost/container/hub.hpp
#usr/include/boost/container/list.hpp
#usr/include/boost/container/map.hpp
#usr/include/boost/container/new_allocator.hpp
@@ -2460,6 +2519,7 @@
#usr/include/boost/container/pmr/flat_map.hpp
#usr/include/boost/container/pmr/flat_set.hpp
#usr/include/boost/container/pmr/global_resource.hpp
+#usr/include/boost/container/pmr/hub.hpp
#usr/include/boost/container/pmr/list.hpp
#usr/include/boost/container/pmr/map.hpp
#usr/include/boost/container/pmr/memory_resource.hpp
@@ -2467,6 +2527,7 @@
#usr/include/boost/container/pmr/polymorphic_allocator.hpp
#usr/include/boost/container/pmr/pool_options.hpp
#usr/include/boost/container/pmr/resource_adaptor.hpp
+#usr/include/boost/container/pmr/segtor.hpp
#usr/include/boost/container/pmr/set.hpp
#usr/include/boost/container/pmr/slist.hpp
#usr/include/boost/container/pmr/small_vector.hpp
@@ -2477,6 +2538,7 @@
#usr/include/boost/container/pmr/vector.hpp
#usr/include/boost/container/scoped_allocator.hpp
#usr/include/boost/container/scoped_allocator_fwd.hpp
+#usr/include/boost/container/segtor.hpp
#usr/include/boost/container/set.hpp
#usr/include/boost/container/slist.hpp
#usr/include/boost/container/small_vector.hpp
@@ -2485,6 +2547,7 @@
#usr/include/boost/container/string.hpp
#usr/include/boost/container/throw_exception.hpp
#usr/include/boost/container/uses_allocator.hpp
+#usr/include/boost/container/uses_allocator_construction.hpp
#usr/include/boost/container/uses_allocator_fwd.hpp
#usr/include/boost/container/vector.hpp
#usr/include/boost/container_hash
@@ -2605,6 +2668,9 @@
#usr/include/boost/contract/override.hpp
#usr/include/boost/contract/public_function.hpp
#usr/include/boost/contract_macro.hpp
+#usr/include/boost/conversion
+#usr/include/boost/conversion/detail
+#usr/include/boost/conversion/detail/config.hpp
#usr/include/boost/convert
#usr/include/boost/convert.hpp
#usr/include/boost/convert/base.hpp
@@ -2865,6 +2931,211 @@
#usr/include/boost/date_time/tz_db_base.hpp
#usr/include/boost/date_time/wrapping_int.hpp
#usr/include/boost/date_time/year_month_day.hpp
+#usr/include/boost/decimal
+#usr/include/boost/decimal.hpp
+#usr/include/boost/decimal/bid_conversion.hpp
+#usr/include/boost/decimal/cfenv.hpp
+#usr/include/boost/decimal/cfloat.hpp
+#usr/include/boost/decimal/charconv.hpp
+#usr/include/boost/decimal/cmath.hpp
+#usr/include/boost/decimal/cstdio.hpp
+#usr/include/boost/decimal/cstdlib.hpp
+#usr/include/boost/decimal/decimal128_t.hpp
+#usr/include/boost/decimal/decimal32_t.hpp
+#usr/include/boost/decimal/decimal64_t.hpp
+#usr/include/boost/decimal/decimal_fast128_t.hpp
+#usr/include/boost/decimal/decimal_fast32_t.hpp
+#usr/include/boost/decimal/decimal_fast64_t.hpp
+#usr/include/boost/decimal/detail
+#usr/include/boost/decimal/detail/add_impl.hpp
+#usr/include/boost/decimal/detail/apply_sign.hpp
+#usr/include/boost/decimal/detail/attributes.hpp
+#usr/include/boost/decimal/detail/bit_cast.hpp
+#usr/include/boost/decimal/detail/bit_layouts.hpp
+#usr/include/boost/decimal/detail/buffer_sizing.hpp
+#usr/include/boost/decimal/detail/chars_format.hpp
+#usr/include/boost/decimal/detail/check_non_finite.hpp
+#usr/include/boost/decimal/detail/cmath
+#usr/include/boost/decimal/detail/cmath/abs.hpp
+#usr/include/boost/decimal/detail/cmath/acos.hpp
+#usr/include/boost/decimal/detail/cmath/acosh.hpp
+#usr/include/boost/decimal/detail/cmath/asin.hpp
+#usr/include/boost/decimal/detail/cmath/asinh.hpp
+#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
+#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
+#usr/include/boost/decimal/detail/cmath/atan.hpp
+#usr/include/boost/decimal/detail/cmath/atan2.hpp
+#usr/include/boost/decimal/detail/cmath/atanh.hpp
+#usr/include/boost/decimal/detail/cmath/beta.hpp
+#usr/include/boost/decimal/detail/cmath/cbrt.hpp
+#usr/include/boost/decimal/detail/cmath/ceil.hpp
+#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
+#usr/include/boost/decimal/detail/cmath/cos.hpp
+#usr/include/boost/decimal/detail/cmath/cosh.hpp
+#usr/include/boost/decimal/detail/cmath/decompose.hpp
+#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
+#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
+#usr/include/boost/decimal/detail/cmath/erf.hpp
+#usr/include/boost/decimal/detail/cmath/exp.hpp
+#usr/include/boost/decimal/detail/cmath/exp2.hpp
+#usr/include/boost/decimal/detail/cmath/expm1.hpp
+#usr/include/boost/decimal/detail/cmath/fabs.hpp
+#usr/include/boost/decimal/detail/cmath/fdim.hpp
+#usr/include/boost/decimal/detail/cmath/floor.hpp
+#usr/include/boost/decimal/detail/cmath/fma.hpp
+#usr/include/boost/decimal/detail/cmath/fmax.hpp
+#usr/include/boost/decimal/detail/cmath/fmin.hpp
+#usr/include/boost/decimal/detail/cmath/fmod.hpp
+#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
+#usr/include/boost/decimal/detail/cmath/frexp.hpp
+#usr/include/boost/decimal/detail/cmath/frexp10.hpp
+#usr/include/boost/decimal/detail/cmath/hermite.hpp
+#usr/include/boost/decimal/detail/cmath/hypot.hpp
+#usr/include/boost/decimal/detail/cmath/ilogb.hpp
+#usr/include/boost/decimal/detail/cmath/impl
+#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
+#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
+#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
+#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
+#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
+#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
+#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
+#usr/include/boost/decimal/detail/cmath/isfinite.hpp
+#usr/include/boost/decimal/detail/cmath/isgreater.hpp
+#usr/include/boost/decimal/detail/cmath/isless.hpp
+#usr/include/boost/decimal/detail/cmath/isunordered.hpp
+#usr/include/boost/decimal/detail/cmath/laguerre.hpp
+#usr/include/boost/decimal/detail/cmath/ldexp.hpp
+#usr/include/boost/decimal/detail/cmath/legendre.hpp
+#usr/include/boost/decimal/detail/cmath/lgamma.hpp
+#usr/include/boost/decimal/detail/cmath/log.hpp
+#usr/include/boost/decimal/detail/cmath/log10.hpp
+#usr/include/boost/decimal/detail/cmath/log1p.hpp
+#usr/include/boost/decimal/detail/cmath/log2.hpp
+#usr/include/boost/decimal/detail/cmath/logb.hpp
+#usr/include/boost/decimal/detail/cmath/modf.hpp
+#usr/include/boost/decimal/detail/cmath/nan.hpp
+#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
+#usr/include/boost/decimal/detail/cmath/next.hpp
+#usr/include/boost/decimal/detail/cmath/normalize.hpp
+#usr/include/boost/decimal/detail/cmath/pow.hpp
+#usr/include/boost/decimal/detail/cmath/remainder.hpp
+#usr/include/boost/decimal/detail/cmath/remquo.hpp
+#usr/include/boost/decimal/detail/cmath/rescale.hpp
+#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
+#usr/include/boost/decimal/detail/cmath/rint.hpp
+#usr/include/boost/decimal/detail/cmath/round.hpp
+#usr/include/boost/decimal/detail/cmath/sin.hpp
+#usr/include/boost/decimal/detail/cmath/sinh.hpp
+#usr/include/boost/decimal/detail/cmath/sqrt.hpp
+#usr/include/boost/decimal/detail/cmath/tan.hpp
+#usr/include/boost/decimal/detail/cmath/tanh.hpp
+#usr/include/boost/decimal/detail/cmath/tgamma.hpp
+#usr/include/boost/decimal/detail/cmath/trunc.hpp
+#usr/include/boost/decimal/detail/comparison.hpp
+#usr/include/boost/decimal/detail/components.hpp
+#usr/include/boost/decimal/detail/concepts.hpp
+#usr/include/boost/decimal/detail/config.hpp
+#usr/include/boost/decimal/detail/construction_sign.hpp
+#usr/include/boost/decimal/detail/countl.hpp
+#usr/include/boost/decimal/detail/div_impl.hpp
+#usr/include/boost/decimal/detail/fast_float
+#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
+#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
+#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
+#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
+#usr/include/boost/decimal/detail/fenv_rounding.hpp
+#usr/include/boost/decimal/detail/formatting_limits.hpp
+#usr/include/boost/decimal/detail/from_chars_impl.hpp
+#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
+#usr/include/boost/decimal/detail/from_chars_result.hpp
+#usr/include/boost/decimal/detail/fwd_log.hpp
+#usr/include/boost/decimal/detail/i256.hpp
+#usr/include/boost/decimal/detail/int128
+#usr/include/boost/decimal/detail/int128.hpp
+#usr/include/boost/decimal/detail/int128/bit.hpp
+#usr/include/boost/decimal/detail/int128/climits.hpp
+#usr/include/boost/decimal/detail/int128/cstdlib.hpp
+#usr/include/boost/decimal/detail/int128/detail
+#usr/include/boost/decimal/detail/int128/detail/clz.hpp
+#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
+#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
+#usr/include/boost/decimal/detail/int128/detail/config.hpp
+#usr/include/boost/decimal/detail/int128/detail/constants.hpp
+#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
+#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
+#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
+#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
+#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
+#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
+#usr/include/boost/decimal/detail/int128/detail/traits.hpp
+#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
+#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
+#usr/include/boost/decimal/detail/int128/fmt_format.hpp
+#usr/include/boost/decimal/detail/int128/format.hpp
+#usr/include/boost/decimal/detail/int128/int128.hpp
+#usr/include/boost/decimal/detail/int128/iostream.hpp
+#usr/include/boost/decimal/detail/int128/limits.hpp
+#usr/include/boost/decimal/detail/int128/literals.hpp
+#usr/include/boost/decimal/detail/int128/numeric.hpp
+#usr/include/boost/decimal/detail/int128/random.hpp
+#usr/include/boost/decimal/detail/int128/string.hpp
+#usr/include/boost/decimal/detail/integer_search_trees.hpp
+#usr/include/boost/decimal/detail/io.hpp
+#usr/include/boost/decimal/detail/is_power_of_10.hpp
+#usr/include/boost/decimal/detail/locale_conversion.hpp
+#usr/include/boost/decimal/detail/memcpy.hpp
+#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
+#usr/include/boost/decimal/detail/mod_impl.hpp
+#usr/include/boost/decimal/detail/mul_impl.hpp
+#usr/include/boost/decimal/detail/normalize.hpp
+#usr/include/boost/decimal/detail/parser.hpp
+#usr/include/boost/decimal/detail/power_tables.hpp
+#usr/include/boost/decimal/detail/promote_significand.hpp
+#usr/include/boost/decimal/detail/promotion.hpp
+#usr/include/boost/decimal/detail/quantize_impl.hpp
+#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
+#usr/include/boost/decimal/detail/ryu
+#usr/include/boost/decimal/detail/ryu/generic_128.hpp
+#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
+#usr/include/boost/decimal/detail/shrink_significand.hpp
+#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
+#usr/include/boost/decimal/detail/to_chars_result.hpp
+#usr/include/boost/decimal/detail/to_decimal.hpp
+#usr/include/boost/decimal/detail/to_float.hpp
+#usr/include/boost/decimal/detail/to_integral.hpp
+#usr/include/boost/decimal/detail/type_traits.hpp
+#usr/include/boost/decimal/detail/u256.hpp
+#usr/include/boost/decimal/detail/utilities.hpp
+#usr/include/boost/decimal/detail/write_payload.hpp
+#usr/include/boost/decimal/dpd_conversion.hpp
+#usr/include/boost/decimal/fmt_format.hpp
+#usr/include/boost/decimal/format.hpp
+#usr/include/boost/decimal/fwd.hpp
+#usr/include/boost/decimal/hash.hpp
+#usr/include/boost/decimal/iostream.hpp
+#usr/include/boost/decimal/literals.hpp
+#usr/include/boost/decimal/numbers.hpp
+#usr/include/boost/decimal/string.hpp
+#usr/include/boost/decimal/uint128_t.hpp
#usr/include/boost/describe
#usr/include/boost/describe.hpp
#usr/include/boost/describe/bases.hpp
@@ -2909,7 +3180,6 @@
#usr/include/boost/detail/is_sorted.hpp
#usr/include/boost/detail/is_xxx.hpp
#usr/include/boost/detail/iterator.hpp
-#usr/include/boost/detail/lcast_precision.hpp
#usr/include/boost/detail/lightweight_main.hpp
#usr/include/boost/detail/lightweight_mutex.hpp
#usr/include/boost/detail/lightweight_test.hpp
@@ -2993,6 +3263,7 @@
#usr/include/boost/dll/config.hpp
#usr/include/boost/dll/detail
#usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
+#usr/include/boost/dll/detail/config.hpp
#usr/include/boost/dll/detail/ctor_dtor.hpp
#usr/include/boost/dll/detail/demangling
#usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
@@ -3057,6 +3328,7 @@
#usr/include/boost/exception/current_exception_cast.hpp
#usr/include/boost/exception/detail
#usr/include/boost/exception/detail/clone_current_exception.hpp
+#usr/include/boost/exception/detail/encoder.hpp
#usr/include/boost/exception/detail/error_info_impl.hpp
#usr/include/boost/exception/detail/exception_ptr.hpp
#usr/include/boost/exception/detail/is_output_streamable.hpp
@@ -3080,6 +3352,9 @@
#usr/include/boost/exception/get_error_info.hpp
#usr/include/boost/exception/info.hpp
#usr/include/boost/exception/info_tuple.hpp
+#usr/include/boost/exception/serialization
+#usr/include/boost/exception/serialization/boost_json_encoder.hpp
+#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
#usr/include/boost/exception/to_string.hpp
#usr/include/boost/exception/to_string_stub.hpp
#usr/include/boost/exception_ptr.hpp
@@ -5091,8 +5366,6 @@
#usr/include/boost/geometry/index/detail/tags.hpp
#usr/include/boost/geometry/index/detail/translator.hpp
#usr/include/boost/geometry/index/detail/utilities.hpp
-#usr/include/boost/geometry/index/detail/varray.hpp
-#usr/include/boost/geometry/index/detail/varray_detail.hpp
#usr/include/boost/geometry/index/distance_predicates.hpp
#usr/include/boost/geometry/index/equal_to.hpp
#usr/include/boost/geometry/index/indexable.hpp
@@ -6077,6 +6350,8 @@
#usr/include/boost/graph/leda_graph.hpp
#usr/include/boost/graph/lookup_edge.hpp
#usr/include/boost/graph/loop_erased_random_walk.hpp
+#usr/include/boost/graph/louvain_clustering.hpp
+#usr/include/boost/graph/louvain_quality_functions.hpp
#usr/include/boost/graph/make_biconnected_planar.hpp
#usr/include/boost/graph/make_connected.hpp
#usr/include/boost/graph/make_maximal_planar.hpp
@@ -6679,6 +6954,7 @@
#usr/include/boost/heap/detail
#usr/include/boost/heap/detail/heap_comparison.hpp
#usr/include/boost/heap/detail/heap_node.hpp
+#usr/include/boost/heap/detail/heap_utils.hpp
#usr/include/boost/heap/detail/ilog2.hpp
#usr/include/boost/heap/detail/mutable_heap.hpp
#usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
@@ -6888,8 +7164,10 @@
#usr/include/boost/icl/concept/set_value.hpp
#usr/include/boost/icl/continuous_interval.hpp
#usr/include/boost/icl/detail
+#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
#usr/include/boost/icl/detail/associated_value.hpp
#usr/include/boost/icl/detail/boost_config.hpp
+#usr/include/boost/icl/detail/co_equal_fwd.hpp
#usr/include/boost/icl/detail/concept_check.hpp
#usr/include/boost/icl/detail/design_config.hpp
#usr/include/boost/icl/detail/element_comparer.hpp
@@ -6899,12 +7177,14 @@
#usr/include/boost/icl/detail/interval_morphism.hpp
#usr/include/boost/icl/detail/interval_set_algo.hpp
#usr/include/boost/icl/detail/interval_subset_comparer.hpp
+#usr/include/boost/icl/detail/map_adaptor.hpp
#usr/include/boost/icl/detail/map_algo.hpp
#usr/include/boost/icl/detail/mapped_reference.hpp
#usr/include/boost/icl/detail/notate.hpp
#usr/include/boost/icl/detail/on_absorbtion.hpp
#usr/include/boost/icl/detail/relation_state.hpp
#usr/include/boost/icl/detail/requires_cxx11.hpp
+#usr/include/boost/icl/detail/set_adaptor.hpp
#usr/include/boost/icl/detail/set_algo.hpp
#usr/include/boost/icl/detail/std_set.hpp
#usr/include/boost/icl/detail/subset_comparer.hpp
@@ -7585,6 +7865,7 @@
#usr/include/boost/json/impl/value_ref.ipp
#usr/include/boost/json/impl/value_stack.ipp
#usr/include/boost/json/impl/visit.hpp
+#usr/include/boost/json/impl/visit.ipp
#usr/include/boost/json/is_deallocate_trivial.hpp
#usr/include/boost/json/kind.hpp
#usr/include/boost/json/monotonic_resource.hpp
@@ -7660,15 +7941,20 @@
#usr/include/boost/leaf/config/tls_cpp11.hpp
#usr/include/boost/leaf/config/tls_freertos.hpp
#usr/include/boost/leaf/config/tls_globals.hpp
+#usr/include/boost/leaf/config/tls_win32.hpp
+#usr/include/boost/leaf/config/visibility.hpp
#usr/include/boost/leaf/context.hpp
#usr/include/boost/leaf/detail
#usr/include/boost/leaf/detail/all.hpp
#usr/include/boost/leaf/detail/capture_list.hpp
#usr/include/boost/leaf/detail/demangle.hpp
+#usr/include/boost/leaf/detail/diagnostics_writer.hpp
+#usr/include/boost/leaf/detail/encoder.hpp
+#usr/include/boost/leaf/detail/exception_base.hpp
#usr/include/boost/leaf/detail/function_traits.hpp
#usr/include/boost/leaf/detail/mp11.hpp
#usr/include/boost/leaf/detail/optional.hpp
-#usr/include/boost/leaf/detail/print.hpp
+#usr/include/boost/leaf/detail/type_name.hpp
#usr/include/boost/leaf/diagnostics.hpp
#usr/include/boost/leaf/error.hpp
#usr/include/boost/leaf/exception.hpp
@@ -7676,12 +7962,16 @@
#usr/include/boost/leaf/on_error.hpp
#usr/include/boost/leaf/pred.hpp
#usr/include/boost/leaf/result.hpp
+#usr/include/boost/leaf/serialization
+#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
+#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
#usr/include/boost/leaf/to_variant.hpp
#usr/include/boost/lexical_cast
#usr/include/boost/lexical_cast.hpp
#usr/include/boost/lexical_cast/bad_lexical_cast.hpp
#usr/include/boost/lexical_cast/detail
#usr/include/boost/lexical_cast/detail/buffer_view.hpp
+#usr/include/boost/lexical_cast/detail/config.hpp
#usr/include/boost/lexical_cast/detail/converter_lexical.hpp
#usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
#usr/include/boost/lexical_cast/detail/converter_numeric.hpp
@@ -7689,6 +7979,7 @@
#usr/include/boost/lexical_cast/detail/is_character.hpp
#usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
#usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
+#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
#usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
#usr/include/boost/lexical_cast/detail/type_traits.hpp
#usr/include/boost/lexical_cast/detail/widest_char.hpp
@@ -7798,17 +8089,20 @@
#usr/include/boost/locale/util/locale_data.hpp
#usr/include/boost/locale/util/string.hpp
#usr/include/boost/lockfree
+#usr/include/boost/lockfree/bounded_ticket_queue.hpp
#usr/include/boost/lockfree/detail
#usr/include/boost/lockfree/detail/atomic.hpp
#usr/include/boost/lockfree/detail/copy_payload.hpp
#usr/include/boost/lockfree/detail/freelist.hpp
#usr/include/boost/lockfree/detail/parameter.hpp
+#usr/include/boost/lockfree/detail/power_of_two.hpp
#usr/include/boost/lockfree/detail/prefix.hpp
#usr/include/boost/lockfree/detail/tagged_ptr.hpp
#usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
#usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
#usr/include/boost/lockfree/detail/uses_optional.hpp
#usr/include/boost/lockfree/lockfree_forward.hpp
+#usr/include/boost/lockfree/mpsc_weak_queue.hpp
#usr/include/boost/lockfree/policies.hpp
#usr/include/boost/lockfree/queue.hpp
#usr/include/boost/lockfree/spsc_queue.hpp
@@ -8283,8 +8577,17 @@
#usr/include/boost/math/optimization/cma_es.hpp
#usr/include/boost/math/optimization/detail
#usr/include/boost/math/optimization/detail/common.hpp
+#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
+#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
+#usr/include/boost/math/optimization/detail/line_search_policies.hpp
+#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
#usr/include/boost/math/optimization/differential_evolution.hpp
+#usr/include/boost/math/optimization/gradient_descent.hpp
+#usr/include/boost/math/optimization/gradient_optimizers.hpp
#usr/include/boost/math/optimization/jso.hpp
+#usr/include/boost/math/optimization/lbfgs.hpp
+#usr/include/boost/math/optimization/minimizer.hpp
+#usr/include/boost/math/optimization/nesterov.hpp
#usr/include/boost/math/optimization/random_search.hpp
#usr/include/boost/math/policies
#usr/include/boost/math/policies/error_handling.hpp
@@ -10296,12 +10599,23 @@
#usr/include/boost/msm/backmp11
#usr/include/boost/msm/backmp11/common_types.hpp
#usr/include/boost/msm/backmp11/detail
-#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
+#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
+#usr/include/boost/msm/backmp11/detail/common.hpp
+#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
#usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
#usr/include/boost/msm/backmp11/detail/history_impl.hpp
#usr/include/boost/msm/backmp11/detail/metafunctions.hpp
+#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
+#usr/include/boost/msm/backmp11/detail/state_tags.hpp
+#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
+#usr/include/boost/msm/backmp11/detail/transition_table.hpp
#usr/include/boost/msm/backmp11/event_traits.hpp
#usr/include/boost/msm/backmp11/favor_compile_time.hpp
+#usr/include/boost/msm/backmp11/observer.hpp
+#usr/include/boost/msm/backmp11/serialization
+#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
+#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
+#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
#usr/include/boost/msm/backmp11/state_machine.hpp
#usr/include/boost/msm/backmp11/state_machine_config.hpp
#usr/include/boost/msm/common.hpp
@@ -10312,6 +10626,7 @@
#usr/include/boost/msm/front/detail
#usr/include/boost/msm/front/detail/common_states.hpp
#usr/include/boost/msm/front/detail/row2_helper.hpp
+#usr/include/boost/msm/front/detail/state_tags.hpp
#usr/include/boost/msm/front/euml
#usr/include/boost/msm/front/euml/algorithm.hpp
#usr/include/boost/msm/front/euml/common.hpp
@@ -10373,11 +10688,10 @@
#usr/include/boost/multi_index
#usr/include/boost/multi_index/composite_key.hpp
#usr/include/boost/multi_index/detail
-#usr/include/boost/multi_index/detail/access_specifier.hpp
#usr/include/boost/multi_index/detail/adl_swap.hpp
-#usr/include/boost/multi_index/detail/allocator_traits.hpp
#usr/include/boost/multi_index/detail/any_container_view.hpp
#usr/include/boost/multi_index/detail/archive_constructed.hpp
+#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
#usr/include/boost/multi_index/detail/auto_space.hpp
#usr/include/boost/multi_index/detail/bad_archive_exception.hpp
#usr/include/boost/multi_index/detail/base_type.hpp
@@ -10408,7 +10722,9 @@
#usr/include/boost/multi_index/detail/is_transparent.hpp
#usr/include/boost/multi_index/detail/iter_adaptor.hpp
#usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
+#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
#usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
+#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
#usr/include/boost/multi_index/detail/node_handle.hpp
#usr/include/boost/multi_index/detail/node_type.hpp
#usr/include/boost/multi_index/detail/ord_index_args.hpp
@@ -10431,11 +10747,11 @@
#usr/include/boost/multi_index/detail/seq_index_node.hpp
#usr/include/boost/multi_index/detail/seq_index_ops.hpp
#usr/include/boost/multi_index/detail/serialization_version.hpp
+#usr/include/boost/multi_index/detail/type_list.hpp
#usr/include/boost/multi_index/detail/uintptr_type.hpp
#usr/include/boost/multi_index/detail/unbounded.hpp
#usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
#usr/include/boost/multi_index/detail/value_compare.hpp
-#usr/include/boost/multi_index/detail/vartempl_support.hpp
#usr/include/boost/multi_index/global_fun.hpp
#usr/include/boost/multi_index/hashed_index.hpp
#usr/include/boost/multi_index/hashed_index_fwd.hpp
@@ -10678,6 +10994,7 @@
#usr/include/boost/mysql/impl/internal/error
#usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
#usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
+#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
#usr/include/boost/mysql/impl/internal/protocol
#usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
#usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
@@ -11176,6 +11493,7 @@
#usr/include/boost/openmethod/initialize.hpp
#usr/include/boost/openmethod/inplace_vptr.hpp
#usr/include/boost/openmethod/interop
+#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
#usr/include/boost/openmethod/interop/std_shared_ptr.hpp
#usr/include/boost/openmethod/interop/std_unique_ptr.hpp
#usr/include/boost/openmethod/macros.hpp
@@ -11197,14 +11515,17 @@
#usr/include/boost/optional/detail
#usr/include/boost/optional/detail/experimental_traits.hpp
#usr/include/boost/optional/detail/optional_aligned_storage.hpp
+#usr/include/boost/optional/detail/optional_common_defs.hpp
#usr/include/boost/optional/detail/optional_config.hpp
#usr/include/boost/optional/detail/optional_factory_support.hpp
#usr/include/boost/optional/detail/optional_hash.hpp
+#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
#usr/include/boost/optional/detail/optional_reference_spec.hpp
#usr/include/boost/optional/detail/optional_relops.hpp
+#usr/include/boost/optional/detail/optional_select_implementation.hpp
#usr/include/boost/optional/detail/optional_swap.hpp
#usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
-#usr/include/boost/optional/detail/optional_utility.hpp
+#usr/include/boost/optional/detail/union_optional.hpp
#usr/include/boost/optional/optional.hpp
#usr/include/boost/optional/optional_fwd.hpp
#usr/include/boost/optional/optional_io.hpp
@@ -11489,9 +11810,11 @@
#usr/include/boost/pfr/detail/core17.hpp
#usr/include/boost/pfr/detail/core17_generated.hpp
#usr/include/boost/pfr/detail/core26.hpp
+#usr/include/boost/pfr/detail/core26_reflection.hpp
#usr/include/boost/pfr/detail/core_name.hpp
#usr/include/boost/pfr/detail/core_name14_disabled.hpp
#usr/include/boost/pfr/detail/core_name20_static.hpp
+#usr/include/boost/pfr/detail/core_name26_reflection.hpp
#usr/include/boost/pfr/detail/detectors.hpp
#usr/include/boost/pfr/detail/fake_object.hpp
#usr/include/boost/pfr/detail/fields_count.hpp
@@ -13245,6 +13568,7 @@
#usr/include/boost/python/detail/pointee.hpp
#usr/include/boost/python/detail/prefix.hpp
#usr/include/boost/python/detail/preprocessor.hpp
+#usr/include/boost/python/detail/pymutex.hpp
#usr/include/boost/python/detail/python22_fixed.h
#usr/include/boost/python/detail/python_type.hpp
#usr/include/boost/python/detail/raw_pyobject.hpp
@@ -13750,15 +14074,20 @@
#usr/include/boost/redis/connection.hpp
#usr/include/boost/redis/detail
#usr/include/boost/redis/detail/connect_fsm.hpp
+#usr/include/boost/redis/detail/connect_params.hpp
#usr/include/boost/redis/detail/connection_state.hpp
#usr/include/boost/redis/detail/coroutine.hpp
#usr/include/boost/redis/detail/exec_fsm.hpp
+#usr/include/boost/redis/detail/exec_one_fsm.hpp
#usr/include/boost/redis/detail/multiplexer.hpp
#usr/include/boost/redis/detail/read_buffer.hpp
#usr/include/boost/redis/detail/reader_fsm.hpp
+#usr/include/boost/redis/detail/receive_fsm.hpp
#usr/include/boost/redis/detail/redis_stream.hpp
#usr/include/boost/redis/detail/resp3_type_to_error.hpp
#usr/include/boost/redis/detail/run_fsm.hpp
+#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
+#usr/include/boost/redis/detail/subscription_tracker.hpp
#usr/include/boost/redis/detail/write.hpp
#usr/include/boost/redis/detail/writer_fsm.hpp
#usr/include/boost/redis/error.hpp
@@ -13768,23 +14097,32 @@
#usr/include/boost/redis/impl/connection.ipp
#usr/include/boost/redis/impl/error.ipp
#usr/include/boost/redis/impl/exec_fsm.ipp
+#usr/include/boost/redis/impl/exec_one_fsm.ipp
+#usr/include/boost/redis/impl/flat_tree.ipp
#usr/include/boost/redis/impl/ignore.ipp
#usr/include/boost/redis/impl/is_terminal_cancel.hpp
#usr/include/boost/redis/impl/log_to_file.hpp
#usr/include/boost/redis/impl/log_utils.hpp
#usr/include/boost/redis/impl/logger.ipp
#usr/include/boost/redis/impl/multiplexer.ipp
+#usr/include/boost/redis/impl/push_parser.ipp
#usr/include/boost/redis/impl/read_buffer.ipp
#usr/include/boost/redis/impl/reader_fsm.ipp
+#usr/include/boost/redis/impl/receive_fsm.ipp
#usr/include/boost/redis/impl/request.ipp
#usr/include/boost/redis/impl/response.ipp
#usr/include/boost/redis/impl/run_fsm.ipp
+#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
+#usr/include/boost/redis/impl/sentinel_utils.hpp
#usr/include/boost/redis/impl/setup_request_utils.hpp
+#usr/include/boost/redis/impl/subscription_tracker.ipp
#usr/include/boost/redis/impl/writer_fsm.ipp
#usr/include/boost/redis/logger.hpp
#usr/include/boost/redis/operation.hpp
+#usr/include/boost/redis/push_parser.hpp
#usr/include/boost/redis/request.hpp
#usr/include/boost/redis/resp3
+#usr/include/boost/redis/resp3/flat_tree.hpp
#usr/include/boost/redis/resp3/impl
#usr/include/boost/redis/resp3/impl/parser.ipp
#usr/include/boost/redis/resp3/impl/serialization.ipp
@@ -13792,6 +14130,7 @@
#usr/include/boost/redis/resp3/node.hpp
#usr/include/boost/redis/resp3/parser.hpp
#usr/include/boost/redis/resp3/serialization.hpp
+#usr/include/boost/redis/resp3/tree.hpp
#usr/include/boost/redis/resp3/type.hpp
#usr/include/boost/redis/response.hpp
#usr/include/boost/redis/src.hpp
@@ -15352,9 +15691,11 @@
#usr/include/boost/stacktrace/detail/addr2line_impls.hpp
#usr/include/boost/stacktrace/detail/addr_base.hpp
#usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
+#usr/include/boost/stacktrace/detail/backend_config.hpp
#usr/include/boost/stacktrace/detail/collect_msvc.ipp
#usr/include/boost/stacktrace/detail/collect_noop.ipp
#usr/include/boost/stacktrace/detail/collect_unwind.ipp
+#usr/include/boost/stacktrace/detail/config.hpp
#usr/include/boost/stacktrace/detail/frame_decl.hpp
#usr/include/boost/stacktrace/detail/frame_msvc.ipp
#usr/include/boost/stacktrace/detail/frame_noop.ipp
@@ -15408,7 +15749,10 @@
#usr/include/boost/statechart/state_machine.hpp
#usr/include/boost/statechart/termination.hpp
#usr/include/boost/statechart/transition.hpp
+#usr/include/boost/static_assert
#usr/include/boost/static_assert.hpp
+#usr/include/boost/static_assert/detail
+#usr/include/boost/static_assert/detail/backward.hpp
#usr/include/boost/static_string
#usr/include/boost/static_string.hpp
#usr/include/boost/static_string/config.hpp
@@ -15442,6 +15786,7 @@
#usr/include/boost/system/detail/generic_category.hpp
#usr/include/boost/system/detail/generic_category_message.hpp
#usr/include/boost/system/detail/interop_category.hpp
+#usr/include/boost/system/detail/is_aggregate.hpp
#usr/include/boost/system/detail/is_same.hpp
#usr/include/boost/system/detail/mutex.hpp
#usr/include/boost/system/detail/snprintf.hpp
@@ -15464,6 +15809,7 @@
#usr/include/boost/system/result.hpp
#usr/include/boost/system/system_category.hpp
#usr/include/boost/system/system_error.hpp
+#usr/include/boost/system/unwrap_and_invoke.hpp
#usr/include/boost/system/windows_error.hpp
#usr/include/boost/test
#usr/include/boost/test/auto_unit_test.hpp
@@ -16595,6 +16941,7 @@
#usr/include/boost/unordered/detail/narrow_cast.hpp
#usr/include/boost/unordered/detail/opt_storage.hpp
#usr/include/boost/unordered/detail/prime_fmod.hpp
+#usr/include/boost/unordered/detail/ranges_support.hpp
#usr/include/boost/unordered/detail/serialization_version.hpp
#usr/include/boost/unordered/detail/serialize_container.hpp
#usr/include/boost/unordered/detail/serialize_fca_container.hpp
@@ -16623,19 +16970,33 @@
#usr/include/boost/url
#usr/include/boost/url.hpp
#usr/include/boost/url/authority_view.hpp
+#usr/include/boost/url/decode.hpp
#usr/include/boost/url/decode_view.hpp
#usr/include/boost/url/detail
#usr/include/boost/url/detail/any_params_iter.hpp
#usr/include/boost/url/detail/any_segments_iter.hpp
#usr/include/boost/url/detail/config.hpp
+#usr/include/boost/url/detail/decode.hpp
#usr/include/boost/url/detail/encode.hpp
#usr/include/boost/url/detail/except.hpp
+#usr/include/boost/url/detail/fnv_1a.hpp
#usr/include/boost/url/detail/format_args.hpp
#usr/include/boost/url/detail/impl
+#usr/include/boost/url/detail/impl/any_params_iter.hpp
+#usr/include/boost/url/detail/impl/any_segments_iter.hpp
#usr/include/boost/url/detail/impl/format_args.hpp
+#usr/include/boost/url/detail/impl/params_iter_impl.hpp
+#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
+#usr/include/boost/url/detail/impl/url_impl.hpp
+#usr/include/boost/url/detail/memcpy.hpp
+#usr/include/boost/url/detail/move_chars.hpp
+#usr/include/boost/url/detail/normalize.hpp
#usr/include/boost/url/detail/optional_string.hpp
+#usr/include/boost/url/detail/over_allocator.hpp
#usr/include/boost/url/detail/params_iter_impl.hpp
#usr/include/boost/url/detail/parts_base.hpp
+#usr/include/boost/url/detail/path.hpp
+#usr/include/boost/url/detail/print.hpp
#usr/include/boost/url/detail/replacement_field_rule.hpp
#usr/include/boost/url/detail/segments_iter_impl.hpp
#usr/include/boost/url/detail/segments_range.hpp
@@ -16659,13 +17020,17 @@
#usr/include/boost/url/grammar/detail
#usr/include/boost/url/grammar/detail/charset.hpp
#usr/include/boost/url/grammar/detail/ci_string.hpp
+#usr/include/boost/url/grammar/detail/range_rule.hpp
#usr/include/boost/url/grammar/detail/recycled.hpp
#usr/include/boost/url/grammar/detail/tuple.hpp
#usr/include/boost/url/grammar/digit_chars.hpp
#usr/include/boost/url/grammar/error.hpp
#usr/include/boost/url/grammar/hexdig_chars.hpp
#usr/include/boost/url/grammar/impl
+#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
+#usr/include/boost/url/grammar/impl/delim_rule.hpp
#usr/include/boost/url/grammar/impl/error.hpp
+#usr/include/boost/url/grammar/impl/literal_rule.hpp
#usr/include/boost/url/grammar/impl/not_empty_rule.hpp
#usr/include/boost/url/grammar/impl/optional_rule.hpp
#usr/include/boost/url/grammar/impl/parse.hpp
@@ -16693,17 +17058,30 @@
#usr/include/boost/url/host_type.hpp
#usr/include/boost/url/ignore_case.hpp
#usr/include/boost/url/impl
+#usr/include/boost/url/impl/authority_view.hpp
+#usr/include/boost/url/impl/decode.hpp
#usr/include/boost/url/impl/decode_view.hpp
#usr/include/boost/url/impl/encode.hpp
#usr/include/boost/url/impl/error.hpp
#usr/include/boost/url/impl/params_base.hpp
#usr/include/boost/url/impl/params_encoded_base.hpp
#usr/include/boost/url/impl/params_encoded_ref.hpp
+#usr/include/boost/url/impl/params_encoded_view.hpp
#usr/include/boost/url/impl/params_ref.hpp
+#usr/include/boost/url/impl/params_view.hpp
+#usr/include/boost/url/impl/parse.hpp
+#usr/include/boost/url/impl/scheme.hpp
#usr/include/boost/url/impl/segments_base.hpp
#usr/include/boost/url/impl/segments_encoded_base.hpp
#usr/include/boost/url/impl/segments_encoded_ref.hpp
+#usr/include/boost/url/impl/segments_encoded_view.hpp
#usr/include/boost/url/impl/segments_ref.hpp
+#usr/include/boost/url/impl/segments_view.hpp
+#usr/include/boost/url/impl/static_url.hpp
+#usr/include/boost/url/impl/url.hpp
+#usr/include/boost/url/impl/url_base.hpp
+#usr/include/boost/url/impl/url_view.hpp
+#usr/include/boost/url/impl/url_view_base.hpp
#usr/include/boost/url/ipv4_address.hpp
#usr/include/boost/url/ipv6_address.hpp
#usr/include/boost/url/optional.hpp
@@ -16722,10 +17100,44 @@
#usr/include/boost/url/rfc/absolute_uri_rule.hpp
#usr/include/boost/url/rfc/authority_rule.hpp
#usr/include/boost/url/rfc/detail
+#usr/include/boost/url/rfc/detail/charsets.hpp
+#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
+#usr/include/boost/url/rfc/detail/h16_rule.hpp
+#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
+#usr/include/boost/url/rfc/detail/host_rule.hpp
+#usr/include/boost/url/rfc/detail/impl
+#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
+#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
+#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
+#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
#usr/include/boost/url/rfc/detail/path_rules.hpp
+#usr/include/boost/url/rfc/detail/port_rule.hpp
+#usr/include/boost/url/rfc/detail/query_part_rule.hpp
+#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
+#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
+#usr/include/boost/url/rfc/detail/scheme_rule.hpp
+#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
#usr/include/boost/url/rfc/gen_delim_chars.hpp
#usr/include/boost/url/rfc/impl
+#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
+#usr/include/boost/url/rfc/impl/authority_rule.hpp
+#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
+#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
+#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
#usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
+#usr/include/boost/url/rfc/impl/query_rule.hpp
+#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
+#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
+#usr/include/boost/url/rfc/impl/uri_rule.hpp
#usr/include/boost/url/rfc/ipv4_address_rule.hpp
#usr/include/boost/url/rfc/ipv6_address_rule.hpp
#usr/include/boost/url/rfc/origin_form_rule.hpp
@@ -16788,21 +17200,33 @@
#usr/include/boost/uuid/detail/basic_name_generator.hpp
#usr/include/boost/uuid/detail/chacha20.hpp
#usr/include/boost/uuid/detail/config.hpp
+#usr/include/boost/uuid/detail/cstring.hpp
#usr/include/boost/uuid/detail/endian.hpp
+#usr/include/boost/uuid/detail/from_chars.hpp
+#usr/include/boost/uuid/detail/from_chars_generic.hpp
+#usr/include/boost/uuid/detail/from_chars_result.hpp
+#usr/include/boost/uuid/detail/from_chars_x86.hpp
#usr/include/boost/uuid/detail/hash_mix.hpp
+#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
#usr/include/boost/uuid/detail/md5.hpp
#usr/include/boost/uuid/detail/nil_uuid.hpp
#usr/include/boost/uuid/detail/numeric_cast.hpp
#usr/include/boost/uuid/detail/random_device.hpp
#usr/include/boost/uuid/detail/random_provider.hpp
#usr/include/boost/uuid/detail/sha1.hpp
+#usr/include/boost/uuid/detail/simd_vector.hpp
#usr/include/boost/uuid/detail/static_assert.hpp
+#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
#usr/include/boost/uuid/detail/to_chars.hpp
+#usr/include/boost/uuid/detail/to_chars_generic.hpp
+#usr/include/boost/uuid/detail/to_chars_x86.hpp
+#usr/include/boost/uuid/detail/uuid_from_string.hpp
#usr/include/boost/uuid/detail/uuid_generic.ipp
#usr/include/boost/uuid/detail/uuid_uint128.ipp
#usr/include/boost/uuid/detail/uuid_x86.ipp
#usr/include/boost/uuid/entropy_error.hpp
#usr/include/boost/uuid/generators.hpp
+#usr/include/boost/uuid/invalid_uuid.hpp
#usr/include/boost/uuid/name_generator.hpp
#usr/include/boost/uuid/name_generator_md5.hpp
#usr/include/boost/uuid/name_generator_sha1.hpp
@@ -17304,250 +17728,407 @@
#usr/include/boost/yap/print.hpp
#usr/include/boost/yap/user_macros.hpp
#usr/include/boost/yap/yap.hpp
-#usr/lib/cmake/Boost-1.90.0
-#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
-#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
-#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
-#usr/lib/cmake/boost_atomic-1.90.0
-#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
-#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
-#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
-#usr/lib/cmake/boost_charconv-1.90.0
-#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
-#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
-#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
-#usr/lib/cmake/boost_chrono-1.90.0
-#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
-#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
-#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
-#usr/lib/cmake/boost_container-1.90.0
-#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
-#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
-#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
-#usr/lib/cmake/boost_context-1.90.0
-#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
-#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
-#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
-#usr/lib/cmake/boost_contract-1.90.0
-#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
-#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
-#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
-#usr/lib/cmake/boost_date_time-1.90.0
-#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
-#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
-#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
-#usr/lib/cmake/boost_exception-1.90.0
-#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
-#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0
-#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
-#usr/lib/cmake/boost_graph-1.90.0
-#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
-#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
-#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
-#usr/lib/cmake/boost_headers-1.90.0
-#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
-#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0
-#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
-#usr/lib/cmake/boost_json-1.90.0
-#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
-#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
-#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
-#usr/lib/cmake/boost_locale-1.90.0
-#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
-#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
-#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
-#usr/lib/cmake/boost_log-1.90.0
-#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
-#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
-#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0
-#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
-#usr/lib/cmake/boost_math-1.90.0
-#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
-#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0
-#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0
-#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0
-#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0
-#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0
-#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0
-#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
-#usr/lib/cmake/boost_nowide-1.90.0
-#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
-#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
-#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
-#usr/lib/cmake/boost_numpy-1.90.0
-#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
-#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
-#usr/lib/cmake/boost_process-1.90.0
-#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
-#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
-#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
-#usr/lib/cmake/boost_python-1.90.0
-#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
-#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
-#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
-#usr/lib/cmake/boost_random-1.90.0
-#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
-#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
-#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
-#usr/lib/cmake/boost_regex-1.90.0
-#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
-#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
-#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
-#usr/lib/cmake/boost_serialization-1.90.0
-#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
-#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
-#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
-#usr/lib/cmake/boost_thread-1.90.0
-#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
-#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
-#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
-#usr/lib/cmake/boost_timer-1.90.0
-#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
-#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
-#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0
-#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
-#usr/lib/cmake/boost_url-1.90.0
-#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
-#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
-#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
-#usr/lib/cmake/boost_wave-1.90.0
-#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
-#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
-#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0
-#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
-#usr/lib/libboost_atomic.so
-usr/lib/libboost_atomic.so.1.90.0
-#usr/lib/libboost_charconv.so
-usr/lib/libboost_charconv.so.1.90.0
-#usr/lib/libboost_chrono.so
-usr/lib/libboost_chrono.so.1.90.0
-#usr/lib/libboost_container.so
-usr/lib/libboost_container.so.1.90.0
-#usr/lib/libboost_context.so
-usr/lib/libboost_context.so.1.90.0
-#usr/lib/libboost_contract.so
-usr/lib/libboost_contract.so.1.90.0
-#usr/lib/libboost_date_time.so
-usr/lib/libboost_date_time.so.1.90.0
-#usr/lib/libboost_exception.a
-#usr/lib/libboost_filesystem.so
-usr/lib/libboost_filesystem.so.1.90.0
-#usr/lib/libboost_graph.so
-usr/lib/libboost_graph.so.1.90.0
-#usr/lib/libboost_iostreams.so
-usr/lib/libboost_iostreams.so.1.90.0
-#usr/lib/libboost_json.so
-usr/lib/libboost_json.so.1.90.0
-#usr/lib/libboost_locale.so
-usr/lib/libboost_locale.so.1.90.0
-#usr/lib/libboost_log.so
-usr/lib/libboost_log.so.1.90.0
-#usr/lib/libboost_log_setup.so
-usr/lib/libboost_log_setup.so.1.90.0
-#usr/lib/libboost_math_c99.so
-usr/lib/libboost_math_c99.so.1.90.0
-#usr/lib/libboost_math_c99f.so
-usr/lib/libboost_math_c99f.so.1.90.0
-#usr/lib/libboost_math_c99l.so
-usr/lib/libboost_math_c99l.so.1.90.0
-#usr/lib/libboost_math_tr1.so
-usr/lib/libboost_math_tr1.so.1.90.0
-#usr/lib/libboost_math_tr1f.so
-usr/lib/libboost_math_tr1f.so.1.90.0
-#usr/lib/libboost_math_tr1l.so
-usr/lib/libboost_math_tr1l.so.1.90.0
-#usr/lib/libboost_nowide.so
-usr/lib/libboost_nowide.so.1.90.0
-#usr/lib/libboost_prg_exec_monitor.so
-usr/lib/libboost_prg_exec_monitor.so.1.90.0
-#usr/lib/libboost_process.so
-usr/lib/libboost_process.so.1.90.0
-#usr/lib/libboost_python310.so
-usr/lib/libboost_python310.so.1.90.0
-#usr/lib/libboost_random.so
-usr/lib/libboost_random.so.1.90.0
-#usr/lib/libboost_regex.so
-usr/lib/libboost_regex.so.1.90.0
-#usr/lib/libboost_serialization.so
-usr/lib/libboost_serialization.so.1.90.0
-#usr/lib/libboost_stacktrace_addr2line.so
-usr/lib/libboost_stacktrace_addr2line.so.1.90.0
-#usr/lib/libboost_stacktrace_basic.so
-usr/lib/libboost_stacktrace_basic.so.1.90.0
-#usr/lib/libboost_stacktrace_noop.so
-usr/lib/libboost_stacktrace_noop.so.1.90.0
-#usr/lib/libboost_test_exec_monitor.a
-#usr/lib/libboost_thread.so
-usr/lib/libboost_thread.so.1.90.0
-#usr/lib/libboost_timer.so
-usr/lib/libboost_timer.so.1.90.0
-#usr/lib/libboost_type_erasure.so
-usr/lib/libboost_type_erasure.so.1.90.0
-#usr/lib/libboost_unit_test_framework.so
-usr/lib/libboost_unit_test_framework.so.1.90.0
-#usr/lib/libboost_url.so
-usr/lib/libboost_url.so.1.90.0
-#usr/lib/libboost_wave.so
-usr/lib/libboost_wave.so.1.90.0
-#usr/lib/libboost_wserialization.so
-usr/lib/libboost_wserialization.so.1.90.0
+#usr/lib/cmake/Boost-1.92.0
+#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
+#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
+#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
+#usr/lib/cmake/boost_atomic-1.92.0
+#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-r64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.92.0
+#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-r64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.92.0
+#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-r64-shared.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0
+#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-r64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0
+#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-r64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-r64-shared.cmake
+#usr/lib/cmake/boost_container-1.92.0
+#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
+#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
+#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-r64-shared.cmake
+#usr/lib/cmake/boost_context-1.92.0
+#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
+#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
+#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-r64-shared.cmake
+#usr/lib/cmake/boost_contract-1.92.0
+#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
+#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
+#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-r64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.92.0
+#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-r64-shared.cmake
+#usr/lib/cmake/boost_exception-1.92.0
+#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
+#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0
+#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-r64-shared.cmake
+#usr/lib/cmake/boost_graph-1.92.0
+#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
+#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
+#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-r64-shared.cmake
+#usr/lib/cmake/boost_headers-1.92.0
+#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
+#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0
+#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-r64-shared.cmake
+#usr/lib/cmake/boost_json-1.92.0
+#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
+#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
+#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-r64-shared.cmake
+#usr/lib/cmake/boost_locale-1.92.0
+#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
+#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
+#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-r64-shared.cmake
+#usr/lib/cmake/boost_log-1.92.0
+#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
+#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
+#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-r64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0
+#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math-1.92.0
+#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
+#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0
+#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0
+#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0
+#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0
+#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0
+#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0
+#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-r64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.92.0
+#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-r64-shared.cmake
+#usr/lib/cmake/boost_numpy-1.92.0
+#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
+#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-r64-shared.cmake
+#usr/lib/cmake/boost_process-1.92.0
+#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
+#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
+#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-r64-shared.cmake
+#usr/lib/cmake/boost_python-1.92.0
+#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
+#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
+#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-r64-shared-py3.10.cmake
+#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-r64-shared-py3.10.cmake
+#usr/lib/cmake/boost_random-1.92.0
+#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
+#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
+#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-r64-shared.cmake
+#usr/lib/cmake/boost_regex-1.92.0
+#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
+#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0
+#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-r64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.92.0
+#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-r64-shared.cmake
+#usr/lib/cmake/boost_system-1.92.0
+#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
+#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-r64-shared.cmake
+#usr/lib/cmake/boost_thread-1.92.0
+#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
+#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
+#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-r64-shared.cmake
+#usr/lib/cmake/boost_timer-1.92.0
+#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
+#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
+#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-r64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0
+#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-r64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-r64-shared.cmake
+#usr/lib/cmake/boost_url-1.92.0
+#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
+#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
+#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-r64-shared.cmake
+#usr/lib/cmake/boost_wave-1.92.0
+#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
+#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
+#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-r64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0
+#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-r64-shared.cmake
+#usr/lib/libboost_atomic-mt-r64.so
+usr/lib/libboost_atomic-mt-r64.so.1.92.0
+#usr/lib/libboost_charconv-mt-r64.so
+usr/lib/libboost_charconv-mt-r64.so.1.92.0
+#usr/lib/libboost_charconv-r64.so
+usr/lib/libboost_charconv-r64.so.1.92.0
+#usr/lib/libboost_chrono-mt-r64.so
+usr/lib/libboost_chrono-mt-r64.so.1.92.0
+#usr/lib/libboost_chrono-r64.so
+usr/lib/libboost_chrono-r64.so.1.92.0
+#usr/lib/libboost_cobalt-mt-r64.so
+usr/lib/libboost_cobalt-mt-r64.so.1.92.0
+#usr/lib/libboost_cobalt-r64.so
+usr/lib/libboost_cobalt-r64.so.1.92.0
+#usr/lib/libboost_cobalt_io-mt-r64.so
+usr/lib/libboost_cobalt_io-mt-r64.so.1.92.0
+#usr/lib/libboost_cobalt_io-r64.so
+usr/lib/libboost_cobalt_io-r64.so.1.92.0
+#usr/lib/libboost_cobalt_io_ssl-mt-r64.so
+usr/lib/libboost_cobalt_io_ssl-mt-r64.so.1.92.0
+#usr/lib/libboost_cobalt_io_ssl-r64.so
+usr/lib/libboost_cobalt_io_ssl-r64.so.1.92.0
+#usr/lib/libboost_container-mt-r64.so
+usr/lib/libboost_container-mt-r64.so.1.92.0
+#usr/lib/libboost_container-r64.so
+usr/lib/libboost_container-r64.so.1.92.0
+#usr/lib/libboost_context-mt-r64.so
+usr/lib/libboost_context-mt-r64.so.1.92.0
+#usr/lib/libboost_contract-mt-r64.so
+usr/lib/libboost_contract-mt-r64.so.1.92.0
+#usr/lib/libboost_contract-r64.so
+usr/lib/libboost_contract-r64.so.1.92.0
+#usr/lib/libboost_date_time-mt-r64.so
+usr/lib/libboost_date_time-mt-r64.so.1.92.0
+#usr/lib/libboost_date_time-r64.so
+usr/lib/libboost_date_time-r64.so.1.92.0
+#usr/lib/libboost_exception-mt-r64.a
+#usr/lib/libboost_exception-r64.a
+#usr/lib/libboost_filesystem-mt-r64.so
+usr/lib/libboost_filesystem-mt-r64.so.1.92.0
+#usr/lib/libboost_filesystem-r64.so
+usr/lib/libboost_filesystem-r64.so.1.92.0
+#usr/lib/libboost_graph-mt-r64.so
+usr/lib/libboost_graph-mt-r64.so.1.92.0
+#usr/lib/libboost_graph-r64.so
+usr/lib/libboost_graph-r64.so.1.92.0
+#usr/lib/libboost_iostreams-mt-r64.so
+usr/lib/libboost_iostreams-mt-r64.so.1.92.0
+#usr/lib/libboost_iostreams-r64.so
+usr/lib/libboost_iostreams-r64.so.1.92.0
+#usr/lib/libboost_json-mt-r64.so
+usr/lib/libboost_json-mt-r64.so.1.92.0
+#usr/lib/libboost_json-r64.so
+usr/lib/libboost_json-r64.so.1.92.0
+#usr/lib/libboost_locale-mt-r64.so
+usr/lib/libboost_locale-mt-r64.so.1.92.0
+#usr/lib/libboost_log-mt-r64.so
+usr/lib/libboost_log-mt-r64.so.1.92.0
+#usr/lib/libboost_log-r64.so
+usr/lib/libboost_log-r64.so.1.92.0
+#usr/lib/libboost_log_setup-mt-r64.so
+usr/lib/libboost_log_setup-mt-r64.so.1.92.0
+#usr/lib/libboost_log_setup-r64.so
+usr/lib/libboost_log_setup-r64.so.1.92.0
+#usr/lib/libboost_math_c99-mt-r64.so
+usr/lib/libboost_math_c99-mt-r64.so.1.92.0
+#usr/lib/libboost_math_c99-r64.so
+usr/lib/libboost_math_c99-r64.so.1.92.0
+#usr/lib/libboost_math_c99f-mt-r64.so
+usr/lib/libboost_math_c99f-mt-r64.so.1.92.0
+#usr/lib/libboost_math_c99f-r64.so
+usr/lib/libboost_math_c99f-r64.so.1.92.0
+#usr/lib/libboost_math_c99l-mt-r64.so
+usr/lib/libboost_math_c99l-mt-r64.so.1.92.0
+#usr/lib/libboost_math_c99l-r64.so
+usr/lib/libboost_math_c99l-r64.so.1.92.0
+#usr/lib/libboost_math_tr1-mt-r64.so
+usr/lib/libboost_math_tr1-mt-r64.so.1.92.0
+#usr/lib/libboost_math_tr1-r64.so
+usr/lib/libboost_math_tr1-r64.so.1.92.0
+#usr/lib/libboost_math_tr1f-mt-r64.so
+usr/lib/libboost_math_tr1f-mt-r64.so.1.92.0
+#usr/lib/libboost_math_tr1f-r64.so
+usr/lib/libboost_math_tr1f-r64.so.1.92.0
+#usr/lib/libboost_math_tr1l-mt-r64.so
+usr/lib/libboost_math_tr1l-mt-r64.so.1.92.0
+#usr/lib/libboost_math_tr1l-r64.so
+usr/lib/libboost_math_tr1l-r64.so.1.92.0
+#usr/lib/libboost_nowide-mt-r64.so
+usr/lib/libboost_nowide-mt-r64.so.1.92.0
+#usr/lib/libboost_nowide-r64.so
+usr/lib/libboost_nowide-r64.so.1.92.0
+#usr/lib/libboost_prg_exec_monitor-mt-r64.so
+usr/lib/libboost_prg_exec_monitor-mt-r64.so.1.92.0
+#usr/lib/libboost_prg_exec_monitor-r64.so
+usr/lib/libboost_prg_exec_monitor-r64.so.1.92.0
+#usr/lib/libboost_process-mt-r64.so
+usr/lib/libboost_process-mt-r64.so.1.92.0
+#usr/lib/libboost_process-r64.so
+usr/lib/libboost_process-r64.so.1.92.0
+#usr/lib/libboost_python310-mt-r64.so
+usr/lib/libboost_python310-mt-r64.so.1.92.0
+#usr/lib/libboost_python310-r64.so
+usr/lib/libboost_python310-r64.so.1.92.0
+#usr/lib/libboost_random-mt-r64.so
+usr/lib/libboost_random-mt-r64.so.1.92.0
+#usr/lib/libboost_random-r64.so
+usr/lib/libboost_random-r64.so.1.92.0
+#usr/lib/libboost_regex-mt-r64.so
+usr/lib/libboost_regex-mt-r64.so.1.92.0
+#usr/lib/libboost_regex-r64.so
+usr/lib/libboost_regex-r64.so.1.92.0
+#usr/lib/libboost_serialization-mt-r64.so
+usr/lib/libboost_serialization-mt-r64.so.1.92.0
+#usr/lib/libboost_serialization-r64.so
+usr/lib/libboost_serialization-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_addr2line-mt-r64.so
+usr/lib/libboost_stacktrace_addr2line-mt-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_addr2line-r64.so
+usr/lib/libboost_stacktrace_addr2line-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_basic-mt-r64.so
+usr/lib/libboost_stacktrace_basic-mt-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_basic-r64.so
+usr/lib/libboost_stacktrace_basic-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_dump-mt-r64.so
+usr/lib/libboost_stacktrace_dump-mt-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_dump-r64.so
+usr/lib/libboost_stacktrace_dump-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_from_exception-mt-r64.so
+usr/lib/libboost_stacktrace_from_exception-mt-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_from_exception-r64.so
+usr/lib/libboost_stacktrace_from_exception-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_noop-mt-r64.so
+usr/lib/libboost_stacktrace_noop-mt-r64.so.1.92.0
+#usr/lib/libboost_stacktrace_noop-r64.so
+usr/lib/libboost_stacktrace_noop-r64.so.1.92.0
+#usr/lib/libboost_test_exec_monitor-mt-r64.a
+#usr/lib/libboost_test_exec_monitor-r64.a
+#usr/lib/libboost_thread-mt-r64.so
+usr/lib/libboost_thread-mt-r64.so.1.92.0
+#usr/lib/libboost_timer-mt-r64.so
+usr/lib/libboost_timer-mt-r64.so.1.92.0
+#usr/lib/libboost_timer-r64.so
+usr/lib/libboost_timer-r64.so.1.92.0
+#usr/lib/libboost_type_erasure-mt-r64.so
+usr/lib/libboost_type_erasure-mt-r64.so.1.92.0
+#usr/lib/libboost_type_erasure-r64.so
+usr/lib/libboost_type_erasure-r64.so.1.92.0
+#usr/lib/libboost_unit_test_framework-mt-r64.so
+usr/lib/libboost_unit_test_framework-mt-r64.so.1.92.0
+#usr/lib/libboost_unit_test_framework-r64.so
+usr/lib/libboost_unit_test_framework-r64.so.1.92.0
+#usr/lib/libboost_url-mt-r64.so
+usr/lib/libboost_url-mt-r64.so.1.92.0
+#usr/lib/libboost_url-r64.so
+usr/lib/libboost_url-r64.so.1.92.0
+#usr/lib/libboost_wave-mt-r64.so
+usr/lib/libboost_wave-mt-r64.so.1.92.0
+#usr/lib/libboost_wave-r64.so
+usr/lib/libboost_wave-r64.so.1.92.0
+#usr/lib/libboost_wserialization-mt-r64.so
+usr/lib/libboost_wserialization-mt-r64.so.1.92.0
+#usr/lib/libboost_wserialization-r64.so
+usr/lib/libboost_wserialization-r64.so.1.92.0
#usr/share/boost_predef
#usr/share/boost_predef/build.jam
#usr/share/boost_predef/tools
@@ -439,6 +439,7 @@
#usr/include/boost/asio/detail/array_fwd.hpp
#usr/include/boost/asio/detail/assert.hpp
#usr/include/boost/asio/detail/atomic_count.hpp
+#usr/include/boost/asio/detail/atomic_slim_mutex.hpp
#usr/include/boost/asio/detail/base_from_cancellation_state.hpp
#usr/include/boost/asio/detail/base_from_completion_cond.hpp
#usr/include/boost/asio/detail/bind_handler.hpp
@@ -477,6 +478,7 @@
#usr/include/boost/asio/detail/fd_set_adapter.hpp
#usr/include/boost/asio/detail/fenced_block.hpp
#usr/include/boost/asio/detail/functional.hpp
+#usr/include/boost/asio/detail/futex_slim_mutex.hpp
#usr/include/boost/asio/detail/future.hpp
#usr/include/boost/asio/detail/global.hpp
#usr/include/boost/asio/detail/handler_alloc_helpers.hpp
@@ -527,6 +529,7 @@
#usr/include/boost/asio/detail/impl/thread_context.ipp
#usr/include/boost/asio/detail/impl/throw_error.ipp
#usr/include/boost/asio/detail/impl/timer_queue_set.ipp
+#usr/include/boost/asio/detail/impl/win_critsec_mutex.ipp
#usr/include/boost/asio/detail/impl/win_event.ipp
#usr/include/boost/asio/detail/impl/win_iocp_file_service.ipp
#usr/include/boost/asio/detail/impl/win_iocp_handle_service.ipp
@@ -534,7 +537,6 @@
#usr/include/boost/asio/detail/impl/win_iocp_io_context.ipp
#usr/include/boost/asio/detail/impl/win_iocp_serial_port_service.ipp
#usr/include/boost/asio/detail/impl/win_iocp_socket_service_base.ipp
-#usr/include/boost/asio/detail/impl/win_mutex.ipp
#usr/include/boost/asio/detail/impl/win_object_handle_service.ipp
#usr/include/boost/asio/detail/impl/win_static_mutex.ipp
#usr/include/boost/asio/detail/impl/win_thread.ipp
@@ -641,6 +643,7 @@
#usr/include/boost/asio/detail/signal_init.hpp
#usr/include/boost/asio/detail/signal_op.hpp
#usr/include/boost/asio/detail/signal_set_service.hpp
+#usr/include/boost/asio/detail/slim_mutex.hpp
#usr/include/boost/asio/detail/socket_holder.hpp
#usr/include/boost/asio/detail/socket_ops.hpp
#usr/include/boost/asio/detail/socket_option.hpp
@@ -674,6 +677,7 @@
#usr/include/boost/asio/detail/utility.hpp
#usr/include/boost/asio/detail/wait_handler.hpp
#usr/include/boost/asio/detail/wait_op.hpp
+#usr/include/boost/asio/detail/win_critsec_mutex.hpp
#usr/include/boost/asio/detail/win_event.hpp
#usr/include/boost/asio/detail/win_fd_set_adapter.hpp
#usr/include/boost/asio/detail/win_global.hpp
@@ -731,8 +735,6 @@
#usr/include/boost/asio/execution/context.hpp
#usr/include/boost/asio/execution/context_as.hpp
#usr/include/boost/asio/execution/executor.hpp
-#usr/include/boost/asio/execution/impl
-#usr/include/boost/asio/execution/impl/bad_executor.ipp
#usr/include/boost/asio/execution/inline_exception_handling.hpp
#usr/include/boost/asio/execution/invocable_archetype.hpp
#usr/include/boost/asio/execution/mapping.hpp
@@ -782,6 +784,7 @@
#usr/include/boost/asio/experimental/use_coro.hpp
#usr/include/boost/asio/experimental/use_promise.hpp
#usr/include/boost/asio/file_base.hpp
+#usr/include/boost/asio/fwd.hpp
#usr/include/boost/asio/generic
#usr/include/boost/asio/generic/basic_endpoint.hpp
#usr/include/boost/asio/generic/datagram_protocol.hpp
@@ -820,10 +823,8 @@
#usr/include/boost/asio/impl/execution_context.hpp
#usr/include/boost/asio/impl/execution_context.ipp
#usr/include/boost/asio/impl/executor.hpp
-#usr/include/boost/asio/impl/executor.ipp
#usr/include/boost/asio/impl/io_context.hpp
#usr/include/boost/asio/impl/io_context.ipp
-#usr/include/boost/asio/impl/multiple_exceptions.ipp
#usr/include/boost/asio/impl/prepend.hpp
#usr/include/boost/asio/impl/read.hpp
#usr/include/boost/asio/impl/read_at.hpp
@@ -1511,6 +1512,7 @@
#usr/include/boost/bimap/detail/map_view_base.hpp
#usr/include/boost/bimap/detail/map_view_iterator.hpp
#usr/include/boost/bimap/detail/modifier_adaptor.hpp
+#usr/include/boost/bimap/detail/mpl_to_mp11_list.hpp
#usr/include/boost/bimap/detail/non_unique_views_helper.hpp
#usr/include/boost/bimap/detail/set_view_base.hpp
#usr/include/boost/bimap/detail/set_view_iterator.hpp
@@ -2390,11 +2392,13 @@
#usr/include/boost/container/detail/addressof.hpp
#usr/include/boost/container/detail/advanced_insert_int.hpp
#usr/include/boost/container/detail/algorithm.hpp
+#usr/include/boost/container/detail/aligned_allocation.hpp
#usr/include/boost/container/detail/alloc_helpers.hpp
#usr/include/boost/container/detail/alloc_lib.h
#usr/include/boost/container/detail/allocation_type.hpp
#usr/include/boost/container/detail/allocator_version_traits.hpp
#usr/include/boost/container/detail/auto_link.hpp
+#usr/include/boost/container/detail/bit_utilities.hpp
#usr/include/boost/container/detail/block_list.hpp
#usr/include/boost/container/detail/block_slist.hpp
#usr/include/boost/container/detail/compare_functors.hpp
@@ -2404,12 +2408,14 @@
#usr/include/boost/container/detail/container_or_allocator_rebind.hpp
#usr/include/boost/container/detail/container_rebind.hpp
#usr/include/boost/container/detail/copy_move_algo.hpp
+#usr/include/boost/container/detail/deque_impl.hpp
#usr/include/boost/container/detail/destroyers.hpp
#usr/include/boost/container/detail/dispatch_uses_allocator.hpp
#usr/include/boost/container/detail/dlmalloc.hpp
#usr/include/boost/container/detail/flat_tree.hpp
#usr/include/boost/container/detail/function_detector.hpp
#usr/include/boost/container/detail/guards_dended.hpp
+#usr/include/boost/container/detail/is_constructible.hpp
#usr/include/boost/container/detail/is_container.hpp
#usr/include/boost/container/detail/is_contiguous_container.hpp
#usr/include/boost/container/detail/is_pair.hpp
@@ -2434,6 +2440,7 @@
#usr/include/boost/container/detail/pool_common.hpp
#usr/include/boost/container/detail/pool_common_alloc.hpp
#usr/include/boost/container/detail/pool_resource.hpp
+#usr/include/boost/container/detail/range_utils.hpp
#usr/include/boost/container/detail/singleton.hpp
#usr/include/boost/container/detail/std_fwd.hpp
#usr/include/boost/container/detail/thread_mutex.hpp
@@ -2446,8 +2453,60 @@
#usr/include/boost/container/detail/version_type.hpp
#usr/include/boost/container/detail/workaround.hpp
#usr/include/boost/container/devector.hpp
+#usr/include/boost/container/experimental
+#usr/include/boost/container/experimental/nest.hpp
+#usr/include/boost/container/experimental/pmr
+#usr/include/boost/container/experimental/pmr/nest.hpp
+#usr/include/boost/container/experimental/segmented_all_of.hpp
+#usr/include/boost/container/experimental/segmented_any_of.hpp
+#usr/include/boost/container/experimental/segmented_copy.hpp
+#usr/include/boost/container/experimental/segmented_copy_if.hpp
+#usr/include/boost/container/experimental/segmented_copy_n.hpp
+#usr/include/boost/container/experimental/segmented_count.hpp
+#usr/include/boost/container/experimental/segmented_count_if.hpp
+#usr/include/boost/container/experimental/segmented_equal.hpp
+#usr/include/boost/container/experimental/segmented_fill.hpp
+#usr/include/boost/container/experimental/segmented_fill_n.hpp
+#usr/include/boost/container/experimental/segmented_find.hpp
+#usr/include/boost/container/experimental/segmented_find_if.hpp
+#usr/include/boost/container/experimental/segmented_find_if_not.hpp
+#usr/include/boost/container/experimental/segmented_find_last.hpp
+#usr/include/boost/container/experimental/segmented_find_last_if.hpp
+#usr/include/boost/container/experimental/segmented_find_last_if_not.hpp
+#usr/include/boost/container/experimental/segmented_for_each.hpp
+#usr/include/boost/container/experimental/segmented_generate.hpp
+#usr/include/boost/container/experimental/segmented_generate_n.hpp
+#usr/include/boost/container/experimental/segmented_is_partitioned.hpp
+#usr/include/boost/container/experimental/segmented_is_sorted.hpp
+#usr/include/boost/container/experimental/segmented_is_sorted_until.hpp
+#usr/include/boost/container/experimental/segmented_iterator_traits.hpp
+#usr/include/boost/container/experimental/segmented_merge.hpp
+#usr/include/boost/container/experimental/segmented_mismatch.hpp
+#usr/include/boost/container/experimental/segmented_none_of.hpp
+#usr/include/boost/container/experimental/segmented_partition.hpp
+#usr/include/boost/container/experimental/segmented_partition_copy.hpp
+#usr/include/boost/container/experimental/segmented_partition_point.hpp
+#usr/include/boost/container/experimental/segmented_remove.hpp
+#usr/include/boost/container/experimental/segmented_remove_copy.hpp
+#usr/include/boost/container/experimental/segmented_remove_copy_if.hpp
+#usr/include/boost/container/experimental/segmented_remove_if.hpp
+#usr/include/boost/container/experimental/segmented_replace.hpp
+#usr/include/boost/container/experimental/segmented_replace_if.hpp
+#usr/include/boost/container/experimental/segmented_reverse.hpp
+#usr/include/boost/container/experimental/segmented_reverse_copy.hpp
+#usr/include/boost/container/experimental/segmented_search.hpp
+#usr/include/boost/container/experimental/segmented_search_n.hpp
+#usr/include/boost/container/experimental/segmented_set_difference.hpp
+#usr/include/boost/container/experimental/segmented_set_intersection.hpp
+#usr/include/boost/container/experimental/segmented_set_symmetric_difference.hpp
+#usr/include/boost/container/experimental/segmented_set_union.hpp
+#usr/include/boost/container/experimental/segmented_stable_partition.hpp
+#usr/include/boost/container/experimental/segmented_swap_ranges.hpp
+#usr/include/boost/container/experimental/segmented_transform.hpp
+#usr/include/boost/container/experimental/wrapped_iterator.hpp
#usr/include/boost/container/flat_map.hpp
#usr/include/boost/container/flat_set.hpp
+#usr/include/boost/container/hub.hpp
#usr/include/boost/container/list.hpp
#usr/include/boost/container/map.hpp
#usr/include/boost/container/new_allocator.hpp
@@ -2460,6 +2519,7 @@
#usr/include/boost/container/pmr/flat_map.hpp
#usr/include/boost/container/pmr/flat_set.hpp
#usr/include/boost/container/pmr/global_resource.hpp
+#usr/include/boost/container/pmr/hub.hpp
#usr/include/boost/container/pmr/list.hpp
#usr/include/boost/container/pmr/map.hpp
#usr/include/boost/container/pmr/memory_resource.hpp
@@ -2467,6 +2527,7 @@
#usr/include/boost/container/pmr/polymorphic_allocator.hpp
#usr/include/boost/container/pmr/pool_options.hpp
#usr/include/boost/container/pmr/resource_adaptor.hpp
+#usr/include/boost/container/pmr/segtor.hpp
#usr/include/boost/container/pmr/set.hpp
#usr/include/boost/container/pmr/slist.hpp
#usr/include/boost/container/pmr/small_vector.hpp
@@ -2477,6 +2538,7 @@
#usr/include/boost/container/pmr/vector.hpp
#usr/include/boost/container/scoped_allocator.hpp
#usr/include/boost/container/scoped_allocator_fwd.hpp
+#usr/include/boost/container/segtor.hpp
#usr/include/boost/container/set.hpp
#usr/include/boost/container/slist.hpp
#usr/include/boost/container/small_vector.hpp
@@ -2485,6 +2547,7 @@
#usr/include/boost/container/string.hpp
#usr/include/boost/container/throw_exception.hpp
#usr/include/boost/container/uses_allocator.hpp
+#usr/include/boost/container/uses_allocator_construction.hpp
#usr/include/boost/container/uses_allocator_fwd.hpp
#usr/include/boost/container/vector.hpp
#usr/include/boost/container_hash
@@ -2605,6 +2668,9 @@
#usr/include/boost/contract/override.hpp
#usr/include/boost/contract/public_function.hpp
#usr/include/boost/contract_macro.hpp
+#usr/include/boost/conversion
+#usr/include/boost/conversion/detail
+#usr/include/boost/conversion/detail/config.hpp
#usr/include/boost/convert
#usr/include/boost/convert.hpp
#usr/include/boost/convert/base.hpp
@@ -2865,6 +2931,211 @@
#usr/include/boost/date_time/tz_db_base.hpp
#usr/include/boost/date_time/wrapping_int.hpp
#usr/include/boost/date_time/year_month_day.hpp
+#usr/include/boost/decimal
+#usr/include/boost/decimal.hpp
+#usr/include/boost/decimal/bid_conversion.hpp
+#usr/include/boost/decimal/cfenv.hpp
+#usr/include/boost/decimal/cfloat.hpp
+#usr/include/boost/decimal/charconv.hpp
+#usr/include/boost/decimal/cmath.hpp
+#usr/include/boost/decimal/cstdio.hpp
+#usr/include/boost/decimal/cstdlib.hpp
+#usr/include/boost/decimal/decimal128_t.hpp
+#usr/include/boost/decimal/decimal32_t.hpp
+#usr/include/boost/decimal/decimal64_t.hpp
+#usr/include/boost/decimal/decimal_fast128_t.hpp
+#usr/include/boost/decimal/decimal_fast32_t.hpp
+#usr/include/boost/decimal/decimal_fast64_t.hpp
+#usr/include/boost/decimal/detail
+#usr/include/boost/decimal/detail/add_impl.hpp
+#usr/include/boost/decimal/detail/apply_sign.hpp
+#usr/include/boost/decimal/detail/attributes.hpp
+#usr/include/boost/decimal/detail/bit_cast.hpp
+#usr/include/boost/decimal/detail/bit_layouts.hpp
+#usr/include/boost/decimal/detail/buffer_sizing.hpp
+#usr/include/boost/decimal/detail/chars_format.hpp
+#usr/include/boost/decimal/detail/check_non_finite.hpp
+#usr/include/boost/decimal/detail/cmath
+#usr/include/boost/decimal/detail/cmath/abs.hpp
+#usr/include/boost/decimal/detail/cmath/acos.hpp
+#usr/include/boost/decimal/detail/cmath/acosh.hpp
+#usr/include/boost/decimal/detail/cmath/asin.hpp
+#usr/include/boost/decimal/detail/cmath/asinh.hpp
+#usr/include/boost/decimal/detail/cmath/assoc_laguerre.hpp
+#usr/include/boost/decimal/detail/cmath/assoc_legendre.hpp
+#usr/include/boost/decimal/detail/cmath/atan.hpp
+#usr/include/boost/decimal/detail/cmath/atan2.hpp
+#usr/include/boost/decimal/detail/cmath/atanh.hpp
+#usr/include/boost/decimal/detail/cmath/beta.hpp
+#usr/include/boost/decimal/detail/cmath/cbrt.hpp
+#usr/include/boost/decimal/detail/cmath/ceil.hpp
+#usr/include/boost/decimal/detail/cmath/comparetotal.hpp
+#usr/include/boost/decimal/detail/cmath/cos.hpp
+#usr/include/boost/decimal/detail/cmath/cosh.hpp
+#usr/include/boost/decimal/detail/cmath/decompose.hpp
+#usr/include/boost/decimal/detail/cmath/ellint_1.hpp
+#usr/include/boost/decimal/detail/cmath/ellint_2.hpp
+#usr/include/boost/decimal/detail/cmath/erf.hpp
+#usr/include/boost/decimal/detail/cmath/exp.hpp
+#usr/include/boost/decimal/detail/cmath/exp2.hpp
+#usr/include/boost/decimal/detail/cmath/expm1.hpp
+#usr/include/boost/decimal/detail/cmath/fabs.hpp
+#usr/include/boost/decimal/detail/cmath/fdim.hpp
+#usr/include/boost/decimal/detail/cmath/floor.hpp
+#usr/include/boost/decimal/detail/cmath/fma.hpp
+#usr/include/boost/decimal/detail/cmath/fmax.hpp
+#usr/include/boost/decimal/detail/cmath/fmin.hpp
+#usr/include/boost/decimal/detail/cmath/fmod.hpp
+#usr/include/boost/decimal/detail/cmath/fpclassify.hpp
+#usr/include/boost/decimal/detail/cmath/frexp.hpp
+#usr/include/boost/decimal/detail/cmath/frexp10.hpp
+#usr/include/boost/decimal/detail/cmath/hermite.hpp
+#usr/include/boost/decimal/detail/cmath/hypot.hpp
+#usr/include/boost/decimal/detail/cmath/ilogb.hpp
+#usr/include/boost/decimal/detail/cmath/impl
+#usr/include/boost/decimal/detail/cmath/impl/approx_recip_sqrt_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/asin_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/assoc_legendre_lookup.hpp
+#usr/include/boost/decimal/detail/cmath/impl/atan_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/cos_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/cosh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/ellint_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/evaluate_polynomial.hpp
+#usr/include/boost/decimal/detail/cmath/impl/expm1_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/kahan_sum.hpp
+#usr/include/boost/decimal/detail/cmath/impl/lgamma_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/log1p_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/log_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/pow_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/remez_series_result.hpp
+#usr/include/boost/decimal/detail/cmath/impl/riemann_zeta_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sin_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sinh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt128_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt32_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt64_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/sqrt_lookup.hpp
+#usr/include/boost/decimal/detail/cmath/impl/tanh_impl.hpp
+#usr/include/boost/decimal/detail/cmath/impl/taylor_series_result.hpp
+#usr/include/boost/decimal/detail/cmath/impl/tgamma_impl.hpp
+#usr/include/boost/decimal/detail/cmath/isfinite.hpp
+#usr/include/boost/decimal/detail/cmath/isgreater.hpp
+#usr/include/boost/decimal/detail/cmath/isless.hpp
+#usr/include/boost/decimal/detail/cmath/isunordered.hpp
+#usr/include/boost/decimal/detail/cmath/laguerre.hpp
+#usr/include/boost/decimal/detail/cmath/ldexp.hpp
+#usr/include/boost/decimal/detail/cmath/legendre.hpp
+#usr/include/boost/decimal/detail/cmath/lgamma.hpp
+#usr/include/boost/decimal/detail/cmath/log.hpp
+#usr/include/boost/decimal/detail/cmath/log10.hpp
+#usr/include/boost/decimal/detail/cmath/log1p.hpp
+#usr/include/boost/decimal/detail/cmath/log2.hpp
+#usr/include/boost/decimal/detail/cmath/logb.hpp
+#usr/include/boost/decimal/detail/cmath/modf.hpp
+#usr/include/boost/decimal/detail/cmath/nan.hpp
+#usr/include/boost/decimal/detail/cmath/nearbyint.hpp
+#usr/include/boost/decimal/detail/cmath/next.hpp
+#usr/include/boost/decimal/detail/cmath/normalize.hpp
+#usr/include/boost/decimal/detail/cmath/pow.hpp
+#usr/include/boost/decimal/detail/cmath/remainder.hpp
+#usr/include/boost/decimal/detail/cmath/remquo.hpp
+#usr/include/boost/decimal/detail/cmath/rescale.hpp
+#usr/include/boost/decimal/detail/cmath/riemann_zeta.hpp
+#usr/include/boost/decimal/detail/cmath/rint.hpp
+#usr/include/boost/decimal/detail/cmath/round.hpp
+#usr/include/boost/decimal/detail/cmath/sin.hpp
+#usr/include/boost/decimal/detail/cmath/sinh.hpp
+#usr/include/boost/decimal/detail/cmath/sqrt.hpp
+#usr/include/boost/decimal/detail/cmath/tan.hpp
+#usr/include/boost/decimal/detail/cmath/tanh.hpp
+#usr/include/boost/decimal/detail/cmath/tgamma.hpp
+#usr/include/boost/decimal/detail/cmath/trunc.hpp
+#usr/include/boost/decimal/detail/comparison.hpp
+#usr/include/boost/decimal/detail/components.hpp
+#usr/include/boost/decimal/detail/concepts.hpp
+#usr/include/boost/decimal/detail/config.hpp
+#usr/include/boost/decimal/detail/construction_sign.hpp
+#usr/include/boost/decimal/detail/countl.hpp
+#usr/include/boost/decimal/detail/div_impl.hpp
+#usr/include/boost/decimal/detail/fast_float
+#usr/include/boost/decimal/detail/fast_float/compute_float32.hpp
+#usr/include/boost/decimal/detail/fast_float/compute_float64.hpp
+#usr/include/boost/decimal/detail/fast_float/compute_float80_128.hpp
+#usr/include/boost/decimal/detail/fast_float/significand_tables.hpp
+#usr/include/boost/decimal/detail/fenv_rounding.hpp
+#usr/include/boost/decimal/detail/formatting_limits.hpp
+#usr/include/boost/decimal/detail/from_chars_impl.hpp
+#usr/include/boost/decimal/detail/from_chars_integer_impl.hpp
+#usr/include/boost/decimal/detail/from_chars_result.hpp
+#usr/include/boost/decimal/detail/fwd_log.hpp
+#usr/include/boost/decimal/detail/i256.hpp
+#usr/include/boost/decimal/detail/int128
+#usr/include/boost/decimal/detail/int128.hpp
+#usr/include/boost/decimal/detail/int128/bit.hpp
+#usr/include/boost/decimal/detail/int128/climits.hpp
+#usr/include/boost/decimal/detail/int128/cstdlib.hpp
+#usr/include/boost/decimal/detail/int128/detail
+#usr/include/boost/decimal/detail/int128/detail/clz.hpp
+#usr/include/boost/decimal/detail/int128/detail/common_div.hpp
+#usr/include/boost/decimal/detail/int128/detail/common_mul.hpp
+#usr/include/boost/decimal/detail/int128/detail/config.hpp
+#usr/include/boost/decimal/detail/int128/detail/constants.hpp
+#usr/include/boost/decimal/detail/int128/detail/conversions.hpp
+#usr/include/boost/decimal/detail/int128/detail/ctz.hpp
+#usr/include/boost/decimal/detail/int128/detail/fwd.hpp
+#usr/include/boost/decimal/detail/int128/detail/int128_imp.hpp
+#usr/include/boost/decimal/detail/int128/detail/mini_from_chars.hpp
+#usr/include/boost/decimal/detail/int128/detail/mini_to_chars.hpp
+#usr/include/boost/decimal/detail/int128/detail/traits.hpp
+#usr/include/boost/decimal/detail/int128/detail/uint128_imp.hpp
+#usr/include/boost/decimal/detail/int128/detail/utilities.hpp
+#usr/include/boost/decimal/detail/int128/fmt_format.hpp
+#usr/include/boost/decimal/detail/int128/format.hpp
+#usr/include/boost/decimal/detail/int128/int128.hpp
+#usr/include/boost/decimal/detail/int128/iostream.hpp
+#usr/include/boost/decimal/detail/int128/limits.hpp
+#usr/include/boost/decimal/detail/int128/literals.hpp
+#usr/include/boost/decimal/detail/int128/numeric.hpp
+#usr/include/boost/decimal/detail/int128/random.hpp
+#usr/include/boost/decimal/detail/int128/string.hpp
+#usr/include/boost/decimal/detail/integer_search_trees.hpp
+#usr/include/boost/decimal/detail/io.hpp
+#usr/include/boost/decimal/detail/is_power_of_10.hpp
+#usr/include/boost/decimal/detail/locale_conversion.hpp
+#usr/include/boost/decimal/detail/memcpy.hpp
+#usr/include/boost/decimal/detail/mixed_decimal_arithmetic.hpp
+#usr/include/boost/decimal/detail/mod_impl.hpp
+#usr/include/boost/decimal/detail/mul_impl.hpp
+#usr/include/boost/decimal/detail/normalize.hpp
+#usr/include/boost/decimal/detail/parser.hpp
+#usr/include/boost/decimal/detail/power_tables.hpp
+#usr/include/boost/decimal/detail/promote_significand.hpp
+#usr/include/boost/decimal/detail/promotion.hpp
+#usr/include/boost/decimal/detail/quantize_impl.hpp
+#usr/include/boost/decimal/detail/remove_trailing_zeros.hpp
+#usr/include/boost/decimal/detail/ryu
+#usr/include/boost/decimal/detail/ryu/generic_128.hpp
+#usr/include/boost/decimal/detail/ryu/ryu_generic_128.hpp
+#usr/include/boost/decimal/detail/shrink_significand.hpp
+#usr/include/boost/decimal/detail/to_chars_integer_impl.hpp
+#usr/include/boost/decimal/detail/to_chars_result.hpp
+#usr/include/boost/decimal/detail/to_decimal.hpp
+#usr/include/boost/decimal/detail/to_float.hpp
+#usr/include/boost/decimal/detail/to_integral.hpp
+#usr/include/boost/decimal/detail/type_traits.hpp
+#usr/include/boost/decimal/detail/u256.hpp
+#usr/include/boost/decimal/detail/utilities.hpp
+#usr/include/boost/decimal/detail/write_payload.hpp
+#usr/include/boost/decimal/dpd_conversion.hpp
+#usr/include/boost/decimal/fmt_format.hpp
+#usr/include/boost/decimal/format.hpp
+#usr/include/boost/decimal/fwd.hpp
+#usr/include/boost/decimal/hash.hpp
+#usr/include/boost/decimal/iostream.hpp
+#usr/include/boost/decimal/literals.hpp
+#usr/include/boost/decimal/numbers.hpp
+#usr/include/boost/decimal/string.hpp
+#usr/include/boost/decimal/uint128_t.hpp
#usr/include/boost/describe
#usr/include/boost/describe.hpp
#usr/include/boost/describe/bases.hpp
@@ -2909,7 +3180,6 @@
#usr/include/boost/detail/is_sorted.hpp
#usr/include/boost/detail/is_xxx.hpp
#usr/include/boost/detail/iterator.hpp
-#usr/include/boost/detail/lcast_precision.hpp
#usr/include/boost/detail/lightweight_main.hpp
#usr/include/boost/detail/lightweight_mutex.hpp
#usr/include/boost/detail/lightweight_test.hpp
@@ -2993,6 +3263,7 @@
#usr/include/boost/dll/config.hpp
#usr/include/boost/dll/detail
#usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
+#usr/include/boost/dll/detail/config.hpp
#usr/include/boost/dll/detail/ctor_dtor.hpp
#usr/include/boost/dll/detail/demangling
#usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
@@ -3057,6 +3328,7 @@
#usr/include/boost/exception/current_exception_cast.hpp
#usr/include/boost/exception/detail
#usr/include/boost/exception/detail/clone_current_exception.hpp
+#usr/include/boost/exception/detail/encoder.hpp
#usr/include/boost/exception/detail/error_info_impl.hpp
#usr/include/boost/exception/detail/exception_ptr.hpp
#usr/include/boost/exception/detail/is_output_streamable.hpp
@@ -3080,6 +3352,9 @@
#usr/include/boost/exception/get_error_info.hpp
#usr/include/boost/exception/info.hpp
#usr/include/boost/exception/info_tuple.hpp
+#usr/include/boost/exception/serialization
+#usr/include/boost/exception/serialization/boost_json_encoder.hpp
+#usr/include/boost/exception/serialization/nlohmann_json_encoder.hpp
#usr/include/boost/exception/to_string.hpp
#usr/include/boost/exception/to_string_stub.hpp
#usr/include/boost/exception_ptr.hpp
@@ -5091,8 +5366,6 @@
#usr/include/boost/geometry/index/detail/tags.hpp
#usr/include/boost/geometry/index/detail/translator.hpp
#usr/include/boost/geometry/index/detail/utilities.hpp
-#usr/include/boost/geometry/index/detail/varray.hpp
-#usr/include/boost/geometry/index/detail/varray_detail.hpp
#usr/include/boost/geometry/index/distance_predicates.hpp
#usr/include/boost/geometry/index/equal_to.hpp
#usr/include/boost/geometry/index/indexable.hpp
@@ -6077,6 +6350,8 @@
#usr/include/boost/graph/leda_graph.hpp
#usr/include/boost/graph/lookup_edge.hpp
#usr/include/boost/graph/loop_erased_random_walk.hpp
+#usr/include/boost/graph/louvain_clustering.hpp
+#usr/include/boost/graph/louvain_quality_functions.hpp
#usr/include/boost/graph/make_biconnected_planar.hpp
#usr/include/boost/graph/make_connected.hpp
#usr/include/boost/graph/make_maximal_planar.hpp
@@ -6679,6 +6954,7 @@
#usr/include/boost/heap/detail
#usr/include/boost/heap/detail/heap_comparison.hpp
#usr/include/boost/heap/detail/heap_node.hpp
+#usr/include/boost/heap/detail/heap_utils.hpp
#usr/include/boost/heap/detail/ilog2.hpp
#usr/include/boost/heap/detail/mutable_heap.hpp
#usr/include/boost/heap/detail/ordered_adaptor_iterator.hpp
@@ -6888,8 +7164,10 @@
#usr/include/boost/icl/concept/set_value.hpp
#usr/include/boost/icl/continuous_interval.hpp
#usr/include/boost/icl/detail
+#usr/include/boost/icl/detail/assoc_container_adaptor.hpp
#usr/include/boost/icl/detail/associated_value.hpp
#usr/include/boost/icl/detail/boost_config.hpp
+#usr/include/boost/icl/detail/co_equal_fwd.hpp
#usr/include/boost/icl/detail/concept_check.hpp
#usr/include/boost/icl/detail/design_config.hpp
#usr/include/boost/icl/detail/element_comparer.hpp
@@ -6899,12 +7177,14 @@
#usr/include/boost/icl/detail/interval_morphism.hpp
#usr/include/boost/icl/detail/interval_set_algo.hpp
#usr/include/boost/icl/detail/interval_subset_comparer.hpp
+#usr/include/boost/icl/detail/map_adaptor.hpp
#usr/include/boost/icl/detail/map_algo.hpp
#usr/include/boost/icl/detail/mapped_reference.hpp
#usr/include/boost/icl/detail/notate.hpp
#usr/include/boost/icl/detail/on_absorbtion.hpp
#usr/include/boost/icl/detail/relation_state.hpp
#usr/include/boost/icl/detail/requires_cxx11.hpp
+#usr/include/boost/icl/detail/set_adaptor.hpp
#usr/include/boost/icl/detail/set_algo.hpp
#usr/include/boost/icl/detail/std_set.hpp
#usr/include/boost/icl/detail/subset_comparer.hpp
@@ -7585,6 +7865,7 @@
#usr/include/boost/json/impl/value_ref.ipp
#usr/include/boost/json/impl/value_stack.ipp
#usr/include/boost/json/impl/visit.hpp
+#usr/include/boost/json/impl/visit.ipp
#usr/include/boost/json/is_deallocate_trivial.hpp
#usr/include/boost/json/kind.hpp
#usr/include/boost/json/monotonic_resource.hpp
@@ -7660,15 +7941,20 @@
#usr/include/boost/leaf/config/tls_cpp11.hpp
#usr/include/boost/leaf/config/tls_freertos.hpp
#usr/include/boost/leaf/config/tls_globals.hpp
+#usr/include/boost/leaf/config/tls_win32.hpp
+#usr/include/boost/leaf/config/visibility.hpp
#usr/include/boost/leaf/context.hpp
#usr/include/boost/leaf/detail
#usr/include/boost/leaf/detail/all.hpp
#usr/include/boost/leaf/detail/capture_list.hpp
#usr/include/boost/leaf/detail/demangle.hpp
+#usr/include/boost/leaf/detail/diagnostics_writer.hpp
+#usr/include/boost/leaf/detail/encoder.hpp
+#usr/include/boost/leaf/detail/exception_base.hpp
#usr/include/boost/leaf/detail/function_traits.hpp
#usr/include/boost/leaf/detail/mp11.hpp
#usr/include/boost/leaf/detail/optional.hpp
-#usr/include/boost/leaf/detail/print.hpp
+#usr/include/boost/leaf/detail/type_name.hpp
#usr/include/boost/leaf/diagnostics.hpp
#usr/include/boost/leaf/error.hpp
#usr/include/boost/leaf/exception.hpp
@@ -7676,12 +7962,16 @@
#usr/include/boost/leaf/on_error.hpp
#usr/include/boost/leaf/pred.hpp
#usr/include/boost/leaf/result.hpp
+#usr/include/boost/leaf/serialization
+#usr/include/boost/leaf/serialization/boost_json_encoder.hpp
+#usr/include/boost/leaf/serialization/nlohmann_json_encoder.hpp
#usr/include/boost/leaf/to_variant.hpp
#usr/include/boost/lexical_cast
#usr/include/boost/lexical_cast.hpp
#usr/include/boost/lexical_cast/bad_lexical_cast.hpp
#usr/include/boost/lexical_cast/detail
#usr/include/boost/lexical_cast/detail/buffer_view.hpp
+#usr/include/boost/lexical_cast/detail/config.hpp
#usr/include/boost/lexical_cast/detail/converter_lexical.hpp
#usr/include/boost/lexical_cast/detail/converter_lexical_streams.hpp
#usr/include/boost/lexical_cast/detail/converter_numeric.hpp
@@ -7689,6 +7979,7 @@
#usr/include/boost/lexical_cast/detail/is_character.hpp
#usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
#usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
+#usr/include/boost/lexical_cast/detail/lcast_precision.hpp
#usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
#usr/include/boost/lexical_cast/detail/type_traits.hpp
#usr/include/boost/lexical_cast/detail/widest_char.hpp
@@ -7798,17 +8089,20 @@
#usr/include/boost/locale/util/locale_data.hpp
#usr/include/boost/locale/util/string.hpp
#usr/include/boost/lockfree
+#usr/include/boost/lockfree/bounded_ticket_queue.hpp
#usr/include/boost/lockfree/detail
#usr/include/boost/lockfree/detail/atomic.hpp
#usr/include/boost/lockfree/detail/copy_payload.hpp
#usr/include/boost/lockfree/detail/freelist.hpp
#usr/include/boost/lockfree/detail/parameter.hpp
+#usr/include/boost/lockfree/detail/power_of_two.hpp
#usr/include/boost/lockfree/detail/prefix.hpp
#usr/include/boost/lockfree/detail/tagged_ptr.hpp
#usr/include/boost/lockfree/detail/tagged_ptr_dcas.hpp
#usr/include/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp
#usr/include/boost/lockfree/detail/uses_optional.hpp
#usr/include/boost/lockfree/lockfree_forward.hpp
+#usr/include/boost/lockfree/mpsc_weak_queue.hpp
#usr/include/boost/lockfree/policies.hpp
#usr/include/boost/lockfree/queue.hpp
#usr/include/boost/lockfree/spsc_queue.hpp
@@ -8283,8 +8577,17 @@
#usr/include/boost/math/optimization/cma_es.hpp
#usr/include/boost/math/optimization/detail
#usr/include/boost/math/optimization/detail/common.hpp
+#usr/include/boost/math/optimization/detail/differentiable_opt_utilties.hpp
+#usr/include/boost/math/optimization/detail/gradient_opt_base.hpp
+#usr/include/boost/math/optimization/detail/line_search_policies.hpp
+#usr/include/boost/math/optimization/detail/rdiff_optimization_policies.hpp
#usr/include/boost/math/optimization/differential_evolution.hpp
+#usr/include/boost/math/optimization/gradient_descent.hpp
+#usr/include/boost/math/optimization/gradient_optimizers.hpp
#usr/include/boost/math/optimization/jso.hpp
+#usr/include/boost/math/optimization/lbfgs.hpp
+#usr/include/boost/math/optimization/minimizer.hpp
+#usr/include/boost/math/optimization/nesterov.hpp
#usr/include/boost/math/optimization/random_search.hpp
#usr/include/boost/math/policies
#usr/include/boost/math/policies/error_handling.hpp
@@ -10296,12 +10599,23 @@
#usr/include/boost/msm/backmp11
#usr/include/boost/msm/backmp11/common_types.hpp
#usr/include/boost/msm/backmp11/detail
-#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
+#usr/include/boost/msm/backmp11/detail/basic_polymorphic.hpp
+#usr/include/boost/msm/backmp11/detail/common.hpp
+#usr/include/boost/msm/backmp11/detail/event_pool_processor.hpp
#usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
#usr/include/boost/msm/backmp11/detail/history_impl.hpp
#usr/include/boost/msm/backmp11/detail/metafunctions.hpp
+#usr/include/boost/msm/backmp11/detail/state_machine_base.hpp
+#usr/include/boost/msm/backmp11/detail/state_tags.hpp
+#usr/include/boost/msm/backmp11/detail/state_visitor.hpp
+#usr/include/boost/msm/backmp11/detail/transition_table.hpp
#usr/include/boost/msm/backmp11/event_traits.hpp
#usr/include/boost/msm/backmp11/favor_compile_time.hpp
+#usr/include/boost/msm/backmp11/observer.hpp
+#usr/include/boost/msm/backmp11/serialization
+#usr/include/boost/msm/backmp11/serialization/boost_json.hpp
+#usr/include/boost/msm/backmp11/serialization/boost_serialization.hpp
+#usr/include/boost/msm/backmp11/serialization/nlohmann_json.hpp
#usr/include/boost/msm/backmp11/state_machine.hpp
#usr/include/boost/msm/backmp11/state_machine_config.hpp
#usr/include/boost/msm/common.hpp
@@ -10312,6 +10626,7 @@
#usr/include/boost/msm/front/detail
#usr/include/boost/msm/front/detail/common_states.hpp
#usr/include/boost/msm/front/detail/row2_helper.hpp
+#usr/include/boost/msm/front/detail/state_tags.hpp
#usr/include/boost/msm/front/euml
#usr/include/boost/msm/front/euml/algorithm.hpp
#usr/include/boost/msm/front/euml/common.hpp
@@ -10373,11 +10688,10 @@
#usr/include/boost/multi_index
#usr/include/boost/multi_index/composite_key.hpp
#usr/include/boost/multi_index/detail
-#usr/include/boost/multi_index/detail/access_specifier.hpp
#usr/include/boost/multi_index/detail/adl_swap.hpp
-#usr/include/boost/multi_index/detail/allocator_traits.hpp
#usr/include/boost/multi_index/detail/any_container_view.hpp
#usr/include/boost/multi_index/detail/archive_constructed.hpp
+#usr/include/boost/multi_index/detail/augmented_stdtuple.hpp
#usr/include/boost/multi_index/detail/auto_space.hpp
#usr/include/boost/multi_index/detail/bad_archive_exception.hpp
#usr/include/boost/multi_index/detail/base_type.hpp
@@ -10408,7 +10722,9 @@
#usr/include/boost/multi_index/detail/is_transparent.hpp
#usr/include/boost/multi_index/detail/iter_adaptor.hpp
#usr/include/boost/multi_index/detail/modify_key_adaptor.hpp
+#usr/include/boost/multi_index/detail/mpl_to_mp11_list.hpp
#usr/include/boost/multi_index/detail/no_duplicate_tags.hpp
+#usr/include/boost/multi_index/detail/no_duplicate_tags_in_index_list.hpp
#usr/include/boost/multi_index/detail/node_handle.hpp
#usr/include/boost/multi_index/detail/node_type.hpp
#usr/include/boost/multi_index/detail/ord_index_args.hpp
@@ -10431,11 +10747,11 @@
#usr/include/boost/multi_index/detail/seq_index_node.hpp
#usr/include/boost/multi_index/detail/seq_index_ops.hpp
#usr/include/boost/multi_index/detail/serialization_version.hpp
+#usr/include/boost/multi_index/detail/type_list.hpp
#usr/include/boost/multi_index/detail/uintptr_type.hpp
#usr/include/boost/multi_index/detail/unbounded.hpp
#usr/include/boost/multi_index/detail/undef_if_constexpr_macro.hpp
#usr/include/boost/multi_index/detail/value_compare.hpp
-#usr/include/boost/multi_index/detail/vartempl_support.hpp
#usr/include/boost/multi_index/global_fun.hpp
#usr/include/boost/multi_index/hashed_index.hpp
#usr/include/boost/multi_index/hashed_index_fwd.hpp
@@ -10678,6 +10994,7 @@
#usr/include/boost/mysql/impl/internal/error
#usr/include/boost/mysql/impl/internal/error/server_error_to_string.hpp
#usr/include/boost/mysql/impl/internal/error/server_error_to_string.ipp
+#usr/include/boost/mysql/impl/internal/next_power_of_two.hpp
#usr/include/boost/mysql/impl/internal/protocol
#usr/include/boost/mysql/impl/internal/protocol/capabilities.hpp
#usr/include/boost/mysql/impl/internal/protocol/db_flavor.hpp
@@ -11176,6 +11493,7 @@
#usr/include/boost/openmethod/initialize.hpp
#usr/include/boost/openmethod/inplace_vptr.hpp
#usr/include/boost/openmethod/interop
+#usr/include/boost/openmethod/interop/boost_intrusive_ptr.hpp
#usr/include/boost/openmethod/interop/std_shared_ptr.hpp
#usr/include/boost/openmethod/interop/std_unique_ptr.hpp
#usr/include/boost/openmethod/macros.hpp
@@ -11197,14 +11515,17 @@
#usr/include/boost/optional/detail
#usr/include/boost/optional/detail/experimental_traits.hpp
#usr/include/boost/optional/detail/optional_aligned_storage.hpp
+#usr/include/boost/optional/detail/optional_common_defs.hpp
#usr/include/boost/optional/detail/optional_config.hpp
#usr/include/boost/optional/detail/optional_factory_support.hpp
#usr/include/boost/optional/detail/optional_hash.hpp
+#usr/include/boost/optional/detail/optional_nonmember_interface.hpp
#usr/include/boost/optional/detail/optional_reference_spec.hpp
#usr/include/boost/optional/detail/optional_relops.hpp
+#usr/include/boost/optional/detail/optional_select_implementation.hpp
#usr/include/boost/optional/detail/optional_swap.hpp
#usr/include/boost/optional/detail/optional_trivially_copyable_base.hpp
-#usr/include/boost/optional/detail/optional_utility.hpp
+#usr/include/boost/optional/detail/union_optional.hpp
#usr/include/boost/optional/optional.hpp
#usr/include/boost/optional/optional_fwd.hpp
#usr/include/boost/optional/optional_io.hpp
@@ -11489,9 +11810,11 @@
#usr/include/boost/pfr/detail/core17.hpp
#usr/include/boost/pfr/detail/core17_generated.hpp
#usr/include/boost/pfr/detail/core26.hpp
+#usr/include/boost/pfr/detail/core26_reflection.hpp
#usr/include/boost/pfr/detail/core_name.hpp
#usr/include/boost/pfr/detail/core_name14_disabled.hpp
#usr/include/boost/pfr/detail/core_name20_static.hpp
+#usr/include/boost/pfr/detail/core_name26_reflection.hpp
#usr/include/boost/pfr/detail/detectors.hpp
#usr/include/boost/pfr/detail/fake_object.hpp
#usr/include/boost/pfr/detail/fields_count.hpp
@@ -13245,6 +13568,7 @@
#usr/include/boost/python/detail/pointee.hpp
#usr/include/boost/python/detail/prefix.hpp
#usr/include/boost/python/detail/preprocessor.hpp
+#usr/include/boost/python/detail/pymutex.hpp
#usr/include/boost/python/detail/python22_fixed.h
#usr/include/boost/python/detail/python_type.hpp
#usr/include/boost/python/detail/raw_pyobject.hpp
@@ -13750,15 +14074,20 @@
#usr/include/boost/redis/connection.hpp
#usr/include/boost/redis/detail
#usr/include/boost/redis/detail/connect_fsm.hpp
+#usr/include/boost/redis/detail/connect_params.hpp
#usr/include/boost/redis/detail/connection_state.hpp
#usr/include/boost/redis/detail/coroutine.hpp
#usr/include/boost/redis/detail/exec_fsm.hpp
+#usr/include/boost/redis/detail/exec_one_fsm.hpp
#usr/include/boost/redis/detail/multiplexer.hpp
#usr/include/boost/redis/detail/read_buffer.hpp
#usr/include/boost/redis/detail/reader_fsm.hpp
+#usr/include/boost/redis/detail/receive_fsm.hpp
#usr/include/boost/redis/detail/redis_stream.hpp
#usr/include/boost/redis/detail/resp3_type_to_error.hpp
#usr/include/boost/redis/detail/run_fsm.hpp
+#usr/include/boost/redis/detail/sentinel_resolve_fsm.hpp
+#usr/include/boost/redis/detail/subscription_tracker.hpp
#usr/include/boost/redis/detail/write.hpp
#usr/include/boost/redis/detail/writer_fsm.hpp
#usr/include/boost/redis/error.hpp
@@ -13768,23 +14097,32 @@
#usr/include/boost/redis/impl/connection.ipp
#usr/include/boost/redis/impl/error.ipp
#usr/include/boost/redis/impl/exec_fsm.ipp
+#usr/include/boost/redis/impl/exec_one_fsm.ipp
+#usr/include/boost/redis/impl/flat_tree.ipp
#usr/include/boost/redis/impl/ignore.ipp
#usr/include/boost/redis/impl/is_terminal_cancel.hpp
#usr/include/boost/redis/impl/log_to_file.hpp
#usr/include/boost/redis/impl/log_utils.hpp
#usr/include/boost/redis/impl/logger.ipp
#usr/include/boost/redis/impl/multiplexer.ipp
+#usr/include/boost/redis/impl/push_parser.ipp
#usr/include/boost/redis/impl/read_buffer.ipp
#usr/include/boost/redis/impl/reader_fsm.ipp
+#usr/include/boost/redis/impl/receive_fsm.ipp
#usr/include/boost/redis/impl/request.ipp
#usr/include/boost/redis/impl/response.ipp
#usr/include/boost/redis/impl/run_fsm.ipp
+#usr/include/boost/redis/impl/sentinel_resolve_fsm.ipp
+#usr/include/boost/redis/impl/sentinel_utils.hpp
#usr/include/boost/redis/impl/setup_request_utils.hpp
+#usr/include/boost/redis/impl/subscription_tracker.ipp
#usr/include/boost/redis/impl/writer_fsm.ipp
#usr/include/boost/redis/logger.hpp
#usr/include/boost/redis/operation.hpp
+#usr/include/boost/redis/push_parser.hpp
#usr/include/boost/redis/request.hpp
#usr/include/boost/redis/resp3
+#usr/include/boost/redis/resp3/flat_tree.hpp
#usr/include/boost/redis/resp3/impl
#usr/include/boost/redis/resp3/impl/parser.ipp
#usr/include/boost/redis/resp3/impl/serialization.ipp
@@ -13792,6 +14130,7 @@
#usr/include/boost/redis/resp3/node.hpp
#usr/include/boost/redis/resp3/parser.hpp
#usr/include/boost/redis/resp3/serialization.hpp
+#usr/include/boost/redis/resp3/tree.hpp
#usr/include/boost/redis/resp3/type.hpp
#usr/include/boost/redis/response.hpp
#usr/include/boost/redis/src.hpp
@@ -15352,9 +15691,11 @@
#usr/include/boost/stacktrace/detail/addr2line_impls.hpp
#usr/include/boost/stacktrace/detail/addr_base.hpp
#usr/include/boost/stacktrace/detail/addr_base_msvc.hpp
+#usr/include/boost/stacktrace/detail/backend_config.hpp
#usr/include/boost/stacktrace/detail/collect_msvc.ipp
#usr/include/boost/stacktrace/detail/collect_noop.ipp
#usr/include/boost/stacktrace/detail/collect_unwind.ipp
+#usr/include/boost/stacktrace/detail/config.hpp
#usr/include/boost/stacktrace/detail/frame_decl.hpp
#usr/include/boost/stacktrace/detail/frame_msvc.ipp
#usr/include/boost/stacktrace/detail/frame_noop.ipp
@@ -15408,7 +15749,10 @@
#usr/include/boost/statechart/state_machine.hpp
#usr/include/boost/statechart/termination.hpp
#usr/include/boost/statechart/transition.hpp
+#usr/include/boost/static_assert
#usr/include/boost/static_assert.hpp
+#usr/include/boost/static_assert/detail
+#usr/include/boost/static_assert/detail/backward.hpp
#usr/include/boost/static_string
#usr/include/boost/static_string.hpp
#usr/include/boost/static_string/config.hpp
@@ -15442,6 +15786,7 @@
#usr/include/boost/system/detail/generic_category.hpp
#usr/include/boost/system/detail/generic_category_message.hpp
#usr/include/boost/system/detail/interop_category.hpp
+#usr/include/boost/system/detail/is_aggregate.hpp
#usr/include/boost/system/detail/is_same.hpp
#usr/include/boost/system/detail/mutex.hpp
#usr/include/boost/system/detail/snprintf.hpp
@@ -15464,6 +15809,7 @@
#usr/include/boost/system/result.hpp
#usr/include/boost/system/system_category.hpp
#usr/include/boost/system/system_error.hpp
+#usr/include/boost/system/unwrap_and_invoke.hpp
#usr/include/boost/system/windows_error.hpp
#usr/include/boost/test
#usr/include/boost/test/auto_unit_test.hpp
@@ -16595,6 +16941,7 @@
#usr/include/boost/unordered/detail/narrow_cast.hpp
#usr/include/boost/unordered/detail/opt_storage.hpp
#usr/include/boost/unordered/detail/prime_fmod.hpp
+#usr/include/boost/unordered/detail/ranges_support.hpp
#usr/include/boost/unordered/detail/serialization_version.hpp
#usr/include/boost/unordered/detail/serialize_container.hpp
#usr/include/boost/unordered/detail/serialize_fca_container.hpp
@@ -16623,19 +16970,33 @@
#usr/include/boost/url
#usr/include/boost/url.hpp
#usr/include/boost/url/authority_view.hpp
+#usr/include/boost/url/decode.hpp
#usr/include/boost/url/decode_view.hpp
#usr/include/boost/url/detail
#usr/include/boost/url/detail/any_params_iter.hpp
#usr/include/boost/url/detail/any_segments_iter.hpp
#usr/include/boost/url/detail/config.hpp
+#usr/include/boost/url/detail/decode.hpp
#usr/include/boost/url/detail/encode.hpp
#usr/include/boost/url/detail/except.hpp
+#usr/include/boost/url/detail/fnv_1a.hpp
#usr/include/boost/url/detail/format_args.hpp
#usr/include/boost/url/detail/impl
+#usr/include/boost/url/detail/impl/any_params_iter.hpp
+#usr/include/boost/url/detail/impl/any_segments_iter.hpp
#usr/include/boost/url/detail/impl/format_args.hpp
+#usr/include/boost/url/detail/impl/params_iter_impl.hpp
+#usr/include/boost/url/detail/impl/segments_iter_impl.hpp
+#usr/include/boost/url/detail/impl/url_impl.hpp
+#usr/include/boost/url/detail/memcpy.hpp
+#usr/include/boost/url/detail/move_chars.hpp
+#usr/include/boost/url/detail/normalize.hpp
#usr/include/boost/url/detail/optional_string.hpp
+#usr/include/boost/url/detail/over_allocator.hpp
#usr/include/boost/url/detail/params_iter_impl.hpp
#usr/include/boost/url/detail/parts_base.hpp
+#usr/include/boost/url/detail/path.hpp
+#usr/include/boost/url/detail/print.hpp
#usr/include/boost/url/detail/replacement_field_rule.hpp
#usr/include/boost/url/detail/segments_iter_impl.hpp
#usr/include/boost/url/detail/segments_range.hpp
@@ -16659,13 +17020,17 @@
#usr/include/boost/url/grammar/detail
#usr/include/boost/url/grammar/detail/charset.hpp
#usr/include/boost/url/grammar/detail/ci_string.hpp
+#usr/include/boost/url/grammar/detail/range_rule.hpp
#usr/include/boost/url/grammar/detail/recycled.hpp
#usr/include/boost/url/grammar/detail/tuple.hpp
#usr/include/boost/url/grammar/digit_chars.hpp
#usr/include/boost/url/grammar/error.hpp
#usr/include/boost/url/grammar/hexdig_chars.hpp
#usr/include/boost/url/grammar/impl
+#usr/include/boost/url/grammar/impl/dec_octet_rule.hpp
+#usr/include/boost/url/grammar/impl/delim_rule.hpp
#usr/include/boost/url/grammar/impl/error.hpp
+#usr/include/boost/url/grammar/impl/literal_rule.hpp
#usr/include/boost/url/grammar/impl/not_empty_rule.hpp
#usr/include/boost/url/grammar/impl/optional_rule.hpp
#usr/include/boost/url/grammar/impl/parse.hpp
@@ -16693,17 +17058,30 @@
#usr/include/boost/url/host_type.hpp
#usr/include/boost/url/ignore_case.hpp
#usr/include/boost/url/impl
+#usr/include/boost/url/impl/authority_view.hpp
+#usr/include/boost/url/impl/decode.hpp
#usr/include/boost/url/impl/decode_view.hpp
#usr/include/boost/url/impl/encode.hpp
#usr/include/boost/url/impl/error.hpp
#usr/include/boost/url/impl/params_base.hpp
#usr/include/boost/url/impl/params_encoded_base.hpp
#usr/include/boost/url/impl/params_encoded_ref.hpp
+#usr/include/boost/url/impl/params_encoded_view.hpp
#usr/include/boost/url/impl/params_ref.hpp
+#usr/include/boost/url/impl/params_view.hpp
+#usr/include/boost/url/impl/parse.hpp
+#usr/include/boost/url/impl/scheme.hpp
#usr/include/boost/url/impl/segments_base.hpp
#usr/include/boost/url/impl/segments_encoded_base.hpp
#usr/include/boost/url/impl/segments_encoded_ref.hpp
+#usr/include/boost/url/impl/segments_encoded_view.hpp
#usr/include/boost/url/impl/segments_ref.hpp
+#usr/include/boost/url/impl/segments_view.hpp
+#usr/include/boost/url/impl/static_url.hpp
+#usr/include/boost/url/impl/url.hpp
+#usr/include/boost/url/impl/url_base.hpp
+#usr/include/boost/url/impl/url_view.hpp
+#usr/include/boost/url/impl/url_view_base.hpp
#usr/include/boost/url/ipv4_address.hpp
#usr/include/boost/url/ipv6_address.hpp
#usr/include/boost/url/optional.hpp
@@ -16722,10 +17100,44 @@
#usr/include/boost/url/rfc/absolute_uri_rule.hpp
#usr/include/boost/url/rfc/authority_rule.hpp
#usr/include/boost/url/rfc/detail
+#usr/include/boost/url/rfc/detail/charsets.hpp
+#usr/include/boost/url/rfc/detail/fragment_part_rule.hpp
+#usr/include/boost/url/rfc/detail/h16_rule.hpp
+#usr/include/boost/url/rfc/detail/hier_part_rule.hpp
+#usr/include/boost/url/rfc/detail/host_rule.hpp
+#usr/include/boost/url/rfc/detail/impl
+#usr/include/boost/url/rfc/detail/impl/h16_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/hier_part_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/host_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ip_literal_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ipv6_addrz_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/ipvfuture_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/port_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/relative_part_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/scheme_rule.hpp
+#usr/include/boost/url/rfc/detail/impl/userinfo_rule.hpp
+#usr/include/boost/url/rfc/detail/ip_literal_rule.hpp
+#usr/include/boost/url/rfc/detail/ipv6_addrz_rule.hpp
+#usr/include/boost/url/rfc/detail/ipvfuture_rule.hpp
#usr/include/boost/url/rfc/detail/path_rules.hpp
+#usr/include/boost/url/rfc/detail/port_rule.hpp
+#usr/include/boost/url/rfc/detail/query_part_rule.hpp
+#usr/include/boost/url/rfc/detail/reg_name_rule.hpp
+#usr/include/boost/url/rfc/detail/relative_part_rule.hpp
+#usr/include/boost/url/rfc/detail/scheme_rule.hpp
+#usr/include/boost/url/rfc/detail/userinfo_rule.hpp
#usr/include/boost/url/rfc/gen_delim_chars.hpp
#usr/include/boost/url/rfc/impl
+#usr/include/boost/url/rfc/impl/absolute_uri_rule.hpp
+#usr/include/boost/url/rfc/impl/authority_rule.hpp
+#usr/include/boost/url/rfc/impl/ipv4_address_rule.hpp
+#usr/include/boost/url/rfc/impl/ipv6_address_rule.hpp
+#usr/include/boost/url/rfc/impl/origin_form_rule.hpp
#usr/include/boost/url/rfc/impl/pct_encoded_rule.hpp
+#usr/include/boost/url/rfc/impl/query_rule.hpp
+#usr/include/boost/url/rfc/impl/relative_ref_rule.hpp
+#usr/include/boost/url/rfc/impl/uri_reference_rule.hpp
+#usr/include/boost/url/rfc/impl/uri_rule.hpp
#usr/include/boost/url/rfc/ipv4_address_rule.hpp
#usr/include/boost/url/rfc/ipv6_address_rule.hpp
#usr/include/boost/url/rfc/origin_form_rule.hpp
@@ -16788,21 +17200,33 @@
#usr/include/boost/uuid/detail/basic_name_generator.hpp
#usr/include/boost/uuid/detail/chacha20.hpp
#usr/include/boost/uuid/detail/config.hpp
+#usr/include/boost/uuid/detail/cstring.hpp
#usr/include/boost/uuid/detail/endian.hpp
+#usr/include/boost/uuid/detail/from_chars.hpp
+#usr/include/boost/uuid/detail/from_chars_generic.hpp
+#usr/include/boost/uuid/detail/from_chars_result.hpp
+#usr/include/boost/uuid/detail/from_chars_x86.hpp
#usr/include/boost/uuid/detail/hash_mix.hpp
+#usr/include/boost/uuid/detail/is_constant_evaluated.hpp
#usr/include/boost/uuid/detail/md5.hpp
#usr/include/boost/uuid/detail/nil_uuid.hpp
#usr/include/boost/uuid/detail/numeric_cast.hpp
#usr/include/boost/uuid/detail/random_device.hpp
#usr/include/boost/uuid/detail/random_provider.hpp
#usr/include/boost/uuid/detail/sha1.hpp
+#usr/include/boost/uuid/detail/simd_vector.hpp
#usr/include/boost/uuid/detail/static_assert.hpp
+#usr/include/boost/uuid/detail/throw_invalid_uuid.hpp
#usr/include/boost/uuid/detail/to_chars.hpp
+#usr/include/boost/uuid/detail/to_chars_generic.hpp
+#usr/include/boost/uuid/detail/to_chars_x86.hpp
+#usr/include/boost/uuid/detail/uuid_from_string.hpp
#usr/include/boost/uuid/detail/uuid_generic.ipp
#usr/include/boost/uuid/detail/uuid_uint128.ipp
#usr/include/boost/uuid/detail/uuid_x86.ipp
#usr/include/boost/uuid/entropy_error.hpp
#usr/include/boost/uuid/generators.hpp
+#usr/include/boost/uuid/invalid_uuid.hpp
#usr/include/boost/uuid/name_generator.hpp
#usr/include/boost/uuid/name_generator_md5.hpp
#usr/include/boost/uuid/name_generator_sha1.hpp
@@ -17304,274 +17728,407 @@
#usr/include/boost/yap/print.hpp
#usr/include/boost/yap/user_macros.hpp
#usr/include/boost/yap/yap.hpp
-#usr/lib/cmake/Boost-1.90.0
-#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
-#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
-#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
-#usr/lib/cmake/boost_atomic-1.90.0
-#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
-#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
-#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-shared.cmake
-#usr/lib/cmake/boost_charconv-1.90.0
-#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
-#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
-#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-shared.cmake
-#usr/lib/cmake/boost_chrono-1.90.0
-#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
-#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
-#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-shared.cmake
-#usr/lib/cmake/boost_cobalt-1.90.0
-#usr/lib/cmake/boost_cobalt-1.90.0/boost_cobalt-config-version.cmake
-#usr/lib/cmake/boost_cobalt-1.90.0/boost_cobalt-config.cmake
-#usr/lib/cmake/boost_cobalt-1.90.0/libboost_cobalt-variant-shared.cmake
-#usr/lib/cmake/boost_cobalt_io-1.90.0
-#usr/lib/cmake/boost_cobalt_io-1.90.0/boost_cobalt_io-config-version.cmake
-#usr/lib/cmake/boost_cobalt_io-1.90.0/boost_cobalt_io-config.cmake
-#usr/lib/cmake/boost_cobalt_io-1.90.0/libboost_cobalt_io-variant-shared.cmake
-#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0
-#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/boost_cobalt_io_ssl-config-version.cmake
-#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/boost_cobalt_io_ssl-config.cmake
-#usr/lib/cmake/boost_cobalt_io_ssl-1.90.0/libboost_cobalt_io_ssl-variant-shared.cmake
-#usr/lib/cmake/boost_container-1.90.0
-#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
-#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
-#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-shared.cmake
-#usr/lib/cmake/boost_context-1.90.0
-#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
-#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
-#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-shared.cmake
-#usr/lib/cmake/boost_contract-1.90.0
-#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
-#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
-#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-shared.cmake
-#usr/lib/cmake/boost_date_time-1.90.0
-#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
-#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
-#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-shared.cmake
-#usr/lib/cmake/boost_exception-1.90.0
-#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
-#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0
-#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
-#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-shared.cmake
-#usr/lib/cmake/boost_graph-1.90.0
-#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
-#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
-#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-shared.cmake
-#usr/lib/cmake/boost_headers-1.90.0
-#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
-#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0
-#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
-#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-shared.cmake
-#usr/lib/cmake/boost_json-1.90.0
-#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
-#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
-#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-shared.cmake
-#usr/lib/cmake/boost_locale-1.90.0
-#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
-#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
-#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-shared.cmake
-#usr/lib/cmake/boost_log-1.90.0
-#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
-#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
-#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0
-#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
-#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-shared.cmake
-#usr/lib/cmake/boost_math-1.90.0
-#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
-#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0
-#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
-#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0
-#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
-#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0
-#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
-#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0
-#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
-#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0
-#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
-#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0
-#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
-#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-shared.cmake
-#usr/lib/cmake/boost_nowide-1.90.0
-#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
-#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
-#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-shared.cmake
-#usr/lib/cmake/boost_numpy-1.90.0
-#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
-#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-shared.cmake
-#usr/lib/cmake/boost_process-1.90.0
-#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
-#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
-#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-shared.cmake
-#usr/lib/cmake/boost_python-1.90.0
-#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
-#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
-#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-shared-py3.10.cmake
-#usr/lib/cmake/boost_random-1.90.0
-#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
-#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
-#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-shared.cmake
-#usr/lib/cmake/boost_regex-1.90.0
-#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
-#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
-#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-shared.cmake
-#usr/lib/cmake/boost_serialization-1.90.0
-#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
-#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
-#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0
-#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config.cmake
-#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/libboost_stacktrace_from_exception-variant-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-shared.cmake
-#usr/lib/cmake/boost_thread-1.90.0
-#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
-#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
-#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-shared.cmake
-#usr/lib/cmake/boost_timer-1.90.0
-#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
-#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
-#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0
-#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
-#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-shared.cmake
-#usr/lib/cmake/boost_url-1.90.0
-#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
-#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
-#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-shared.cmake
-#usr/lib/cmake/boost_wave-1.90.0
-#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
-#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
-#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0
-#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
-#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-shared.cmake
-#usr/lib/libboost_atomic.so
-usr/lib/libboost_atomic.so.1.90.0
-#usr/lib/libboost_charconv.so
-usr/lib/libboost_charconv.so.1.90.0
-#usr/lib/libboost_chrono.so
-usr/lib/libboost_chrono.so.1.90.0
-#usr/lib/libboost_cobalt.so
-usr/lib/libboost_cobalt.so.1.90.0
-#usr/lib/libboost_cobalt_io.so
-usr/lib/libboost_cobalt_io.so.1.90.0
-#usr/lib/libboost_cobalt_io_ssl.so
-usr/lib/libboost_cobalt_io_ssl.so.1.90.0
-#usr/lib/libboost_container.so
-usr/lib/libboost_container.so.1.90.0
-#usr/lib/libboost_context.so
-usr/lib/libboost_context.so.1.90.0
-#usr/lib/libboost_contract.so
-usr/lib/libboost_contract.so.1.90.0
-#usr/lib/libboost_date_time.so
-usr/lib/libboost_date_time.so.1.90.0
-#usr/lib/libboost_exception.a
-#usr/lib/libboost_filesystem.so
-usr/lib/libboost_filesystem.so.1.90.0
-#usr/lib/libboost_graph.so
-usr/lib/libboost_graph.so.1.90.0
-#usr/lib/libboost_iostreams.so
-usr/lib/libboost_iostreams.so.1.90.0
-#usr/lib/libboost_json.so
-usr/lib/libboost_json.so.1.90.0
-#usr/lib/libboost_locale.so
-usr/lib/libboost_locale.so.1.90.0
-#usr/lib/libboost_log.so
-usr/lib/libboost_log.so.1.90.0
-#usr/lib/libboost_log_setup.so
-usr/lib/libboost_log_setup.so.1.90.0
-#usr/lib/libboost_math_c99.so
-usr/lib/libboost_math_c99.so.1.90.0
-#usr/lib/libboost_math_c99f.so
-usr/lib/libboost_math_c99f.so.1.90.0
-#usr/lib/libboost_math_c99l.so
-usr/lib/libboost_math_c99l.so.1.90.0
-#usr/lib/libboost_math_tr1.so
-usr/lib/libboost_math_tr1.so.1.90.0
-#usr/lib/libboost_math_tr1f.so
-usr/lib/libboost_math_tr1f.so.1.90.0
-#usr/lib/libboost_math_tr1l.so
-usr/lib/libboost_math_tr1l.so.1.90.0
-#usr/lib/libboost_nowide.so
-usr/lib/libboost_nowide.so.1.90.0
-#usr/lib/libboost_prg_exec_monitor.so
-usr/lib/libboost_prg_exec_monitor.so.1.90.0
-#usr/lib/libboost_process.so
-usr/lib/libboost_process.so.1.90.0
-#usr/lib/libboost_python310.so
-usr/lib/libboost_python310.so.1.90.0
-#usr/lib/libboost_random.so
-usr/lib/libboost_random.so.1.90.0
-#usr/lib/libboost_regex.so
-usr/lib/libboost_regex.so.1.90.0
-#usr/lib/libboost_serialization.so
-usr/lib/libboost_serialization.so.1.90.0
-#usr/lib/libboost_stacktrace_addr2line.so
-usr/lib/libboost_stacktrace_addr2line.so.1.90.0
-#usr/lib/libboost_stacktrace_basic.so
-usr/lib/libboost_stacktrace_basic.so.1.90.0
-#usr/lib/libboost_stacktrace_from_exception.so
-usr/lib/libboost_stacktrace_from_exception.so.1.90.0
-#usr/lib/libboost_stacktrace_noop.so
-usr/lib/libboost_stacktrace_noop.so.1.90.0
-#usr/lib/libboost_test_exec_monitor.a
-#usr/lib/libboost_thread.so
-usr/lib/libboost_thread.so.1.90.0
-#usr/lib/libboost_timer.so
-usr/lib/libboost_timer.so.1.90.0
-#usr/lib/libboost_type_erasure.so
-usr/lib/libboost_type_erasure.so.1.90.0
-#usr/lib/libboost_unit_test_framework.so
-usr/lib/libboost_unit_test_framework.so.1.90.0
-#usr/lib/libboost_url.so
-usr/lib/libboost_url.so.1.90.0
-#usr/lib/libboost_wave.so
-usr/lib/libboost_wave.so.1.90.0
-#usr/lib/libboost_wserialization.so
-usr/lib/libboost_wserialization.so.1.90.0
+#usr/lib/cmake/Boost-1.92.0
+#usr/lib/cmake/Boost-1.92.0/BoostConfig.cmake
+#usr/lib/cmake/Boost-1.92.0/BoostConfigVersion.cmake
+#usr/lib/cmake/BoostDetectToolset-1.92.0.cmake
+#usr/lib/cmake/boost_atomic-1.92.0
+#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config-version.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/boost_atomic-config.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_atomic-1.92.0/libboost_atomic-variant-x64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.92.0
+#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config-version.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/boost_charconv-config.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.92.0/libboost_charconv-variant-x64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.92.0
+#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config-version.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/boost_chrono-config.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.92.0/libboost_chrono-variant-x64-shared.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0
+#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config-version.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/boost_cobalt-config.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_cobalt-1.92.0/libboost_cobalt-variant-x64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0
+#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config-version.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/boost_cobalt_io-config.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io-1.92.0/libboost_cobalt_io-variant-x64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config-version.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/boost_cobalt_io_ssl-config.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_cobalt_io_ssl-1.92.0/libboost_cobalt_io_ssl-variant-x64-shared.cmake
+#usr/lib/cmake/boost_container-1.92.0
+#usr/lib/cmake/boost_container-1.92.0/boost_container-config-version.cmake
+#usr/lib/cmake/boost_container-1.92.0/boost_container-config.cmake
+#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_container-1.92.0/libboost_container-variant-x64-shared.cmake
+#usr/lib/cmake/boost_context-1.92.0
+#usr/lib/cmake/boost_context-1.92.0/boost_context-config-version.cmake
+#usr/lib/cmake/boost_context-1.92.0/boost_context-config.cmake
+#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_context-1.92.0/libboost_context-variant-x64-shared.cmake
+#usr/lib/cmake/boost_contract-1.92.0
+#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config-version.cmake
+#usr/lib/cmake/boost_contract-1.92.0/boost_contract-config.cmake
+#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_contract-1.92.0/libboost_contract-variant-x64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.92.0
+#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config-version.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/boost_date_time-config.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.92.0/libboost_date_time-variant-x64-shared.cmake
+#usr/lib/cmake/boost_exception-1.92.0
+#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config-version.cmake
+#usr/lib/cmake/boost_exception-1.92.0/boost_exception-config.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0
+#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config-version.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/boost_filesystem-config.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_filesystem-1.92.0/libboost_filesystem-variant-x64-shared.cmake
+#usr/lib/cmake/boost_graph-1.92.0
+#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config-version.cmake
+#usr/lib/cmake/boost_graph-1.92.0/boost_graph-config.cmake
+#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_graph-1.92.0/libboost_graph-variant-x64-shared.cmake
+#usr/lib/cmake/boost_headers-1.92.0
+#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config-version.cmake
+#usr/lib/cmake/boost_headers-1.92.0/boost_headers-config.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0
+#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config-version.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/boost_iostreams-config.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_iostreams-1.92.0/libboost_iostreams-variant-x64-shared.cmake
+#usr/lib/cmake/boost_json-1.92.0
+#usr/lib/cmake/boost_json-1.92.0/boost_json-config-version.cmake
+#usr/lib/cmake/boost_json-1.92.0/boost_json-config.cmake
+#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_json-1.92.0/libboost_json-variant-x64-shared.cmake
+#usr/lib/cmake/boost_locale-1.92.0
+#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config-version.cmake
+#usr/lib/cmake/boost_locale-1.92.0/boost_locale-config.cmake
+#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_locale-1.92.0/libboost_locale-variant-x64-shared.cmake
+#usr/lib/cmake/boost_log-1.92.0
+#usr/lib/cmake/boost_log-1.92.0/boost_log-config-version.cmake
+#usr/lib/cmake/boost_log-1.92.0/boost_log-config.cmake
+#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_log-1.92.0/libboost_log-variant-x64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0
+#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config-version.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/boost_log_setup-config.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.92.0/libboost_log_setup-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math-1.92.0
+#usr/lib/cmake/boost_math-1.92.0/boost_math-config-version.cmake
+#usr/lib/cmake/boost_math-1.92.0/boost_math-config.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0
+#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config-version.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/boost_math_c99-config.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99-1.92.0/libboost_math_c99-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0
+#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config-version.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/boost_math_c99f-config.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.92.0/libboost_math_c99f-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0
+#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config-version.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/boost_math_c99l-config.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.92.0/libboost_math_c99l-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0
+#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config-version.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/boost_math_tr1-config.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.92.0/libboost_math_tr1-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0
+#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config-version.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/boost_math_tr1f-config.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.92.0/libboost_math_tr1f-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0
+#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config-version.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/boost_math_tr1l-config.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.92.0/libboost_math_tr1l-variant-x64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.92.0
+#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config-version.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/boost_nowide-config.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.92.0/libboost_nowide-variant-x64-shared.cmake
+#usr/lib/cmake/boost_numpy-1.92.0
+#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config-version.cmake
+#usr/lib/cmake/boost_numpy-1.92.0/boost_numpy-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/boost_prg_exec_monitor-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.92.0/libboost_prg_exec_monitor-variant-x64-shared.cmake
+#usr/lib/cmake/boost_process-1.92.0
+#usr/lib/cmake/boost_process-1.92.0/boost_process-config-version.cmake
+#usr/lib/cmake/boost_process-1.92.0/boost_process-config.cmake
+#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_process-1.92.0/libboost_process-variant-x64-shared.cmake
+#usr/lib/cmake/boost_python-1.92.0
+#usr/lib/cmake/boost_python-1.92.0/boost_python-config-version.cmake
+#usr/lib/cmake/boost_python-1.92.0/boost_python-config.cmake
+#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-mt-x64-shared-py3.10.cmake
+#usr/lib/cmake/boost_python-1.92.0/libboost_python-variant-x64-shared-py3.10.cmake
+#usr/lib/cmake/boost_random-1.92.0
+#usr/lib/cmake/boost_random-1.92.0/boost_random-config-version.cmake
+#usr/lib/cmake/boost_random-1.92.0/boost_random-config.cmake
+#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_random-1.92.0/libboost_random-variant-x64-shared.cmake
+#usr/lib/cmake/boost_regex-1.92.0
+#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config-version.cmake
+#usr/lib/cmake/boost_regex-1.92.0/boost_regex-config.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0
+#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config-version.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/boost_regex_old-config.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_regex_old-1.92.0/libboost_regex_old-variant-x64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.92.0
+#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config-version.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/boost_serialization-config.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.92.0/libboost_serialization-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/boost_stacktrace_addr2line-config.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.92.0/libboost_stacktrace_addr2line-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/boost_stacktrace_basic-config.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.92.0/libboost_stacktrace_basic-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/boost_stacktrace_dump-config.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_dump-1.92.0/libboost_stacktrace_dump-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/boost_stacktrace_from_exception-config.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.92.0/libboost_stacktrace_from_exception-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/boost_stacktrace_noop-config.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.92.0/libboost_stacktrace_noop-variant-x64-shared.cmake
+#usr/lib/cmake/boost_system-1.92.0
+#usr/lib/cmake/boost_system-1.92.0/boost_system-config-version.cmake
+#usr/lib/cmake/boost_system-1.92.0/boost_system-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/boost_test_exec_monitor-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.92.0/libboost_test_exec_monitor-variant-x64-shared.cmake
+#usr/lib/cmake/boost_thread-1.92.0
+#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config-version.cmake
+#usr/lib/cmake/boost_thread-1.92.0/boost_thread-config.cmake
+#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_thread-1.92.0/libboost_thread-variant-x64-shared.cmake
+#usr/lib/cmake/boost_timer-1.92.0
+#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config-version.cmake
+#usr/lib/cmake/boost_timer-1.92.0/boost_timer-config.cmake
+#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_timer-1.92.0/libboost_timer-variant-x64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0
+#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config-version.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/boost_type_erasure-config.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.92.0/libboost_type_erasure-variant-x64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config-version.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/boost_unit_test_framework-config.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.92.0/libboost_unit_test_framework-variant-x64-shared.cmake
+#usr/lib/cmake/boost_url-1.92.0
+#usr/lib/cmake/boost_url-1.92.0/boost_url-config-version.cmake
+#usr/lib/cmake/boost_url-1.92.0/boost_url-config.cmake
+#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_url-1.92.0/libboost_url-variant-x64-shared.cmake
+#usr/lib/cmake/boost_wave-1.92.0
+#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config-version.cmake
+#usr/lib/cmake/boost_wave-1.92.0/boost_wave-config.cmake
+#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_wave-1.92.0/libboost_wave-variant-x64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0
+#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config-version.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/boost_wserialization-config.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.92.0/libboost_wserialization-variant-x64-shared.cmake
+#usr/lib/libboost_atomic-mt-x64.so
+usr/lib/libboost_atomic-mt-x64.so.1.92.0
+#usr/lib/libboost_charconv-mt-x64.so
+usr/lib/libboost_charconv-mt-x64.so.1.92.0
+#usr/lib/libboost_charconv-x64.so
+usr/lib/libboost_charconv-x64.so.1.92.0
+#usr/lib/libboost_chrono-mt-x64.so
+usr/lib/libboost_chrono-mt-x64.so.1.92.0
+#usr/lib/libboost_chrono-x64.so
+usr/lib/libboost_chrono-x64.so.1.92.0
+#usr/lib/libboost_cobalt-mt-x64.so
+usr/lib/libboost_cobalt-mt-x64.so.1.92.0
+#usr/lib/libboost_cobalt-x64.so
+usr/lib/libboost_cobalt-x64.so.1.92.0
+#usr/lib/libboost_cobalt_io-mt-x64.so
+usr/lib/libboost_cobalt_io-mt-x64.so.1.92.0
+#usr/lib/libboost_cobalt_io-x64.so
+usr/lib/libboost_cobalt_io-x64.so.1.92.0
+#usr/lib/libboost_cobalt_io_ssl-mt-x64.so
+usr/lib/libboost_cobalt_io_ssl-mt-x64.so.1.92.0
+#usr/lib/libboost_cobalt_io_ssl-x64.so
+usr/lib/libboost_cobalt_io_ssl-x64.so.1.92.0
+#usr/lib/libboost_container-mt-x64.so
+usr/lib/libboost_container-mt-x64.so.1.92.0
+#usr/lib/libboost_container-x64.so
+usr/lib/libboost_container-x64.so.1.92.0
+#usr/lib/libboost_context-mt-x64.so
+usr/lib/libboost_context-mt-x64.so.1.92.0
+#usr/lib/libboost_contract-mt-x64.so
+usr/lib/libboost_contract-mt-x64.so.1.92.0
+#usr/lib/libboost_contract-x64.so
+usr/lib/libboost_contract-x64.so.1.92.0
+#usr/lib/libboost_date_time-mt-x64.so
+usr/lib/libboost_date_time-mt-x64.so.1.92.0
+#usr/lib/libboost_date_time-x64.so
+usr/lib/libboost_date_time-x64.so.1.92.0
+#usr/lib/libboost_exception-mt-x64.a
+#usr/lib/libboost_exception-x64.a
+#usr/lib/libboost_filesystem-mt-x64.so
+usr/lib/libboost_filesystem-mt-x64.so.1.92.0
+#usr/lib/libboost_filesystem-x64.so
+usr/lib/libboost_filesystem-x64.so.1.92.0
+#usr/lib/libboost_graph-mt-x64.so
+usr/lib/libboost_graph-mt-x64.so.1.92.0
+#usr/lib/libboost_graph-x64.so
+usr/lib/libboost_graph-x64.so.1.92.0
+#usr/lib/libboost_iostreams-mt-x64.so
+usr/lib/libboost_iostreams-mt-x64.so.1.92.0
+#usr/lib/libboost_iostreams-x64.so
+usr/lib/libboost_iostreams-x64.so.1.92.0
+#usr/lib/libboost_json-mt-x64.so
+usr/lib/libboost_json-mt-x64.so.1.92.0
+#usr/lib/libboost_json-x64.so
+usr/lib/libboost_json-x64.so.1.92.0
+#usr/lib/libboost_locale-mt-x64.so
+usr/lib/libboost_locale-mt-x64.so.1.92.0
+#usr/lib/libboost_log-mt-x64.so
+usr/lib/libboost_log-mt-x64.so.1.92.0
+#usr/lib/libboost_log-x64.so
+usr/lib/libboost_log-x64.so.1.92.0
+#usr/lib/libboost_log_setup-mt-x64.so
+usr/lib/libboost_log_setup-mt-x64.so.1.92.0
+#usr/lib/libboost_log_setup-x64.so
+usr/lib/libboost_log_setup-x64.so.1.92.0
+#usr/lib/libboost_math_c99-mt-x64.so
+usr/lib/libboost_math_c99-mt-x64.so.1.92.0
+#usr/lib/libboost_math_c99-x64.so
+usr/lib/libboost_math_c99-x64.so.1.92.0
+#usr/lib/libboost_math_c99f-mt-x64.so
+usr/lib/libboost_math_c99f-mt-x64.so.1.92.0
+#usr/lib/libboost_math_c99f-x64.so
+usr/lib/libboost_math_c99f-x64.so.1.92.0
+#usr/lib/libboost_math_c99l-mt-x64.so
+usr/lib/libboost_math_c99l-mt-x64.so.1.92.0
+#usr/lib/libboost_math_c99l-x64.so
+usr/lib/libboost_math_c99l-x64.so.1.92.0
+#usr/lib/libboost_math_tr1-mt-x64.so
+usr/lib/libboost_math_tr1-mt-x64.so.1.92.0
+#usr/lib/libboost_math_tr1-x64.so
+usr/lib/libboost_math_tr1-x64.so.1.92.0
+#usr/lib/libboost_math_tr1f-mt-x64.so
+usr/lib/libboost_math_tr1f-mt-x64.so.1.92.0
+#usr/lib/libboost_math_tr1f-x64.so
+usr/lib/libboost_math_tr1f-x64.so.1.92.0
+#usr/lib/libboost_math_tr1l-mt-x64.so
+usr/lib/libboost_math_tr1l-mt-x64.so.1.92.0
+#usr/lib/libboost_math_tr1l-x64.so
+usr/lib/libboost_math_tr1l-x64.so.1.92.0
+#usr/lib/libboost_nowide-mt-x64.so
+usr/lib/libboost_nowide-mt-x64.so.1.92.0
+#usr/lib/libboost_nowide-x64.so
+usr/lib/libboost_nowide-x64.so.1.92.0
+#usr/lib/libboost_prg_exec_monitor-mt-x64.so
+usr/lib/libboost_prg_exec_monitor-mt-x64.so.1.92.0
+#usr/lib/libboost_prg_exec_monitor-x64.so
+usr/lib/libboost_prg_exec_monitor-x64.so.1.92.0
+#usr/lib/libboost_process-mt-x64.so
+usr/lib/libboost_process-mt-x64.so.1.92.0
+#usr/lib/libboost_process-x64.so
+usr/lib/libboost_process-x64.so.1.92.0
+#usr/lib/libboost_python310-mt-x64.so
+usr/lib/libboost_python310-mt-x64.so.1.92.0
+#usr/lib/libboost_python310-x64.so
+usr/lib/libboost_python310-x64.so.1.92.0
+#usr/lib/libboost_random-mt-x64.so
+usr/lib/libboost_random-mt-x64.so.1.92.0
+#usr/lib/libboost_random-x64.so
+usr/lib/libboost_random-x64.so.1.92.0
+#usr/lib/libboost_regex-mt-x64.so
+usr/lib/libboost_regex-mt-x64.so.1.92.0
+#usr/lib/libboost_regex-x64.so
+usr/lib/libboost_regex-x64.so.1.92.0
+#usr/lib/libboost_serialization-mt-x64.so
+usr/lib/libboost_serialization-mt-x64.so.1.92.0
+#usr/lib/libboost_serialization-x64.so
+usr/lib/libboost_serialization-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_addr2line-mt-x64.so
+usr/lib/libboost_stacktrace_addr2line-mt-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_addr2line-x64.so
+usr/lib/libboost_stacktrace_addr2line-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_basic-mt-x64.so
+usr/lib/libboost_stacktrace_basic-mt-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_basic-x64.so
+usr/lib/libboost_stacktrace_basic-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_dump-mt-x64.so
+usr/lib/libboost_stacktrace_dump-mt-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_dump-x64.so
+usr/lib/libboost_stacktrace_dump-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_from_exception-mt-x64.so
+usr/lib/libboost_stacktrace_from_exception-mt-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_from_exception-x64.so
+usr/lib/libboost_stacktrace_from_exception-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_noop-mt-x64.so
+usr/lib/libboost_stacktrace_noop-mt-x64.so.1.92.0
+#usr/lib/libboost_stacktrace_noop-x64.so
+usr/lib/libboost_stacktrace_noop-x64.so.1.92.0
+#usr/lib/libboost_test_exec_monitor-mt-x64.a
+#usr/lib/libboost_test_exec_monitor-x64.a
+#usr/lib/libboost_thread-mt-x64.so
+usr/lib/libboost_thread-mt-x64.so.1.92.0
+#usr/lib/libboost_timer-mt-x64.so
+usr/lib/libboost_timer-mt-x64.so.1.92.0
+#usr/lib/libboost_timer-x64.so
+usr/lib/libboost_timer-x64.so.1.92.0
+#usr/lib/libboost_type_erasure-mt-x64.so
+usr/lib/libboost_type_erasure-mt-x64.so.1.92.0
+#usr/lib/libboost_type_erasure-x64.so
+usr/lib/libboost_type_erasure-x64.so.1.92.0
+#usr/lib/libboost_unit_test_framework-mt-x64.so
+usr/lib/libboost_unit_test_framework-mt-x64.so.1.92.0
+#usr/lib/libboost_unit_test_framework-x64.so
+usr/lib/libboost_unit_test_framework-x64.so.1.92.0
+#usr/lib/libboost_url-mt-x64.so
+usr/lib/libboost_url-mt-x64.so.1.92.0
+#usr/lib/libboost_url-x64.so
+usr/lib/libboost_url-x64.so.1.92.0
+#usr/lib/libboost_wave-mt-x64.so
+usr/lib/libboost_wave-mt-x64.so.1.92.0
+#usr/lib/libboost_wave-x64.so
+usr/lib/libboost_wave-x64.so.1.92.0
+#usr/lib/libboost_wserialization-mt-x64.so
+usr/lib/libboost_wserialization-mt-x64.so.1.92.0
+#usr/lib/libboost_wserialization-x64.so
+usr/lib/libboost_wserialization-x64.so.1.92.0
#usr/share/boost_predef
#usr/share/boost_predef/build.jam
#usr/share/boost_predef/tools
@@ -24,7 +24,7 @@
include Config
-VER = 1_90_0
+VER = 1_92_0
THISAPP = boost_$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -39,7 +39,7 @@ MAX_PARALLELISM = $(shell echo $$(( $(SYSTEM_MEMORY) / 512)))
CONFIGURE_OPTIONS = \
--prefix=/usr \
- --layout=system \
+ --layout=tagged \
--without-chrono \
--without-context \
--without-coroutine \
@@ -50,11 +50,10 @@ CONFIGURE_OPTIONS = \
--without-program_options \
--build-dir=serial \
variant=release \
- threading=multi \
+ threading=single,multi \
debug-symbols=off \
pch=off \
link=shared \
- runtime-link=shared \
cflags="$(CFLAGS)" \
cxxflags="$(CXXFLAGS)"
@@ -66,7 +65,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = daaf524dd26c0e24bec6e461749305277b9b86059f3eb3435ae4928a6537eb198234c597324faa40eb372343233daaf5f5aae886160d9833b04992ac57e385c9
+$(DL_FILE)_BLAKE2 = 982237b4fa77fe93ac7e246b9df9a21b1da49ea512628dc41ec67230b4af9566c9b501d2f4c1d5d8c4daf5d0d35e80929deb57f1e758ba8b46569140b3901887
install : $(TARGET)