├── .gitattributes ├── .gitignore ├── Asset ├── Builtin │ ├── Mesh │ │ └── Cube.obj │ └── Texture │ │ └── BlueNoise256.png └── Sample │ ├── 01.TexturedQuad │ ├── MainTexture.png │ └── Quad.obj │ ├── 02.ComputeShader │ └── Output.png │ ├── 03.BindlessTexture │ ├── 0.png │ ├── 1.png │ ├── 2.png │ └── Quad.obj │ ├── 05.PathTracing │ ├── Room.obj │ └── Torus.obj │ ├── 06.DistortionFreeDisplacementMap │ ├── Color.png │ └── Height.png │ ├── 08.FADM │ ├── Mesh0.obj │ └── Mesh1.obj │ ├── 10.FastMarchingMethod │ └── 0.png │ ├── 11.GeodesicDistance │ └── Bunny.obj │ ├── 13.HorizonShadowMap │ └── Height.png │ ├── 15.HeatMethod │ ├── .gitignore │ ├── Bunny_bad.obj │ └── Bunny_good.obj │ ├── 16.MeshCorefinement │ ├── MeshA.obj │ └── MeshB.obj │ ├── 18.ShortestGeodesicPath │ └── Bunny.obj │ ├── 20.MultiLayerOIT │ ├── Hair.obj │ ├── IP_NMIXX_F_HAIR_27_01_shd_specularf0.png │ ├── IP_NMIXX_F_HAIR_27_02_shd_baseColor.png │ └── license.txt │ ├── 21.HeightMapDownsampler │ ├── Input0.png │ ├── OutputNative.png │ └── OutputVolume.png │ └── Test.OT2D │ └── InputDensity.png ├── CMake └── TargetDependency.cmake ├── CMakeLists.txt ├── Documents ├── Gallery │ └── 01.png ├── Samples_01.png ├── Samples_02.png ├── Samples_03.png ├── Samples_04.png ├── Samples_05.png ├── Samples_06.png ├── Samples_07.png ├── Samples_08.png ├── Samples_09.png ├── Samples_10.png ├── Samples_11.png ├── Samples_12.png ├── Samples_13.png ├── Samples_14.png ├── Samples_15.png ├── Samples_16.png ├── Samples_17.png ├── Samples_18.png ├── Samples_19.png ├── Samples_20.png ├── Samples_21.png └── Shader.md ├── External ├── CMakeLists.txt ├── Catch2 │ ├── .bazelrc │ ├── .clang-format │ ├── .clang-tidy │ ├── .conan │ │ ├── build.py │ │ └── test_package │ │ │ ├── CMakeLists.txt │ │ │ ├── conanfile.py │ │ │ └── test_package.cpp │ ├── .gitattributes │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── linux-bazel-builds.yml │ │ │ ├── linux-meson-builds.yml │ │ │ ├── linux-other-builds.yml │ │ │ ├── linux-simple-builds.yml │ │ │ ├── mac-builds-m1.yml │ │ │ ├── mac-builds.yml │ │ │ ├── package-manager-builds.yaml │ │ │ ├── validate-header-guards.yml │ │ │ └── windows-simple-builds.yml │ ├── .gitignore │ ├── BUILD.bazel │ ├── CMake │ │ ├── Catch2Config.cmake.in │ │ ├── CatchConfigOptions.cmake │ │ ├── CatchMiscFunctions.cmake │ │ ├── FindGcov.cmake │ │ ├── FindLcov.cmake │ │ ├── Findcodecov.cmake │ │ ├── catch2-with-main.pc.in │ │ ├── catch2.pc.in │ │ └── llvm-cov-wrapper │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── CODE_OF_CONDUCT.md │ ├── Doxyfile │ ├── LICENSE.txt │ ├── MODULE.bazel │ ├── README.md │ ├── SECURITY.md │ ├── WORKSPACE.bazel │ ├── appveyor.yml │ ├── codecov.yml │ ├── conanfile.py │ ├── data │ │ └── artwork │ │ │ ├── catch2-c-logo.png │ │ │ ├── catch2-hand-logo.png │ │ │ ├── catch2-logo-small-with-background.png │ │ │ └── catch2-logo-small.png │ ├── docs │ │ ├── Readme.md │ │ ├── assertions.md │ │ ├── benchmarks.md │ │ ├── ci-and-misc.md │ │ ├── cmake-integration.md │ │ ├── command-line.md │ │ ├── commercial-users.md │ │ ├── comparing-floating-point-numbers.md │ │ ├── configuration.md │ │ ├── contributing.md │ │ ├── deprecations.md │ │ ├── event-listeners.md │ │ ├── faq.md │ │ ├── generators.md │ │ ├── limitations.md │ │ ├── list-of-examples.md │ │ ├── logging.md │ │ ├── matchers.md │ │ ├── migrate-v2-to-v3.md │ │ ├── opensource-users.md │ │ ├── other-macros.md │ │ ├── own-main.md │ │ ├── release-notes.md │ │ ├── release-process.md │ │ ├── reporter-events.md │ │ ├── reporters.md │ │ ├── skipping-passing-failing.md │ │ ├── test-cases-and-sections.md │ │ ├── test-fixtures.md │ │ ├── tostring.md │ │ ├── tutorial.md │ │ ├── usage-tips.md │ │ └── why-catch.md │ ├── examples │ │ ├── 010-TestCase.cpp │ │ ├── 020-TestCase-1.cpp │ │ ├── 020-TestCase-2.cpp │ │ ├── 030-Asn-Require-Check.cpp │ │ ├── 100-Fix-Section.cpp │ │ ├── 110-Fix-ClassFixture.cpp │ │ ├── 120-Bdd-ScenarioGivenWhenThen.cpp │ │ ├── 210-Evt-EventListeners.cpp │ │ ├── 231-Cfg-OutputStreams.cpp │ │ ├── 232-Cfg-CustomMain.cpp │ │ ├── 300-Gen-OwnGenerator.cpp │ │ ├── 301-Gen-MapTypeConversion.cpp │ │ ├── 302-Gen-Table.cpp │ │ ├── 310-Gen-VariablesInGenerators.cpp │ │ ├── 311-Gen-CustomCapture.cpp │ │ └── CMakeLists.txt │ ├── extras │ │ ├── Catch.cmake │ │ ├── CatchAddTests.cmake │ │ ├── CatchShardTests.cmake │ │ ├── CatchShardTestsImpl.cmake │ │ ├── ParseAndAddCatchTests.cmake │ │ ├── catch_amalgamated.cpp │ │ ├── catch_amalgamated.hpp │ │ ├── gdbinit │ │ └── lldbinit │ ├── fuzzing │ │ ├── CMakeLists.txt │ │ ├── NullOStream.cpp │ │ ├── NullOStream.h │ │ ├── build_fuzzers.sh │ │ ├── fuzz_TestSpecParser.cpp │ │ ├── fuzz_XmlWriter.cpp │ │ └── fuzz_textflow.cpp │ ├── mdsnippets.json │ ├── meson.build │ ├── meson_options.txt │ ├── src │ │ ├── CMakeLists.txt │ │ └── catch2 │ │ │ ├── benchmark │ │ │ ├── catch_benchmark.hpp │ │ │ ├── catch_benchmark_all.hpp │ │ │ ├── catch_chronometer.cpp │ │ │ ├── catch_chronometer.hpp │ │ │ ├── catch_clock.hpp │ │ │ ├── catch_constructor.hpp │ │ │ ├── catch_environment.hpp │ │ │ ├── catch_estimate.hpp │ │ │ ├── catch_execution_plan.hpp │ │ │ ├── catch_optimizer.hpp │ │ │ ├── catch_outlier_classification.hpp │ │ │ ├── catch_sample_analysis.hpp │ │ │ └── detail │ │ │ │ ├── catch_analyse.cpp │ │ │ │ ├── catch_analyse.hpp │ │ │ │ ├── catch_benchmark_function.cpp │ │ │ │ ├── catch_benchmark_function.hpp │ │ │ │ ├── catch_benchmark_stats.hpp │ │ │ │ ├── catch_benchmark_stats_fwd.hpp │ │ │ │ ├── catch_complete_invoke.hpp │ │ │ │ ├── catch_estimate_clock.hpp │ │ │ │ ├── catch_measure.hpp │ │ │ │ ├── catch_repeat.hpp │ │ │ │ ├── catch_run_for_at_least.cpp │ │ │ │ ├── catch_run_for_at_least.hpp │ │ │ │ ├── catch_stats.cpp │ │ │ │ ├── catch_stats.hpp │ │ │ │ └── catch_timing.hpp │ │ │ ├── catch_all.hpp │ │ │ ├── catch_approx.cpp │ │ │ ├── catch_approx.hpp │ │ │ ├── catch_assertion_info.hpp │ │ │ ├── catch_assertion_result.cpp │ │ │ ├── catch_assertion_result.hpp │ │ │ ├── catch_config.cpp │ │ │ ├── catch_config.hpp │ │ │ ├── catch_get_random_seed.cpp │ │ │ ├── catch_get_random_seed.hpp │ │ │ ├── catch_message.cpp │ │ │ ├── catch_message.hpp │ │ │ ├── catch_registry_hub.cpp │ │ │ ├── catch_section_info.hpp │ │ │ ├── catch_session.cpp │ │ │ ├── catch_session.hpp │ │ │ ├── catch_tag_alias.hpp │ │ │ ├── catch_tag_alias_autoregistrar.cpp │ │ │ ├── catch_tag_alias_autoregistrar.hpp │ │ │ ├── catch_template_test_macros.hpp │ │ │ ├── catch_test_case_info.cpp │ │ │ ├── catch_test_case_info.hpp │ │ │ ├── catch_test_macros.hpp │ │ │ ├── catch_test_spec.cpp │ │ │ ├── catch_test_spec.hpp │ │ │ ├── catch_timer.cpp │ │ │ ├── catch_timer.hpp │ │ │ ├── catch_tostring.cpp │ │ │ ├── catch_tostring.hpp │ │ │ ├── catch_totals.cpp │ │ │ ├── catch_totals.hpp │ │ │ ├── catch_translate_exception.cpp │ │ │ ├── catch_translate_exception.hpp │ │ │ ├── catch_user_config.hpp.in │ │ │ ├── catch_version.cpp │ │ │ ├── catch_version.hpp │ │ │ ├── catch_version_macros.hpp │ │ │ ├── generators │ │ │ ├── catch_generator_exception.cpp │ │ │ ├── catch_generator_exception.hpp │ │ │ ├── catch_generators.cpp │ │ │ ├── catch_generators.hpp │ │ │ ├── catch_generators_adapters.hpp │ │ │ ├── catch_generators_all.hpp │ │ │ ├── catch_generators_random.cpp │ │ │ ├── catch_generators_random.hpp │ │ │ └── catch_generators_range.hpp │ │ │ ├── interfaces │ │ │ ├── catch_interfaces_all.hpp │ │ │ ├── catch_interfaces_capture.cpp │ │ │ ├── catch_interfaces_capture.hpp │ │ │ ├── catch_interfaces_config.cpp │ │ │ ├── catch_interfaces_config.hpp │ │ │ ├── catch_interfaces_enum_values_registry.hpp │ │ │ ├── catch_interfaces_exception.cpp │ │ │ ├── catch_interfaces_exception.hpp │ │ │ ├── catch_interfaces_generatortracker.cpp │ │ │ ├── catch_interfaces_generatortracker.hpp │ │ │ ├── catch_interfaces_registry_hub.cpp │ │ │ ├── catch_interfaces_registry_hub.hpp │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ ├── catch_interfaces_reporter.hpp │ │ │ ├── catch_interfaces_reporter_factory.cpp │ │ │ ├── catch_interfaces_reporter_factory.hpp │ │ │ ├── catch_interfaces_tag_alias_registry.hpp │ │ │ ├── catch_interfaces_test_invoker.hpp │ │ │ ├── catch_interfaces_testcase.cpp │ │ │ └── catch_interfaces_testcase.hpp │ │ │ ├── internal │ │ │ ├── catch_assertion_handler.cpp │ │ │ ├── catch_assertion_handler.hpp │ │ │ ├── catch_case_insensitive_comparisons.cpp │ │ │ ├── catch_case_insensitive_comparisons.hpp │ │ │ ├── catch_case_sensitive.hpp │ │ │ ├── catch_clara.cpp │ │ │ ├── catch_clara.hpp │ │ │ ├── catch_commandline.cpp │ │ │ ├── catch_commandline.hpp │ │ │ ├── catch_compare_traits.hpp │ │ │ ├── catch_compiler_capabilities.hpp │ │ │ ├── catch_config_android_logwrite.hpp │ │ │ ├── catch_config_counter.hpp │ │ │ ├── catch_config_prefix_messages.hpp │ │ │ ├── catch_config_static_analysis_support.hpp │ │ │ ├── catch_config_uncaught_exceptions.hpp │ │ │ ├── catch_config_wchar.hpp │ │ │ ├── catch_console_colour.cpp │ │ │ ├── catch_console_colour.hpp │ │ │ ├── catch_console_width.hpp │ │ │ ├── catch_container_nonmembers.hpp │ │ │ ├── catch_context.cpp │ │ │ ├── catch_context.hpp │ │ │ ├── catch_debug_console.cpp │ │ │ ├── catch_debug_console.hpp │ │ │ ├── catch_debugger.cpp │ │ │ ├── catch_debugger.hpp │ │ │ ├── catch_decomposer.cpp │ │ │ ├── catch_decomposer.hpp │ │ │ ├── catch_enforce.cpp │ │ │ ├── catch_enforce.hpp │ │ │ ├── catch_enum_values_registry.cpp │ │ │ ├── catch_enum_values_registry.hpp │ │ │ ├── catch_errno_guard.cpp │ │ │ ├── catch_errno_guard.hpp │ │ │ ├── catch_exception_translator_registry.cpp │ │ │ ├── catch_exception_translator_registry.hpp │ │ │ ├── catch_fatal_condition_handler.cpp │ │ │ ├── catch_fatal_condition_handler.hpp │ │ │ ├── catch_floating_point_helpers.cpp │ │ │ ├── catch_floating_point_helpers.hpp │ │ │ ├── catch_getenv.cpp │ │ │ ├── catch_getenv.hpp │ │ │ ├── catch_is_permutation.hpp │ │ │ ├── catch_istream.cpp │ │ │ ├── catch_istream.hpp │ │ │ ├── catch_jsonwriter.cpp │ │ │ ├── catch_jsonwriter.hpp │ │ │ ├── catch_lazy_expr.cpp │ │ │ ├── catch_lazy_expr.hpp │ │ │ ├── catch_leak_detector.cpp │ │ │ ├── catch_leak_detector.hpp │ │ │ ├── catch_list.cpp │ │ │ ├── catch_list.hpp │ │ │ ├── catch_logical_traits.hpp │ │ │ ├── catch_main.cpp │ │ │ ├── catch_message_info.cpp │ │ │ ├── catch_message_info.hpp │ │ │ ├── catch_meta.hpp │ │ │ ├── catch_move_and_forward.hpp │ │ │ ├── catch_noncopyable.hpp │ │ │ ├── catch_optional.hpp │ │ │ ├── catch_output_redirect.cpp │ │ │ ├── catch_output_redirect.hpp │ │ │ ├── catch_parse_numbers.cpp │ │ │ ├── catch_parse_numbers.hpp │ │ │ ├── catch_platform.hpp │ │ │ ├── catch_polyfills.cpp │ │ │ ├── catch_polyfills.hpp │ │ │ ├── catch_preprocessor.hpp │ │ │ ├── catch_preprocessor_internal_stringify.hpp │ │ │ ├── catch_preprocessor_remove_parens.hpp │ │ │ ├── catch_random_floating_point_helpers.hpp │ │ │ ├── catch_random_integer_helpers.hpp │ │ │ ├── catch_random_number_generator.cpp │ │ │ ├── catch_random_number_generator.hpp │ │ │ ├── catch_random_seed_generation.cpp │ │ │ ├── catch_random_seed_generation.hpp │ │ │ ├── catch_reporter_registry.cpp │ │ │ ├── catch_reporter_registry.hpp │ │ │ ├── catch_reporter_spec_parser.cpp │ │ │ ├── catch_reporter_spec_parser.hpp │ │ │ ├── catch_result_type.cpp │ │ │ ├── catch_result_type.hpp │ │ │ ├── catch_reusable_string_stream.cpp │ │ │ ├── catch_reusable_string_stream.hpp │ │ │ ├── catch_run_context.cpp │ │ │ ├── catch_run_context.hpp │ │ │ ├── catch_section.cpp │ │ │ ├── catch_section.hpp │ │ │ ├── catch_sharding.hpp │ │ │ ├── catch_singletons.cpp │ │ │ ├── catch_singletons.hpp │ │ │ ├── catch_source_line_info.cpp │ │ │ ├── catch_source_line_info.hpp │ │ │ ├── catch_startup_exception_registry.cpp │ │ │ ├── catch_startup_exception_registry.hpp │ │ │ ├── catch_stdstreams.cpp │ │ │ ├── catch_stdstreams.hpp │ │ │ ├── catch_stream_end_stop.hpp │ │ │ ├── catch_string_manip.cpp │ │ │ ├── catch_string_manip.hpp │ │ │ ├── catch_stringref.cpp │ │ │ ├── catch_stringref.hpp │ │ │ ├── catch_tag_alias_registry.cpp │ │ │ ├── catch_tag_alias_registry.hpp │ │ │ ├── catch_template_test_registry.hpp │ │ │ ├── catch_test_case_info_hasher.cpp │ │ │ ├── catch_test_case_info_hasher.hpp │ │ │ ├── catch_test_case_registry_impl.cpp │ │ │ ├── catch_test_case_registry_impl.hpp │ │ │ ├── catch_test_case_tracker.cpp │ │ │ ├── catch_test_case_tracker.hpp │ │ │ ├── catch_test_failure_exception.cpp │ │ │ ├── catch_test_failure_exception.hpp │ │ │ ├── catch_test_macro_impl.hpp │ │ │ ├── catch_test_registry.cpp │ │ │ ├── catch_test_registry.hpp │ │ │ ├── catch_test_run_info.hpp │ │ │ ├── catch_test_spec_parser.cpp │ │ │ ├── catch_test_spec_parser.hpp │ │ │ ├── catch_textflow.cpp │ │ │ ├── catch_textflow.hpp │ │ │ ├── catch_to_string.hpp │ │ │ ├── catch_uncaught_exceptions.cpp │ │ │ ├── catch_uncaught_exceptions.hpp │ │ │ ├── catch_uniform_floating_point_distribution.hpp │ │ │ ├── catch_uniform_integer_distribution.hpp │ │ │ ├── catch_unique_name.hpp │ │ │ ├── catch_unique_ptr.hpp │ │ │ ├── catch_void_type.hpp │ │ │ ├── catch_wildcard_pattern.cpp │ │ │ ├── catch_wildcard_pattern.hpp │ │ │ ├── catch_windows_h_proxy.hpp │ │ │ ├── catch_xmlwriter.cpp │ │ │ └── catch_xmlwriter.hpp │ │ │ ├── matchers │ │ │ ├── catch_matchers.cpp │ │ │ ├── catch_matchers.hpp │ │ │ ├── catch_matchers_all.hpp │ │ │ ├── catch_matchers_container_properties.cpp │ │ │ ├── catch_matchers_container_properties.hpp │ │ │ ├── catch_matchers_contains.hpp │ │ │ ├── catch_matchers_exception.cpp │ │ │ ├── catch_matchers_exception.hpp │ │ │ ├── catch_matchers_floating_point.cpp │ │ │ ├── catch_matchers_floating_point.hpp │ │ │ ├── catch_matchers_predicate.cpp │ │ │ ├── catch_matchers_predicate.hpp │ │ │ ├── catch_matchers_quantifiers.cpp │ │ │ ├── catch_matchers_quantifiers.hpp │ │ │ ├── catch_matchers_range_equals.hpp │ │ │ ├── catch_matchers_string.cpp │ │ │ ├── catch_matchers_string.hpp │ │ │ ├── catch_matchers_templated.cpp │ │ │ ├── catch_matchers_templated.hpp │ │ │ ├── catch_matchers_vector.hpp │ │ │ └── internal │ │ │ │ ├── catch_matchers_impl.cpp │ │ │ │ └── catch_matchers_impl.hpp │ │ │ ├── meson.build │ │ │ └── reporters │ │ │ ├── catch_reporter_automake.cpp │ │ │ ├── catch_reporter_automake.hpp │ │ │ ├── catch_reporter_common_base.cpp │ │ │ ├── catch_reporter_common_base.hpp │ │ │ ├── catch_reporter_compact.cpp │ │ │ ├── catch_reporter_compact.hpp │ │ │ ├── catch_reporter_console.cpp │ │ │ ├── catch_reporter_console.hpp │ │ │ ├── catch_reporter_cumulative_base.cpp │ │ │ ├── catch_reporter_cumulative_base.hpp │ │ │ ├── catch_reporter_event_listener.cpp │ │ │ ├── catch_reporter_event_listener.hpp │ │ │ ├── catch_reporter_helpers.cpp │ │ │ ├── catch_reporter_helpers.hpp │ │ │ ├── catch_reporter_json.cpp │ │ │ ├── catch_reporter_json.hpp │ │ │ ├── catch_reporter_junit.cpp │ │ │ ├── catch_reporter_junit.hpp │ │ │ ├── catch_reporter_multi.cpp │ │ │ ├── catch_reporter_multi.hpp │ │ │ ├── catch_reporter_registrars.cpp │ │ │ ├── catch_reporter_registrars.hpp │ │ │ ├── catch_reporter_sonarqube.cpp │ │ │ ├── catch_reporter_sonarqube.hpp │ │ │ ├── catch_reporter_streaming_base.cpp │ │ │ ├── catch_reporter_streaming_base.hpp │ │ │ ├── catch_reporter_tap.cpp │ │ │ ├── catch_reporter_tap.hpp │ │ │ ├── catch_reporter_teamcity.cpp │ │ │ ├── catch_reporter_teamcity.hpp │ │ │ ├── catch_reporter_xml.cpp │ │ │ ├── catch_reporter_xml.hpp │ │ │ └── catch_reporters_all.hpp │ ├── tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── ExtraTests │ │ │ ├── CMakeLists.txt │ │ │ ├── ToDo.txt │ │ │ ├── X01-PrefixedMacros.cpp │ │ │ ├── X02-DisabledMacros.cpp │ │ │ ├── X03-DisabledExceptions-DefaultHandler.cpp │ │ │ ├── X04-DisabledExceptions-CustomHandler.cpp │ │ │ ├── X05-DeferredStaticChecks.cpp │ │ │ ├── X10-FallbackStringifier.cpp │ │ │ ├── X11-DisableStringification.cpp │ │ │ ├── X12-CustomDebugBreakMacro.cpp │ │ │ ├── X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp │ │ │ ├── X21-PartialTestCaseEvents.cpp │ │ │ ├── X22-BenchmarksInCumulativeReporter.cpp │ │ │ ├── X23-CasingInReporterNames.cpp │ │ │ ├── X24-ListenerStdoutCaptureInMultireporter.cpp │ │ │ ├── X25-ListenerCanAskForCapturedStdout.cpp │ │ │ ├── X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp │ │ │ ├── X27-CapturedStdoutInTestCaseEvents.cpp │ │ │ ├── X28-ListenersGetEventsBeforeReporters.cpp │ │ │ ├── X29-CustomArgumentsForReporters.cpp │ │ │ ├── X30-BazelReporter.cpp │ │ │ ├── X31-DuplicatedTestCases.cpp │ │ │ ├── X32-DuplicatedTestCasesDifferentTags.cpp │ │ │ ├── X33-DuplicatedTestCaseMethods.cpp │ │ │ ├── X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp │ │ │ ├── X35-DuplicatedReporterNames.cpp │ │ │ ├── X36-ReportingCrashWithJunitReporter.cpp │ │ │ ├── X90-WindowsHeaderInclusion.cpp │ │ │ ├── X91-AmalgamatedCatch.cpp │ │ │ ├── X92-NoTests.cpp │ │ │ └── X93-AllSkipped.cpp │ │ ├── SelfTest │ │ │ ├── Baselines │ │ │ │ ├── automake.std.approved.txt │ │ │ │ ├── automake.sw.approved.txt │ │ │ │ ├── automake.sw.multi.approved.txt │ │ │ │ ├── compact.sw.approved.txt │ │ │ │ ├── compact.sw.multi.approved.txt │ │ │ │ ├── console.std.approved.txt │ │ │ │ ├── console.sw.approved.txt │ │ │ │ ├── console.sw.multi.approved.txt │ │ │ │ ├── console.swa4.approved.txt │ │ │ │ ├── default.sw.multi.approved.txt │ │ │ │ ├── junit.sw.approved.txt │ │ │ │ ├── junit.sw.multi.approved.txt │ │ │ │ ├── sonarqube.sw.approved.txt │ │ │ │ ├── sonarqube.sw.multi.approved.txt │ │ │ │ ├── tap.sw.approved.txt │ │ │ │ ├── tap.sw.multi.approved.txt │ │ │ │ ├── teamcity.sw.approved.txt │ │ │ │ ├── teamcity.sw.multi.approved.txt │ │ │ │ ├── xml.sw.approved.txt │ │ │ │ └── xml.sw.multi.approved.txt │ │ │ ├── IntrospectiveTests │ │ │ │ ├── Algorithms.tests.cpp │ │ │ │ ├── AssertionHandler.tests.cpp │ │ │ │ ├── Clara.tests.cpp │ │ │ │ ├── CmdLine.tests.cpp │ │ │ │ ├── CmdLineHelpers.tests.cpp │ │ │ │ ├── ColourImpl.tests.cpp │ │ │ │ ├── Details.tests.cpp │ │ │ │ ├── FloatingPoint.tests.cpp │ │ │ │ ├── GeneratorsImpl.tests.cpp │ │ │ │ ├── Integer.tests.cpp │ │ │ │ ├── InternalBenchmark.tests.cpp │ │ │ │ ├── Json.tests.cpp │ │ │ │ ├── Parse.tests.cpp │ │ │ │ ├── PartTracker.tests.cpp │ │ │ │ ├── RandomNumberGeneration.tests.cpp │ │ │ │ ├── Reporters.tests.cpp │ │ │ │ ├── Sharding.tests.cpp │ │ │ │ ├── Stream.tests.cpp │ │ │ │ ├── String.tests.cpp │ │ │ │ ├── StringManip.tests.cpp │ │ │ │ ├── Tag.tests.cpp │ │ │ │ ├── TestCaseInfoHasher.tests.cpp │ │ │ │ ├── TestSpec.tests.cpp │ │ │ │ ├── TestSpecParser.tests.cpp │ │ │ │ ├── TextFlow.tests.cpp │ │ │ │ ├── ToString.tests.cpp │ │ │ │ ├── Traits.tests.cpp │ │ │ │ ├── UniquePtr.tests.cpp │ │ │ │ └── Xml.tests.cpp │ │ │ ├── Misc │ │ │ │ ├── invalid-test-names.input │ │ │ │ ├── plain-old-tests.input │ │ │ │ └── special-characters-in-file.input │ │ │ ├── TestRegistrations.cpp │ │ │ ├── TimingTests │ │ │ │ └── Sleep.tests.cpp │ │ │ ├── UsageTests │ │ │ │ ├── Approx.tests.cpp │ │ │ │ ├── BDD.tests.cpp │ │ │ │ ├── Benchmark.tests.cpp │ │ │ │ ├── Class.tests.cpp │ │ │ │ ├── Compilation.tests.cpp │ │ │ │ ├── Condition.tests.cpp │ │ │ │ ├── Decomposition.tests.cpp │ │ │ │ ├── EnumToString.tests.cpp │ │ │ │ ├── Exception.tests.cpp │ │ │ │ ├── Generators.tests.cpp │ │ │ │ ├── Matchers.tests.cpp │ │ │ │ ├── MatchersRanges.tests.cpp │ │ │ │ ├── Message.tests.cpp │ │ │ │ ├── Misc.tests.cpp │ │ │ │ ├── Skip.tests.cpp │ │ │ │ ├── ToStringByte.tests.cpp │ │ │ │ ├── ToStringChrono.tests.cpp │ │ │ │ ├── ToStringGeneral.tests.cpp │ │ │ │ ├── ToStringOptional.tests.cpp │ │ │ │ ├── ToStringPair.tests.cpp │ │ │ │ ├── ToStringTuple.tests.cpp │ │ │ │ ├── ToStringVariant.tests.cpp │ │ │ │ ├── ToStringVector.tests.cpp │ │ │ │ ├── ToStringWhich.tests.cpp │ │ │ │ ├── Tricky.tests.cpp │ │ │ │ └── VariadicMacros.tests.cpp │ │ │ └── helpers │ │ │ │ ├── parse_test_spec.cpp │ │ │ │ ├── parse_test_spec.hpp │ │ │ │ ├── range_test_helpers.hpp │ │ │ │ └── type_with_lit_0_comparisons.hpp │ │ ├── TestScripts │ │ │ ├── ConfigureTestsCommon.py │ │ │ ├── DiscoverTests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VerifyRegistration.py │ │ │ │ └── register-tests.cpp │ │ │ ├── testBazelReporter.py │ │ │ ├── testBazelSharding.py │ │ │ ├── testConfigureDefaultReporter.py │ │ │ ├── testConfigureDisable.py │ │ │ ├── testConfigureDisableStringification.py │ │ │ ├── testConfigureExperimentalRedirect.py │ │ │ ├── testPartialTestCaseEvent.py │ │ │ ├── testRandomOrder.py │ │ │ └── testSharding.py │ │ └── meson.build │ ├── third_party │ │ └── clara.hpp │ └── tools │ │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── appveyorBuildConfigurationScript.bat │ │ ├── appveyorMergeCoverageScript.py │ │ ├── appveyorTestRunScript.bat │ │ ├── coverage-helper.cpp │ │ └── installOpenCppCoverage.ps1 │ │ └── scripts │ │ ├── approvalTests.py │ │ ├── approve.py │ │ ├── buildAndTest.cmd │ │ ├── buildAndTest.sh │ │ ├── checkConvenienceHeaders.py │ │ ├── checkDuplicateFilenames.py │ │ ├── checkLicense.py │ │ ├── developBuild.py │ │ ├── extractFeaturesFromReleaseNotes.py │ │ ├── fixWhitespace.py │ │ ├── generateAmalgamatedFiles.py │ │ ├── majorRelease.py │ │ ├── minorRelease.py │ │ ├── patchRelease.py │ │ ├── releaseCommon.py │ │ ├── scriptCommon.py │ │ ├── updateDocumentSnippets.py │ │ └── updateDocumentToC.py ├── D3D12MemAlloc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── NOTICES.txt │ ├── README.md │ ├── docs │ │ ├── .nojekyll │ │ ├── gfx │ │ │ ├── Aliasing.png │ │ │ ├── Linear_allocator_1_algo_default.png │ │ │ ├── Linear_allocator_2_algo_linear.png │ │ │ ├── Linear_allocator_3_free_at_once.png │ │ │ ├── Linear_allocator_4_stack.png │ │ │ ├── Linear_allocator_5_ring_buffer.png │ │ │ ├── Linear_allocator_7_double_stack.png │ │ │ ├── Margins_1.png │ │ │ └── Margins_2.png │ │ └── html │ │ │ ├── _d3_d12_mem_alloc_8h.html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── class_d3_d12_m_a_1_1_allocation-members.html │ │ │ ├── class_d3_d12_m_a_1_1_allocation.html │ │ │ ├── class_d3_d12_m_a_1_1_allocation.png │ │ │ ├── class_d3_d12_m_a_1_1_allocator-members.html │ │ │ ├── class_d3_d12_m_a_1_1_allocator.html │ │ │ ├── class_d3_d12_m_a_1_1_allocator.png │ │ │ ├── class_d3_d12_m_a_1_1_defragmentation_context-members.html │ │ │ ├── class_d3_d12_m_a_1_1_defragmentation_context.html │ │ │ ├── class_d3_d12_m_a_1_1_defragmentation_context.png │ │ │ ├── class_d3_d12_m_a_1_1_pool-members.html │ │ │ ├── class_d3_d12_m_a_1_1_pool.html │ │ │ ├── class_d3_d12_m_a_1_1_pool.png │ │ │ ├── class_d3_d12_m_a_1_1_virtual_block-members.html │ │ │ ├── class_d3_d12_m_a_1_1_virtual_block.html │ │ │ ├── class_d3_d12_m_a_1_1_virtual_block.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── configuration.html │ │ │ ├── custom_pools.html │ │ │ ├── defragmentation.html │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.svg │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_func.html │ │ │ ├── functions_rela.html │ │ │ ├── functions_vars.html │ │ │ ├── general_considerations.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── linear_algorithm.html │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── namespace_d3_d12_m_a.html │ │ │ ├── namespacemembers.html │ │ │ ├── namespacemembers_enum.html │ │ │ ├── namespacemembers_eval.html │ │ │ ├── namespacemembers_func.html │ │ │ ├── namespacemembers_type.html │ │ │ ├── namespaces.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── quick_start.html │ │ │ ├── resource_aliasing.html │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── classes_3.html │ │ │ ├── classes_3.js │ │ │ ├── classes_4.html │ │ │ ├── classes_4.js │ │ │ ├── classes_5.html │ │ │ ├── classes_5.js │ │ │ ├── classes_6.html │ │ │ ├── classes_6.js │ │ │ ├── close.svg │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enums_1.html │ │ │ ├── enums_1.js │ │ │ ├── enums_2.html │ │ │ ├── enums_2.js │ │ │ ├── enums_3.html │ │ │ ├── enums_3.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── enumvalues_1.html │ │ │ ├── enumvalues_1.js │ │ │ ├── enumvalues_2.html │ │ │ ├── enumvalues_2.js │ │ │ ├── enumvalues_3.html │ │ │ ├── enumvalues_3.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── mag_sel.svg │ │ │ ├── namespaces_0.html │ │ │ ├── namespaces_0.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── related_0.html │ │ │ ├── related_0.js │ │ │ ├── related_1.html │ │ │ ├── related_1.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ └── variables_d.js │ │ │ ├── splitbar.png │ │ │ ├── statistics.html │ │ │ ├── struct_d3_d12_m_a_1_1_a_l_l_o_c_a_t_i_o_n___c_a_l_l_b_a_c_k_s-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_a_l_l_o_c_a_t_i_o_n___c_a_l_l_b_a_c_k_s.html │ │ │ ├── struct_d3_d12_m_a_1_1_a_l_l_o_c_a_t_i_o_n___d_e_s_c-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_a_l_l_o_c_a_t_i_o_n___d_e_s_c.html │ │ │ ├── struct_d3_d12_m_a_1_1_a_l_l_o_c_a_t_o_r___d_e_s_c-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_a_l_l_o_c_a_t_o_r___d_e_s_c.html │ │ │ ├── struct_d3_d12_m_a_1_1_budget-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_budget.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___d_e_s_c-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___d_e_s_c.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___m_o_v_e-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___m_o_v_e.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___p_a_s_s___m_o_v_e___i_n_f_o-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___p_a_s_s___m_o_v_e___i_n_f_o.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___s_t_a_t_s-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_d_e_f_r_a_g_m_e_n_t_a_t_i_o_n___s_t_a_t_s.html │ │ │ ├── struct_d3_d12_m_a_1_1_detailed_statistics-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_detailed_statistics.html │ │ │ ├── struct_d3_d12_m_a_1_1_p_o_o_l___d_e_s_c-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_p_o_o_l___d_e_s_c.html │ │ │ ├── struct_d3_d12_m_a_1_1_statistics-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_statistics.html │ │ │ ├── struct_d3_d12_m_a_1_1_total_statistics-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_total_statistics.html │ │ │ ├── struct_d3_d12_m_a_1_1_v_i_r_t_u_a_l___a_l_l_o_c_a_t_i_o_n___d_e_s_c-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_v_i_r_t_u_a_l___a_l_l_o_c_a_t_i_o_n___d_e_s_c.html │ │ │ ├── struct_d3_d12_m_a_1_1_v_i_r_t_u_a_l___a_l_l_o_c_a_t_i_o_n___i_n_f_o-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_v_i_r_t_u_a_l___a_l_l_o_c_a_t_i_o_n___i_n_f_o.html │ │ │ ├── struct_d3_d12_m_a_1_1_v_i_r_t_u_a_l___b_l_o_c_k___d_e_s_c-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_v_i_r_t_u_a_l___b_l_o_c_k___d_e_s_c.html │ │ │ ├── struct_d3_d12_m_a_1_1_virtual_allocation-members.html │ │ │ ├── struct_d3_d12_m_a_1_1_virtual_allocation.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ └── virtual_allocator.html │ ├── include │ │ └── D3D12MemAlloc.h │ ├── src │ │ ├── .editorconfig │ │ ├── CMakeLists.txt │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── D3D12MemAlloc.cpp │ │ ├── D3D12MemAlloc.natvis │ │ ├── D3D12Sample.cpp │ │ ├── Doxyfile │ │ ├── Shaders │ │ │ ├── FxBatchCompilerScript.fxbc │ │ │ ├── PS.hlsl │ │ │ ├── PS_Compiled.h │ │ │ ├── VS.hlsl │ │ │ └── VS_Compiled.h │ │ ├── Tests.cpp │ │ └── Tests.h │ └── tools │ │ └── GpuMemDumpVis │ │ ├── GpuMemDump.schema.json │ │ ├── GpuMemDumpVis.py │ │ ├── README.md │ │ ├── README_files │ │ ├── ExampleOutput.png │ │ ├── Legend_Bkg.png │ │ ├── Legend_Buffer_1.png │ │ ├── Legend_Buffer_2.png │ │ ├── Legend_Buffer_3.png │ │ ├── Legend_Buffer_4.png │ │ ├── Legend_Details.png │ │ ├── Legend_Image_1.png │ │ ├── Legend_Image_2.png │ │ ├── Legend_Image_3.png │ │ ├── Legend_Image_4.png │ │ ├── Legend_Image_Linear.png │ │ ├── Legend_Image_Unknown.png │ │ ├── Legend_Texture_1.png │ │ ├── Legend_Texture_2.png │ │ ├── Legend_Texture_3.png │ │ ├── Legend_Texture_4.png │ │ └── Legend_Unknown.png │ │ └── Sample.json ├── SPIRV-Reflect │ ├── CMakeLists.txt │ ├── LICENSE │ ├── include │ │ └── spirv │ │ │ └── unified1 │ │ │ └── spirv.h │ ├── spirv_reflect.c │ └── spirv_reflect.h ├── VulkanMemoryAllocator │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── LICENSE.txt │ ├── README.md │ ├── bin │ │ ├── Shader.frag.spv │ │ ├── Shader.vert.spv │ │ └── VmaSample_Release_vs2019.exe │ ├── docs │ │ ├── .nojekyll │ │ ├── gfx │ │ │ ├── Aliasing.png │ │ │ ├── Linear_allocator_1_algo_default.png │ │ │ ├── Linear_allocator_2_algo_linear.png │ │ │ ├── Linear_allocator_3_free_at_once.png │ │ │ ├── Linear_allocator_4_stack.png │ │ │ ├── Linear_allocator_5_ring_buffer.png │ │ │ ├── Linear_allocator_7_double_stack.png │ │ │ ├── Margins_1.png │ │ │ ├── Margins_2.png │ │ │ └── VMA_class_diagram.png │ │ └── html │ │ │ ├── allocation_annotation.html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── choosing_memory_type.html │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── configuration.html │ │ │ ├── custom_memory_pools.html │ │ │ ├── debugging_memory_usage.html │ │ │ ├── defragmentation.html │ │ │ ├── deprecated.html │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.svg │ │ │ ├── dynsections.js │ │ │ ├── enabling_buffer_device_address.html │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── general_considerations.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── group__group__alloc.html │ │ │ ├── group__group__init.html │ │ │ ├── group__group__stats.html │ │ │ ├── group__group__virtual.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── memory_mapping.html │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── opengl_interop.html │ │ │ ├── pages.html │ │ │ ├── quick_start.html │ │ │ ├── resource_aliasing.html │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── close.svg │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── mag_sel.svg │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── pages_8.html │ │ │ ├── pages_8.js │ │ │ ├── pages_9.html │ │ │ ├── pages_9.js │ │ │ ├── pages_a.html │ │ │ ├── pages_a.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ └── variables_c.js │ │ │ ├── splitbar.png │ │ │ ├── statistics.html │ │ │ ├── staying_within_budget.html │ │ │ ├── struct_vma_allocation.html │ │ │ ├── struct_vma_allocation_create_info-members.html │ │ │ ├── struct_vma_allocation_create_info.html │ │ │ ├── struct_vma_allocation_info-members.html │ │ │ ├── struct_vma_allocation_info.html │ │ │ ├── struct_vma_allocator.html │ │ │ ├── struct_vma_allocator_create_info-members.html │ │ │ ├── struct_vma_allocator_create_info.html │ │ │ ├── struct_vma_allocator_info-members.html │ │ │ ├── struct_vma_allocator_info.html │ │ │ ├── struct_vma_budget-members.html │ │ │ ├── struct_vma_budget.html │ │ │ ├── struct_vma_defragmentation_context.html │ │ │ ├── struct_vma_defragmentation_info-members.html │ │ │ ├── struct_vma_defragmentation_info.html │ │ │ ├── struct_vma_defragmentation_move-members.html │ │ │ ├── struct_vma_defragmentation_move.html │ │ │ ├── struct_vma_defragmentation_pass_move_info-members.html │ │ │ ├── struct_vma_defragmentation_pass_move_info.html │ │ │ ├── struct_vma_defragmentation_stats-members.html │ │ │ ├── struct_vma_defragmentation_stats.html │ │ │ ├── struct_vma_detailed_statistics-members.html │ │ │ ├── struct_vma_detailed_statistics.html │ │ │ ├── struct_vma_device_memory_callbacks-members.html │ │ │ ├── struct_vma_device_memory_callbacks.html │ │ │ ├── struct_vma_pool.html │ │ │ ├── struct_vma_pool_create_info-members.html │ │ │ ├── struct_vma_pool_create_info.html │ │ │ ├── struct_vma_statistics-members.html │ │ │ ├── struct_vma_statistics.html │ │ │ ├── struct_vma_total_statistics-members.html │ │ │ ├── struct_vma_total_statistics.html │ │ │ ├── struct_vma_virtual_allocation.html │ │ │ ├── struct_vma_virtual_allocation_create_info-members.html │ │ │ ├── struct_vma_virtual_allocation_create_info.html │ │ │ ├── struct_vma_virtual_allocation_info-members.html │ │ │ ├── struct_vma_virtual_allocation_info.html │ │ │ ├── struct_vma_virtual_block.html │ │ │ ├── struct_vma_virtual_block_create_info-members.html │ │ │ ├── struct_vma_virtual_block_create_info.html │ │ │ ├── struct_vma_vulkan_functions-members.html │ │ │ ├── struct_vma_vulkan_functions.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── usage_patterns.html │ │ │ ├── virtual_allocator.html │ │ │ ├── vk__mem__alloc_8h.html │ │ │ ├── vk_amd_device_coherent_memory.html │ │ │ ├── vk_ext_memory_priority.html │ │ │ └── vk_khr_dedicated_allocation.html │ ├── include │ │ └── vk_mem_alloc.h │ ├── media │ │ └── Thumbnail.png │ ├── src │ │ ├── .editorconfig │ │ ├── CMakeLists.txt │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── Shaders │ │ │ ├── CMakeLists.txt │ │ │ ├── CompileShaders.bat │ │ │ ├── Shader.frag │ │ │ ├── Shader.vert │ │ │ └── SparseBindingTest.comp │ │ ├── SparseBindingTest.cpp │ │ ├── SparseBindingTest.h │ │ ├── Tests.cpp │ │ ├── Tests.h │ │ ├── VmaUsage.cpp │ │ ├── VmaUsage.h │ │ ├── VulkanSample.cpp │ │ └── vk_mem_alloc.natvis │ └── tools │ │ └── GpuMemDumpVis │ │ ├── GpuMemDump.schema.json │ │ ├── GpuMemDumpVis.py │ │ ├── README.md │ │ ├── README_files │ │ ├── ExampleOutput.png │ │ ├── Legend_Bkg.png │ │ ├── Legend_Buffer_1.png │ │ ├── Legend_Buffer_2.png │ │ ├── Legend_Buffer_3.png │ │ ├── Legend_Buffer_4.png │ │ ├── Legend_Details.png │ │ ├── Legend_Image_1.png │ │ ├── Legend_Image_2.png │ │ ├── Legend_Image_3.png │ │ ├── Legend_Image_4.png │ │ ├── Legend_Image_Linear.png │ │ ├── Legend_Image_Unknown.png │ │ └── Legend_Unknown.png │ │ └── Sample.json ├── avir │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── avir.h │ ├── avir_dil.h │ ├── avir_float4_sse.h │ ├── avir_float8_avx.h │ └── lancir.h ├── bvh │ ├── .github │ │ └── workflows │ │ │ └── build-and-test.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── chart.png │ ├── cmake │ │ ├── Install.cmake │ │ └── bvh-config.cmake.in │ ├── render.jpg │ ├── src │ │ └── bvh │ │ │ └── v2 │ │ │ ├── CMakeLists.txt │ │ │ ├── bbox.h │ │ │ ├── binned_sah_builder.h │ │ │ ├── bvh.h │ │ │ ├── c_api │ │ │ ├── CMakeLists.txt │ │ │ ├── bvh.cpp │ │ │ ├── bvh.h │ │ │ └── bvh_impl.h │ │ │ ├── default_builder.h │ │ │ ├── executor.h │ │ │ ├── index.h │ │ │ ├── mini_tree_builder.h │ │ │ ├── node.h │ │ │ ├── platform.h │ │ │ ├── ray.h │ │ │ ├── reinsertion_optimizer.h │ │ │ ├── sphere.h │ │ │ ├── split_heuristic.h │ │ │ ├── stack.h │ │ │ ├── stream.h │ │ │ ├── sweep_sah_builder.h │ │ │ ├── thread_pool.h │ │ │ ├── top_down_sah_builder.h │ │ │ ├── tri.h │ │ │ ├── utils.h │ │ │ └── vec.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── benchmark.cpp │ │ ├── c_api_example.c │ │ ├── load_obj.cpp │ │ ├── load_obj.h │ │ ├── scenes │ │ └── cornell_box.obj │ │ ├── serialize.cpp │ │ └── simple_example.cpp ├── bvh_old │ ├── .github │ │ └── workflows │ │ │ └── cmake.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── chart.png │ ├── cmake │ │ └── RunBenchmarkTest.cmake │ ├── include │ │ └── bvh │ │ │ ├── binned_sah_builder.hpp │ │ │ ├── bottom_up_algorithm.hpp │ │ │ ├── bounding_box.hpp │ │ │ ├── bvh.hpp │ │ │ ├── heuristic_primitive_splitter.hpp │ │ │ ├── hierarchy_refitter.hpp │ │ │ ├── leaf_collapser.hpp │ │ │ ├── linear_bvh_builder.hpp │ │ │ ├── locally_ordered_clustering_builder.hpp │ │ │ ├── morton.hpp │ │ │ ├── morton_code_based_builder.hpp │ │ │ ├── node_intersectors.hpp │ │ │ ├── node_layout_optimizer.hpp │ │ │ ├── parallel_reinsertion_optimizer.hpp │ │ │ ├── platform.hpp │ │ │ ├── prefix_sum.hpp │ │ │ ├── primitive_intersectors.hpp │ │ │ ├── radix_sort.hpp │ │ │ ├── ray.hpp │ │ │ ├── sah_based_algorithm.hpp │ │ │ ├── single_ray_traverser.hpp │ │ │ ├── spatial_split_bvh_builder.hpp │ │ │ ├── sphere.hpp │ │ │ ├── sweep_sah_builder.hpp │ │ │ ├── top_down_builder.hpp │ │ │ ├── triangle.hpp │ │ │ ├── utilities.hpp │ │ │ └── vector.hpp │ ├── render.jpg │ └── test │ │ ├── CMakeLists.txt │ │ ├── benchmark.cpp │ │ ├── custom_intersector.cpp │ │ ├── custom_primitive.cpp │ │ ├── node_intersectors.cpp │ │ ├── obj.hpp │ │ ├── refit_bvh.cpp │ │ ├── scene │ │ ├── cornell_box.obj │ │ └── cornell_box_reference.png │ │ └── simple_example.cpp ├── cista │ ├── CMakeLists.txt │ └── cista.h ├── cxxopts-3.1.1 │ ├── BUILD.bazel │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── WORKSPACE │ ├── cmake │ │ └── cxxopts.cmake │ ├── include │ │ ├── CMakeLists.txt │ │ └── cxxopts.hpp │ ├── packaging │ │ ├── cxxopts-config.cmake.in │ │ └── pkgconfig.pc.in │ ├── src │ │ ├── CMakeLists.txt │ │ └── example.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── add-subdirectory-test │ │ └── CMakeLists.txt │ │ ├── catch.hpp │ │ ├── find-package-test │ │ └── CMakeLists.txt │ │ ├── fuzz.cpp │ │ ├── link_a.cpp │ │ ├── link_b.cpp │ │ ├── main.cpp │ │ └── options.cpp ├── cy │ ├── .editorconfig │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cyAlphaDistribution.h │ ├── cyBVH.h │ ├── cyColor.h │ ├── cyCore.h │ ├── cyGL.h │ ├── cyHairFile.h │ ├── cyHeap.h │ ├── cyIVector.h │ ├── cyLightingGrid.h │ ├── cyMatrix.h │ ├── cyPointCloud.h │ ├── cyPolynomial.h │ ├── cyQuat.h │ ├── cySampleElim.h │ ├── cyTimer.h │ ├── cyTriMesh.h │ └── cyVector.h ├── dxc │ ├── CMakeLists.txt │ ├── LICENSE-LLVM.txt │ ├── LICENSE-MIT.txt │ ├── LICENSE-MS.txt │ ├── README.md │ ├── bin │ │ ├── dxc.exe │ │ ├── dxcompiler.dll │ │ └── dxil.dll │ ├── inc │ │ └── rtrc_dxc │ │ │ ├── d3d12shader.h │ │ │ ├── dxcapi.h │ │ │ ├── dxcerrors.h │ │ │ └── dxcisense.h │ └── lib │ │ └── dxcompiler.lib ├── eigen-3.4.0.7z ├── geometry-central │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ ├── EigenChecker.cmake │ │ ├── FetchContent │ │ │ └── CMakeLists.cmake.in │ │ ├── FetchContentLocal.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindSuiteSparse.cmake │ │ └── UpdateCacheVariable.cmake │ ├── deps │ │ ├── CMakeLists.txt │ │ ├── downloads │ │ │ ├── .gitignore │ │ │ └── README.md │ │ ├── happly │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── happly.h │ │ │ ├── happly_logo.jpg │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeLists.txt.in │ │ │ │ ├── main_test.cpp │ │ │ │ └── sampledata │ │ │ │ ├── platonic_shelf.ply │ │ │ │ ├── platonic_shelf_ascii.ply │ │ │ │ └── platonic_shelf_big_endian.ply │ │ ├── nanoflann │ │ │ └── include │ │ │ │ └── nanoflann.hpp │ │ └── nanort │ │ │ └── include │ │ │ └── nanort │ │ │ └── nanort.h │ ├── include │ │ └── geometrycentral │ │ │ ├── numerical │ │ │ ├── linear_algebra_types.h │ │ │ ├── linear_algebra_utilities.h │ │ │ ├── linear_algebra_utilities.ipp │ │ │ ├── linear_solvers.h │ │ │ └── suitesparse_utilities.h │ │ │ ├── pointcloud │ │ │ ├── local_triangulation.h │ │ │ ├── neighborhoods.h │ │ │ ├── point_cloud.h │ │ │ ├── point_cloud.ipp │ │ │ ├── point_cloud_element_types.h │ │ │ ├── point_cloud_element_types.ipp │ │ │ ├── point_cloud_heat_solver.h │ │ │ ├── point_cloud_io.h │ │ │ ├── point_cloud_logic_templates.ipp │ │ │ ├── point_position_frame_geometry.h │ │ │ ├── point_position_geometry.h │ │ │ ├── point_position_normal_geometry.h │ │ │ └── sample_cloud.h │ │ │ ├── surface │ │ │ ├── barycentric_coordinate_helpers.h │ │ │ ├── barycentric_coordinate_helpers.ipp │ │ │ ├── barycentric_vector.h │ │ │ ├── barycentric_vector.ipp │ │ │ ├── base_geometry_interface.h │ │ │ ├── boundary_first_flattening.h │ │ │ ├── common_subdivision.h │ │ │ ├── common_subdivision.ipp │ │ │ ├── detect_symmetry.h │ │ │ ├── direction_fields.h │ │ │ ├── edge_length_geometry.h │ │ │ ├── edge_length_geometry.ipp │ │ │ ├── embedded_geometry_interface.h │ │ │ ├── exact_geodesic_helpers.h │ │ │ ├── exact_geodesic_helpers.ipp │ │ │ ├── exact_geodesics.h │ │ │ ├── exact_polyhedral_geodesics.h │ │ │ ├── extrinsic_geometry_interface.h │ │ │ ├── fast_marching_method.h │ │ │ ├── flip_geodesics.h │ │ │ ├── geodesic_centroidal_voronoi_tessellation.h │ │ │ ├── geometry.h │ │ │ ├── halfedge_element_types.h │ │ │ ├── halfedge_element_types.ipp │ │ │ ├── halfedge_factories.h │ │ │ ├── halfedge_logic_templates.ipp │ │ │ ├── halfedge_mesh.h │ │ │ ├── heat_method_distance.h │ │ │ ├── integer_coordinates_intrinsic_triangulation.h │ │ │ ├── integer_coordinates_intrinsic_triangulation.ipp │ │ │ ├── intersection.h │ │ │ ├── intrinsic_geometry_interface.h │ │ │ ├── intrinsic_mollification.h │ │ │ ├── intrinsic_triangulation.h │ │ │ ├── intrinsic_triangulation.ipp │ │ │ ├── manifold_surface_mesh.h │ │ │ ├── manifold_surface_mesh.ipp │ │ │ ├── mesh_graph_algorithms.h │ │ │ ├── mesh_ray_tracer.h │ │ │ ├── meshio.h │ │ │ ├── mutation_manager.h │ │ │ ├── mutation_manager.ipp │ │ │ ├── normal_coordinates.h │ │ │ ├── parameterize.h │ │ │ ├── poisson_disk_sampler.h │ │ │ ├── polygon_soup_mesh.h │ │ │ ├── quadric_error_simplification.h │ │ │ ├── remeshing.h │ │ │ ├── rich_surface_mesh_data.h │ │ │ ├── rich_surface_mesh_data.ipp │ │ │ ├── signpost_intrinsic_triangulation.h │ │ │ ├── signpost_intrinsic_triangulation.ipp │ │ │ ├── simple_idt.h │ │ │ ├── simple_polygon_mesh.h │ │ │ ├── stripe_patterns.h │ │ │ ├── subdivide.h │ │ │ ├── surface_centers.h │ │ │ ├── surface_mesh.h │ │ │ ├── surface_mesh.ipp │ │ │ ├── surface_mesh_factories.h │ │ │ ├── surface_mesh_factories.ipp │ │ │ ├── surface_point.h │ │ │ ├── surface_point.ipp │ │ │ ├── surgery.h │ │ │ ├── trace_geodesic.h │ │ │ ├── transfer_functions.h │ │ │ ├── tufted_laplacian.h │ │ │ ├── uniformize.h │ │ │ ├── vector_heat_method.h │ │ │ ├── vertex_position_geometry.h │ │ │ └── vertex_position_geometry.ipp │ │ │ └── utilities │ │ │ ├── combining_hash_functions.h │ │ │ ├── curve.h │ │ │ ├── curve.ipp │ │ │ ├── dependent_quantity.h │ │ │ ├── dependent_quantity.ipp │ │ │ ├── disjoint_sets.h │ │ │ ├── eigen_interop_helpers.h │ │ │ ├── element.h │ │ │ ├── element.ipp │ │ │ ├── element_iterators.h │ │ │ ├── element_iterators.ipp │ │ │ ├── elementary_geometry.h │ │ │ ├── elementary_geometry.ipp │ │ │ ├── knn.h │ │ │ ├── mesh_data.h │ │ │ ├── mesh_data.ipp │ │ │ ├── quaternion.h │ │ │ ├── timing.h │ │ │ ├── utilities.h │ │ │ ├── vector2.h │ │ │ ├── vector2.ipp │ │ │ ├── vector3.h │ │ │ └── vector3.ipp │ ├── src │ │ ├── CMakeLists.txt │ │ ├── numerical │ │ │ ├── eigenproblem_solvers.cpp │ │ │ ├── linear_algebra_utilities.cpp │ │ │ ├── linear_solvers.cpp │ │ │ ├── positive_definite_solvers.cpp │ │ │ ├── qr_solvers.cpp │ │ │ ├── square_solvers.cpp │ │ │ └── suitesparse_utilities.cpp │ │ ├── pointcloud │ │ │ ├── local_triangulation.cpp │ │ │ ├── neighborhoods.cpp │ │ │ ├── point_cloud.cpp │ │ │ ├── point_cloud_heat_solver.cpp │ │ │ ├── point_cloud_io.cpp │ │ │ ├── point_position_frame_geometry.cpp │ │ │ ├── point_position_geometry.cpp │ │ │ ├── point_position_normal_geometry.cpp │ │ │ └── sample_cloud.cpp │ │ ├── surface │ │ │ ├── base_geometry_interface.cpp │ │ │ ├── boundary_first_flattening.cpp │ │ │ ├── common_subdivision.cpp │ │ │ ├── detect_symmetry.cpp │ │ │ ├── direction_fields.cpp │ │ │ ├── edge_length_geometry.cpp │ │ │ ├── embedded_geometry_interface.cpp │ │ │ ├── exact_geodesic_helpers.cpp │ │ │ ├── exact_geodesics.cpp │ │ │ ├── exact_polyhedral_geodesics.cpp │ │ │ ├── extrinsic_geometry_interface.cpp │ │ │ ├── fast_marching_method.cpp │ │ │ ├── flip_geodesics.cpp │ │ │ ├── geodesic_centroidal_voronoi_tessellation.cpp │ │ │ ├── halfedge_factories.cpp │ │ │ ├── heat_method_distance.cpp │ │ │ ├── integer_coordinates_intrinsic_triangulation.cpp │ │ │ ├── intersection.cpp │ │ │ ├── intrinsic_geometry_interface.cpp │ │ │ ├── intrinsic_mollification.cpp │ │ │ ├── intrinsic_triangulation.cpp │ │ │ ├── manifold_surface_mesh.cpp │ │ │ ├── mesh_graph_algorithms.cpp │ │ │ ├── mesh_ray_tracer.cpp │ │ │ ├── meshio.cpp │ │ │ ├── mutation_manager.cpp │ │ │ ├── normal_coordinates.cpp │ │ │ ├── parameterize.cpp │ │ │ ├── poisson_disk_sampler.cpp │ │ │ ├── quadric_error_simplification.cpp │ │ │ ├── remeshing.cpp │ │ │ ├── rich_surface_mesh_data.cpp │ │ │ ├── signpost_intrinsic_triangulation.cpp │ │ │ ├── simple_idt.cpp │ │ │ ├── simple_polygon_mesh.cpp │ │ │ ├── stripe_patterns.cpp │ │ │ ├── subdivide.cpp │ │ │ ├── surface_centers.cpp │ │ │ ├── surface_mesh.cpp │ │ │ ├── surface_mesh_factories.cpp │ │ │ ├── surface_point.cpp │ │ │ ├── surgery.cpp │ │ │ ├── trace_geodesic.cpp │ │ │ ├── transfer_functions.cpp │ │ │ ├── tufted_laplacian.cpp │ │ │ ├── uniformize.cpp │ │ │ ├── vector_heat_method.cpp │ │ │ └── vertex_position_geometry.cpp │ │ └── utilities │ │ │ ├── disjoint_sets.cpp │ │ │ ├── elementary_geometry.cpp │ │ │ ├── knn.cpp │ │ │ ├── quaternion.cpp │ │ │ ├── tri_tri_intersect.cpp │ │ │ ├── unit_vector3.cpp │ │ │ └── utilities.cpp │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── assets │ │ ├── bob_small.ply │ │ ├── cat_head.obj │ │ ├── dodecahedron_poly.obj │ │ ├── fan3.obj │ │ ├── fox.ply │ │ ├── hourglass_ico.obj │ │ ├── lego.ply │ │ ├── moebius.obj │ │ ├── platonic_shelf.obj │ │ ├── sphere_small.ply │ │ ├── spot.ply │ │ ├── stl_box_ascii.stl │ │ ├── stl_box_binary.stl │ │ ├── tet.obj │ │ └── triple_vierbein.obj │ │ ├── include │ │ ├── linear_algebra_test_helpers.h │ │ └── load_test_meshes.h │ │ └── src │ │ ├── eigen_interop_helpers_test.cpp │ │ ├── halfedge_geometry_test.cpp │ │ ├── halfedge_mesh_test.cpp │ │ ├── halfedge_mutation_test.cpp │ │ ├── intrinsic_triangulation_test.cpp │ │ ├── linear_algebra_test.cpp │ │ ├── load_test_meshes.cpp │ │ ├── main_test.cpp │ │ ├── point_cloud_test.cpp │ │ ├── stl_reader_test.cpp │ │ └── surface_misc_test.cpp ├── glfw │ ├── .github │ │ ├── CODEOWNERS │ │ └── workflows │ │ │ └── build.yml │ ├── .mailmap │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── Info.plist.in │ │ ├── cmake_uninstall.cmake.in │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEpollShim.cmake │ │ │ └── FindOSMesa.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── CONTRIBUTORS.md │ ├── LICENSE.md │ ├── README.md │ ├── deps │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad │ │ │ ├── gl.h │ │ │ ├── gles2.h │ │ │ └── vulkan.h │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ └── vs2008 │ │ │ └── stdint.h │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── SUPPORT.md │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── compile.dox │ │ ├── context.dox │ │ ├── extra.css │ │ ├── extra.css.map │ │ ├── extra.scss │ │ ├── footer.html │ │ ├── header.html │ │ ├── input.dox │ │ ├── internal.dox │ │ ├── intro.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ ├── spaces.svg │ │ ├── vulkan.dox │ │ └── window.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── glfw.icns │ │ ├── glfw.ico │ │ ├── glfw.rc │ │ ├── heightmap.c │ │ ├── offscreen.c │ │ ├── particles.c │ │ ├── sharing.c │ │ ├── splitview.c │ │ ├── triangle-opengl.c │ │ ├── triangle-opengles.c │ │ ├── wave.c │ │ └── windows.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_time.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── glfw.rc.in │ │ ├── glx_context.c │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── platform.c │ │ ├── platform.h │ │ ├── posix_module.c │ │ ├── posix_poll.c │ │ ├── posix_poll.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_module.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_thread.h │ │ ├── win32_time.c │ │ ├── win32_time.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── allocator.c │ │ ├── clipboard.c │ │ ├── cursor.c │ │ ├── empty.c │ │ ├── events.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── icon.c │ │ ├── iconify.c │ │ ├── inputlag.c │ │ ├── joysticks.c │ │ ├── monitors.c │ │ ├── msaa.c │ │ ├── reopen.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── timeout.c │ │ ├── title.c │ │ ├── triangle-vulkan.c │ │ └── window.c ├── half │ ├── CMakeLists.txt │ ├── ChangeLog.txt │ ├── LICENSE.txt │ ├── README.txt │ └── include │ │ └── half.hpp ├── imgui │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── imconfig.h │ ├── imfilebrowser-LICENSE │ ├── imfilebrowser.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── json │ ├── CMakeLists.txt │ └── json.hpp ├── libigl-2.5.0 │ ├── .gitattributes │ ├── .gitignore │ ├── .mailmap │ ├── CMakeLists.txt │ ├── LICENSE.GPL │ ├── LICENSE.MPL2 │ ├── LibiglOptions.cmake.sample │ ├── README.md │ ├── cmake │ │ ├── find │ │ │ ├── FindGMP.cmake │ │ │ ├── FindMOSEK.cmake │ │ │ └── FindMPFR.cmake │ │ ├── igl │ │ │ ├── igl_add_library.cmake │ │ │ ├── igl_add_test.cmake │ │ │ ├── igl_add_tutorial.cmake │ │ │ ├── igl_copy_dll.cmake │ │ │ ├── igl_include.cmake │ │ │ ├── igl_install.cmake │ │ │ ├── igl_target_sources.cmake │ │ │ ├── igl_windows.cmake │ │ │ ├── libigl-config.cmake.in │ │ │ └── modules │ │ │ │ ├── copyleft │ │ │ │ ├── cgal.cmake │ │ │ │ ├── comiso.cmake │ │ │ │ ├── core.cmake │ │ │ │ └── tetgen.cmake │ │ │ │ ├── core.cmake │ │ │ │ ├── embree.cmake │ │ │ │ ├── glfw.cmake │ │ │ │ ├── imgui.cmake │ │ │ │ ├── opengl.cmake │ │ │ │ ├── predicates.cmake │ │ │ │ ├── restricted │ │ │ │ ├── matlab.cmake │ │ │ │ ├── mosek.cmake │ │ │ │ └── triangle.cmake │ │ │ │ ├── spectra.cmake │ │ │ │ ├── stb.cmake │ │ │ │ └── xml.cmake │ │ ├── libigl.cmake │ │ ├── misc │ │ │ ├── HunterGate.cmake │ │ │ └── OSXFixDylibReferences.cmake │ │ └── recipes │ │ │ ├── external │ │ │ ├── boost.cmake │ │ │ ├── catch2.cmake │ │ │ ├── cgal.cmake │ │ │ ├── comiso.cmake │ │ │ ├── eigen.cmake │ │ │ ├── embree.cmake │ │ │ ├── glad.cmake │ │ │ ├── glfw.cmake │ │ │ ├── gmp.cmake │ │ │ ├── gmp_mpfr.cmake │ │ │ ├── imgui.cmake │ │ │ ├── imguizmo.cmake │ │ │ ├── libigl_imgui_fonts.cmake │ │ │ ├── libigl_tests_data.cmake │ │ │ ├── libigl_tutorial_data.cmake │ │ │ ├── mpfr.cmake │ │ │ ├── predicates.cmake │ │ │ ├── spectra.cmake │ │ │ ├── stb.cmake │ │ │ ├── tetgen.cmake │ │ │ ├── tinyxml2.cmake │ │ │ └── triangle.cmake │ │ │ └── hunter │ │ │ ├── boost.cmake │ │ │ ├── catch2.cmake │ │ │ ├── cgal.cmake │ │ │ ├── comiso.cmake │ │ │ ├── eigen.cmake │ │ │ ├── embree.cmake │ │ │ ├── glad.cmake │ │ │ ├── glfw.cmake │ │ │ ├── gmp.cmake │ │ │ ├── imgui.cmake │ │ │ ├── imguizmo.cmake │ │ │ ├── libigl_imgui_fonts.cmake │ │ │ ├── libigl_tests_data.cmake │ │ │ ├── libigl_tutorial_data.cmake │ │ │ ├── mpfr.cmake │ │ │ ├── predicates.cmake │ │ │ ├── stb.cmake │ │ │ ├── tetgen.cmake │ │ │ ├── tinyxml2.cmake │ │ │ └── triangle.cmake │ ├── docs │ │ ├── doxygen-awesome.css │ │ ├── doxygen.conf │ │ └── index.md │ ├── include │ │ └── igl │ │ │ ├── AABB.cpp │ │ │ ├── AABB.h │ │ │ ├── ARAPEnergyType.h │ │ │ ├── AtA_cached.cpp │ │ │ ├── AtA_cached.h │ │ │ ├── C_STR.h │ │ │ ├── EPS.cpp │ │ │ ├── EPS.h │ │ │ ├── FastWindingNumberForSoups.h │ │ │ ├── FileEncoding.h │ │ │ ├── FileMemoryStream.h │ │ │ ├── HalfEdgeIterator.cpp │ │ │ ├── HalfEdgeIterator.h │ │ │ ├── Hit.h │ │ │ ├── IGL_ASSERT.h │ │ │ ├── IO │ │ │ ├── IndexComparison.h │ │ │ ├── LinSpaced.h │ │ │ ├── MappingEnergyType.h │ │ │ ├── MeshBooleanType.h │ │ │ ├── MshLoader.cpp │ │ │ ├── MshLoader.h │ │ │ ├── MshSaver.cpp │ │ │ ├── MshSaver.h │ │ │ ├── NormalType.h │ │ │ ├── ONE.h │ │ │ ├── PI.h │ │ │ ├── REDRUM.h │ │ │ ├── STR.h │ │ │ ├── Singular_Value_Decomposition_Givens_QR_Factorization_Kernel.hpp │ │ │ ├── Singular_Value_Decomposition_Jacobi_Conjugation_Kernel.hpp │ │ │ ├── Singular_Value_Decomposition_Kernel_Declarations.hpp │ │ │ ├── Singular_Value_Decomposition_Main_Kernel_Body.hpp │ │ │ ├── Singular_Value_Decomposition_Preamble.hpp │ │ │ ├── SolverStatus.h │ │ │ ├── SortableRow.h │ │ │ ├── Timer.h │ │ │ ├── Viewport.h │ │ │ ├── WindingNumberAABB.h │ │ │ ├── WindingNumberMethod.h │ │ │ ├── WindingNumberTree.h │ │ │ ├── ZERO.h │ │ │ ├── accumarray.cpp │ │ │ ├── accumarray.h │ │ │ ├── active_set.cpp │ │ │ ├── active_set.h │ │ │ ├── adjacency_list.cpp │ │ │ ├── adjacency_list.h │ │ │ ├── adjacency_matrix.cpp │ │ │ ├── adjacency_matrix.h │ │ │ ├── all.cpp │ │ │ ├── all.h │ │ │ ├── all_pairs_distances.cpp │ │ │ ├── all_pairs_distances.h │ │ │ ├── ambient_occlusion.cpp │ │ │ ├── ambient_occlusion.h │ │ │ ├── angular_distance.cpp │ │ │ ├── angular_distance.h │ │ │ ├── any.cpp │ │ │ ├── any.h │ │ │ ├── arap.cpp │ │ │ ├── arap.h │ │ │ ├── arap_dof.cpp │ │ │ ├── arap_dof.h │ │ │ ├── arap_linear_block.cpp │ │ │ ├── arap_linear_block.h │ │ │ ├── arap_rhs.cpp │ │ │ ├── arap_rhs.h │ │ │ ├── average_from_edges_onto_vertices.cpp │ │ │ ├── average_from_edges_onto_vertices.h │ │ │ ├── average_onto_faces.cpp │ │ │ ├── average_onto_faces.h │ │ │ ├── average_onto_vertices.cpp │ │ │ ├── average_onto_vertices.h │ │ │ ├── avg_edge_length.cpp │ │ │ ├── avg_edge_length.h │ │ │ ├── axis_angle_to_quat.cpp │ │ │ ├── axis_angle_to_quat.h │ │ │ ├── barycenter.cpp │ │ │ ├── barycenter.h │ │ │ ├── barycentric_coordinates.cpp │ │ │ ├── barycentric_coordinates.h │ │ │ ├── barycentric_interpolation.cpp │ │ │ ├── barycentric_interpolation.h │ │ │ ├── basename.cpp │ │ │ ├── basename.h │ │ │ ├── bbw.cpp │ │ │ ├── bbw.h │ │ │ ├── bezier.cpp │ │ │ ├── bezier.h │ │ │ ├── bfs.cpp │ │ │ ├── bfs.h │ │ │ ├── bfs_orient.cpp │ │ │ ├── bfs_orient.h │ │ │ ├── biharmonic_coordinates.cpp │ │ │ ├── biharmonic_coordinates.h │ │ │ ├── bijective_composite_harmonic_mapping.cpp │ │ │ ├── bijective_composite_harmonic_mapping.h │ │ │ ├── blkdiag.cpp │ │ │ ├── blkdiag.h │ │ │ ├── blue_noise.cpp │ │ │ ├── blue_noise.h │ │ │ ├── bone_parents.cpp │ │ │ ├── bone_parents.h │ │ │ ├── boundary_conditions.cpp │ │ │ ├── boundary_conditions.h │ │ │ ├── boundary_facets.cpp │ │ │ ├── boundary_facets.h │ │ │ ├── boundary_loop.cpp │ │ │ ├── boundary_loop.h │ │ │ ├── bounding_box.cpp │ │ │ ├── bounding_box.h │ │ │ ├── bounding_box_diagonal.cpp │ │ │ ├── bounding_box_diagonal.h │ │ │ ├── canonical_quaternions.cpp │ │ │ ├── canonical_quaternions.h │ │ │ ├── cat.cpp │ │ │ ├── cat.h │ │ │ ├── ceil.cpp │ │ │ ├── ceil.h │ │ │ ├── centroid.cpp │ │ │ ├── centroid.h │ │ │ ├── circulation.cpp │ │ │ ├── circulation.h │ │ │ ├── circumradius.cpp │ │ │ ├── circumradius.h │ │ │ ├── collapse_edge.cpp │ │ │ ├── collapse_edge.h │ │ │ ├── collapse_small_triangles.cpp │ │ │ ├── collapse_small_triangles.h │ │ │ ├── colon.cpp │ │ │ ├── colon.h │ │ │ ├── colormap.cpp │ │ │ ├── colormap.h │ │ │ ├── column_to_quats.cpp │ │ │ ├── column_to_quats.h │ │ │ ├── columnize.cpp │ │ │ ├── columnize.h │ │ │ ├── comb_cross_field.cpp │ │ │ ├── comb_cross_field.h │ │ │ ├── comb_frame_field.cpp │ │ │ ├── comb_frame_field.h │ │ │ ├── comb_line_field.cpp │ │ │ ├── comb_line_field.h │ │ │ ├── combine.cpp │ │ │ ├── combine.h │ │ │ ├── compute_frame_field_bisectors.cpp │ │ │ ├── compute_frame_field_bisectors.h │ │ │ ├── connect_boundary_to_infinity.cpp │ │ │ ├── connect_boundary_to_infinity.h │ │ │ ├── connected_components.cpp │ │ │ ├── connected_components.h │ │ │ ├── copyleft │ │ │ ├── README.md │ │ │ ├── cgal │ │ │ │ ├── BinaryWindingNumberOperations.h │ │ │ │ ├── CGAL_includes.hpp │ │ │ │ ├── CSGTree.h │ │ │ │ ├── RemeshSelfIntersectionsParam.h │ │ │ │ ├── SelfIntersectMesh.h │ │ │ │ ├── assign.cpp │ │ │ │ ├── assign.h │ │ │ │ ├── assign_scalar.cpp │ │ │ │ ├── assign_scalar.h │ │ │ │ ├── barycenter.cpp │ │ │ │ ├── cell_adjacency.cpp │ │ │ │ ├── cell_adjacency.h │ │ │ │ ├── closest_facet.cpp │ │ │ │ ├── closest_facet.h │ │ │ │ ├── complex_to_mesh.cpp │ │ │ │ ├── complex_to_mesh.h │ │ │ │ ├── component_inside_component.cpp │ │ │ │ ├── component_inside_component.h │ │ │ │ ├── convex_hull.cpp │ │ │ │ ├── convex_hull.h │ │ │ │ ├── coplanar.cpp │ │ │ │ ├── coplanar.h │ │ │ │ ├── delaunay_triangulation.cpp │ │ │ │ ├── delaunay_triangulation.h │ │ │ │ ├── extract_cells.cpp │ │ │ │ ├── extract_cells.h │ │ │ │ ├── extract_cells_single_component.cpp │ │ │ │ ├── extract_cells_single_component.h │ │ │ │ ├── extract_feature.cpp │ │ │ │ ├── extract_feature.h │ │ │ │ ├── fast_winding_number.cpp │ │ │ │ ├── fast_winding_number.h │ │ │ │ ├── half_space_box.cpp │ │ │ │ ├── half_space_box.h │ │ │ │ ├── hausdorff.cpp │ │ │ │ ├── hausdorff.h │ │ │ │ ├── incircle.cpp │ │ │ │ ├── incircle.h │ │ │ │ ├── insert_into_cdt.cpp │ │ │ │ ├── insert_into_cdt.h │ │ │ │ ├── insphere.cpp │ │ │ │ ├── insphere.h │ │ │ │ ├── intersect_other.cpp │ │ │ │ ├── intersect_other.h │ │ │ │ ├── intersect_with_half_space.cpp │ │ │ │ ├── intersect_with_half_space.h │ │ │ │ ├── lexicographic_triangulation.cpp │ │ │ │ ├── lexicographic_triangulation.h │ │ │ │ ├── list_to_matrix.cpp │ │ │ │ ├── mesh_boolean.cpp │ │ │ │ ├── mesh_boolean.h │ │ │ │ ├── mesh_boolean_type_to_funcs.cpp │ │ │ │ ├── mesh_boolean_type_to_funcs.h │ │ │ │ ├── mesh_to_cgal_triangle_list.cpp │ │ │ │ ├── mesh_to_cgal_triangle_list.h │ │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ │ ├── mesh_to_polyhedron.h │ │ │ │ ├── minkowski_sum.cpp │ │ │ │ ├── minkowski_sum.h │ │ │ │ ├── order_facets_around_edge.cpp │ │ │ │ ├── order_facets_around_edge.h │ │ │ │ ├── order_facets_around_edges.cpp │ │ │ │ ├── order_facets_around_edges.h │ │ │ │ ├── orient2D.cpp │ │ │ │ ├── orient2D.h │ │ │ │ ├── orient3D.cpp │ │ │ │ ├── orient3D.h │ │ │ │ ├── outer_edge.cpp │ │ │ │ ├── outer_edge.h │ │ │ │ ├── outer_facet.cpp │ │ │ │ ├── outer_facet.h │ │ │ │ ├── outer_hull.cpp │ │ │ │ ├── outer_hull.h │ │ │ │ ├── outer_hull_legacy.cpp │ │ │ │ ├── outer_hull_legacy.h │ │ │ │ ├── outer_vertex.cpp │ │ │ │ ├── outer_vertex.h │ │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ │ ├── peel_outer_hull_layers.h │ │ │ │ ├── peel_winding_number_layers.cpp │ │ │ │ ├── peel_winding_number_layers.h │ │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ │ ├── piecewise_constant_winding_number.h │ │ │ │ ├── point_areas.cpp │ │ │ │ ├── point_areas.h │ │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ │ ├── point_mesh_squared_distance.h │ │ │ │ ├── point_segment_squared_distance.cpp │ │ │ │ ├── point_segment_squared_distance.h │ │ │ │ ├── point_solid_signed_squared_distance.cpp │ │ │ │ ├── point_solid_signed_squared_distance.h │ │ │ │ ├── point_triangle_squared_distance.cpp │ │ │ │ ├── point_triangle_squared_distance.h │ │ │ │ ├── points_inside_component.cpp │ │ │ │ ├── points_inside_component.h │ │ │ │ ├── polyhedron_to_mesh.cpp │ │ │ │ ├── polyhedron_to_mesh.h │ │ │ │ ├── projected_cdt.cpp │ │ │ │ ├── projected_cdt.h │ │ │ │ ├── projected_delaunay.cpp │ │ │ │ ├── projected_delaunay.h │ │ │ │ ├── propagate_winding_numbers.cpp │ │ │ │ ├── propagate_winding_numbers.h │ │ │ │ ├── read_triangle_mesh.cpp │ │ │ │ ├── read_triangle_mesh.h │ │ │ │ ├── relabel_small_immersed_cells.cpp │ │ │ │ ├── relabel_small_immersed_cells.h │ │ │ │ ├── remesh_intersections.cpp │ │ │ │ ├── remesh_intersections.h │ │ │ │ ├── remesh_self_intersections.cpp │ │ │ │ ├── remesh_self_intersections.h │ │ │ │ ├── remove_unreferenced.cpp │ │ │ │ ├── resolve_intersections.cpp │ │ │ │ ├── resolve_intersections.h │ │ │ │ ├── row_to_point.cpp │ │ │ │ ├── row_to_point.h │ │ │ │ ├── segment_segment_squared_distance.cpp │ │ │ │ ├── segment_segment_squared_distance.h │ │ │ │ ├── signed_distance_isosurface.cpp │ │ │ │ ├── signed_distance_isosurface.h │ │ │ │ ├── slice.cpp │ │ │ │ ├── slice_mask.cpp │ │ │ │ ├── snap_rounding.cpp │ │ │ │ ├── snap_rounding.h │ │ │ │ ├── string_to_mesh_boolean_type.cpp │ │ │ │ ├── string_to_mesh_boolean_type.h │ │ │ │ ├── subdivide_segments.cpp │ │ │ │ ├── subdivide_segments.h │ │ │ │ ├── submesh_aabb_tree.cpp │ │ │ │ ├── submesh_aabb_tree.h │ │ │ │ ├── triangle_triangle_squared_distance.cpp │ │ │ │ ├── triangle_triangle_squared_distance.h │ │ │ │ ├── triangulate.cpp │ │ │ │ ├── triangulate.h │ │ │ │ ├── trim_with_solid.cpp │ │ │ │ ├── trim_with_solid.h │ │ │ │ ├── unique.cpp │ │ │ │ ├── unique_rows.cpp │ │ │ │ ├── wire_mesh.cpp │ │ │ │ └── wire_mesh.h │ │ │ ├── comiso │ │ │ │ ├── frame_field.cpp │ │ │ │ ├── frame_field.h │ │ │ │ ├── miq.cpp │ │ │ │ ├── miq.h │ │ │ │ ├── nrosy.cpp │ │ │ │ └── nrosy.h │ │ │ ├── marching_cubes.cpp │ │ │ ├── marching_cubes.h │ │ │ ├── marching_cubes_tables.h │ │ │ ├── opengl2 │ │ │ │ ├── render_to_tga.cpp │ │ │ │ ├── render_to_tga.h │ │ │ │ ├── texture_from_tga.cpp │ │ │ │ ├── texture_from_tga.h │ │ │ │ ├── tga.cpp │ │ │ │ └── tga.h │ │ │ ├── progressive_hulls.cpp │ │ │ ├── progressive_hulls.h │ │ │ ├── progressive_hulls_cost_and_placement.cpp │ │ │ ├── progressive_hulls_cost_and_placement.h │ │ │ ├── quadprog.cpp │ │ │ ├── quadprog.h │ │ │ └── tetgen │ │ │ │ ├── README │ │ │ │ ├── cdt.cpp │ │ │ │ ├── cdt.h │ │ │ │ ├── mesh_to_tetgenio.cpp │ │ │ │ ├── mesh_to_tetgenio.h │ │ │ │ ├── mesh_with_skeleton.cpp │ │ │ │ ├── mesh_with_skeleton.h │ │ │ │ ├── tetgenio_to_tetmesh.cpp │ │ │ │ ├── tetgenio_to_tetmesh.h │ │ │ │ ├── tetrahedralize.cpp │ │ │ │ └── tetrahedralize.h │ │ │ ├── cotmatrix.cpp │ │ │ ├── cotmatrix.h │ │ │ ├── cotmatrix_entries.cpp │ │ │ ├── cotmatrix_entries.h │ │ │ ├── cotmatrix_intrinsic.cpp │ │ │ ├── cotmatrix_intrinsic.h │ │ │ ├── count.cpp │ │ │ ├── count.h │ │ │ ├── covariance_scatter_matrix.cpp │ │ │ ├── covariance_scatter_matrix.h │ │ │ ├── cr_vector_curvature_correction.cpp │ │ │ ├── cr_vector_curvature_correction.h │ │ │ ├── cr_vector_laplacian.cpp │ │ │ ├── cr_vector_laplacian.h │ │ │ ├── cr_vector_mass.cpp │ │ │ ├── cr_vector_mass.h │ │ │ ├── cross.cpp │ │ │ ├── cross.h │ │ │ ├── cross_field_mismatch.cpp │ │ │ ├── cross_field_mismatch.h │ │ │ ├── crouzeix_raviart_cotmatrix.cpp │ │ │ ├── crouzeix_raviart_cotmatrix.h │ │ │ ├── crouzeix_raviart_massmatrix.cpp │ │ │ ├── crouzeix_raviart_massmatrix.h │ │ │ ├── cumprod.cpp │ │ │ ├── cumprod.h │ │ │ ├── cumsum.cpp │ │ │ ├── cumsum.h │ │ │ ├── curved_hessian_energy.cpp │ │ │ ├── curved_hessian_energy.h │ │ │ ├── cut_mesh.cpp │ │ │ ├── cut_mesh.h │ │ │ ├── cut_mesh_from_singularities.cpp │ │ │ ├── cut_mesh_from_singularities.h │ │ │ ├── cut_to_disk.cpp │ │ │ ├── cut_to_disk.h │ │ │ ├── cylinder.cpp │ │ │ ├── cylinder.h │ │ │ ├── dated_copy.cpp │ │ │ ├── dated_copy.h │ │ │ ├── decimate.cpp │ │ │ ├── decimate.h │ │ │ ├── decimate_callback_types.h │ │ │ ├── decimate_trivial_callbacks.cpp │ │ │ ├── decimate_trivial_callbacks.h │ │ │ ├── default_num_threads.cpp │ │ │ ├── default_num_threads.h │ │ │ ├── deform_skeleton.cpp │ │ │ ├── deform_skeleton.h │ │ │ ├── delaunay_triangulation.cpp │ │ │ ├── delaunay_triangulation.h │ │ │ ├── dfs.cpp │ │ │ ├── dfs.h │ │ │ ├── dihedral_angles.cpp │ │ │ ├── dihedral_angles.h │ │ │ ├── dijkstra.cpp │ │ │ ├── dijkstra.h │ │ │ ├── direct_delta_mush.cpp │ │ │ ├── direct_delta_mush.h │ │ │ ├── directed_edge_orientations.cpp │ │ │ ├── directed_edge_orientations.h │ │ │ ├── directed_edge_parents.cpp │ │ │ ├── directed_edge_parents.h │ │ │ ├── dirname.cpp │ │ │ ├── dirname.h │ │ │ ├── dot.cpp │ │ │ ├── dot.h │ │ │ ├── dot_row.cpp │ │ │ ├── dot_row.h │ │ │ ├── doublearea.cpp │ │ │ ├── doublearea.h │ │ │ ├── dqs.cpp │ │ │ ├── dqs.h │ │ │ ├── dual_contouring.cpp │ │ │ ├── dual_contouring.h │ │ │ ├── ears.cpp │ │ │ ├── ears.h │ │ │ ├── edge_collapse_is_valid.cpp │ │ │ ├── edge_collapse_is_valid.h │ │ │ ├── edge_crossings.cpp │ │ │ ├── edge_crossings.h │ │ │ ├── edge_exists_near.cpp │ │ │ ├── edge_exists_near.h │ │ │ ├── edge_flaps.cpp │ │ │ ├── edge_flaps.h │ │ │ ├── edge_lengths.cpp │ │ │ ├── edge_lengths.h │ │ │ ├── edge_midpoints.cpp │ │ │ ├── edge_midpoints.h │ │ │ ├── edge_topology.cpp │ │ │ ├── edge_topology.h │ │ │ ├── edge_vectors.cpp │ │ │ ├── edge_vectors.h │ │ │ ├── edges.cpp │ │ │ ├── edges.h │ │ │ ├── edges_to_path.cpp │ │ │ ├── edges_to_path.h │ │ │ ├── eigs.cpp │ │ │ ├── eigs.h │ │ │ ├── embree │ │ │ ├── EmbreeDevice.h │ │ │ ├── EmbreeIntersector.cpp │ │ │ ├── EmbreeIntersector.h │ │ │ ├── EmbreeRenderer.cpp │ │ │ ├── EmbreeRenderer.h │ │ │ ├── ambient_occlusion.cpp │ │ │ ├── ambient_occlusion.h │ │ │ ├── bone_heat.cpp │ │ │ ├── bone_heat.h │ │ │ ├── bone_visible.cpp │ │ │ ├── bone_visible.h │ │ │ ├── line_mesh_intersection.cpp │ │ │ ├── line_mesh_intersection.h │ │ │ ├── reorient_facets_raycast.cpp │ │ │ ├── reorient_facets_raycast.h │ │ │ ├── shape_diameter_function.cpp │ │ │ ├── shape_diameter_function.h │ │ │ ├── unproject_in_mesh.cpp │ │ │ ├── unproject_in_mesh.h │ │ │ ├── unproject_onto_mesh.cpp │ │ │ └── unproject_onto_mesh.h │ │ │ ├── euler_characteristic.cpp │ │ │ ├── euler_characteristic.h │ │ │ ├── exact_geodesic.cpp │ │ │ ├── exact_geodesic.h │ │ │ ├── example_fun.cpp │ │ │ ├── example_fun.h │ │ │ ├── exploded_view.cpp │ │ │ ├── exploded_view.h │ │ │ ├── extension.cpp │ │ │ ├── extension.h │ │ │ ├── exterior_edges.cpp │ │ │ ├── exterior_edges.h │ │ │ ├── extract_manifold_patches.cpp │ │ │ ├── extract_manifold_patches.h │ │ │ ├── extract_non_manifold_edge_curves.cpp │ │ │ ├── extract_non_manifold_edge_curves.h │ │ │ ├── face_areas.cpp │ │ │ ├── face_areas.h │ │ │ ├── face_occurrences.cpp │ │ │ ├── face_occurrences.h │ │ │ ├── faces_first.cpp │ │ │ ├── faces_first.h │ │ │ ├── facet_adjacency_matrix.cpp │ │ │ ├── facet_adjacency_matrix.h │ │ │ ├── facet_components.cpp │ │ │ ├── facet_components.h │ │ │ ├── false_barycentric_subdivision.cpp │ │ │ ├── false_barycentric_subdivision.h │ │ │ ├── fast_find_intersections.cpp │ │ │ ├── fast_find_intersections.h │ │ │ ├── fast_find_self_intersections.cpp │ │ │ ├── fast_find_self_intersections.h │ │ │ ├── fast_winding_number.cpp │ │ │ ├── fast_winding_number.h │ │ │ ├── file_contents_as_string.cpp │ │ │ ├── file_contents_as_string.h │ │ │ ├── file_dialog_open.cpp │ │ │ ├── file_dialog_open.h │ │ │ ├── file_dialog_save.cpp │ │ │ ├── file_dialog_save.h │ │ │ ├── file_exists.cpp │ │ │ ├── file_exists.h │ │ │ ├── find.cpp │ │ │ ├── find.h │ │ │ ├── find_cross_field_singularities.cpp │ │ │ ├── find_cross_field_singularities.h │ │ │ ├── find_zero.cpp │ │ │ ├── find_zero.h │ │ │ ├── fit_cubic_bezier.cpp │ │ │ ├── fit_cubic_bezier.h │ │ │ ├── fit_plane.cpp │ │ │ ├── fit_plane.h │ │ │ ├── fit_rotations.cpp │ │ │ ├── fit_rotations.h │ │ │ ├── flip_avoiding_line_search.cpp │ │ │ ├── flip_avoiding_line_search.h │ │ │ ├── flip_edge.cpp │ │ │ ├── flip_edge.h │ │ │ ├── flipped_triangles.cpp │ │ │ ├── flipped_triangles.h │ │ │ ├── flood_fill.cpp │ │ │ ├── flood_fill.h │ │ │ ├── floor.cpp │ │ │ ├── floor.h │ │ │ ├── for_each.h │ │ │ ├── forward_kinematics.cpp │ │ │ ├── forward_kinematics.h │ │ │ ├── frame_field_deformer.cpp │ │ │ ├── frame_field_deformer.h │ │ │ ├── frame_to_cross_field.cpp │ │ │ ├── frame_to_cross_field.h │ │ │ ├── frustum.cpp │ │ │ ├── frustum.h │ │ │ ├── gaussian_curvature.cpp │ │ │ ├── gaussian_curvature.h │ │ │ ├── generate_default_urbg.h │ │ │ ├── get_seconds.cpp │ │ │ ├── get_seconds.h │ │ │ ├── grad.cpp │ │ │ ├── grad.h │ │ │ ├── grad_intrinsic.cpp │ │ │ ├── grad_intrinsic.h │ │ │ ├── grid.cpp │ │ │ ├── grid.h │ │ │ ├── grid_search.cpp │ │ │ ├── grid_search.h │ │ │ ├── group_sum_matrix.cpp │ │ │ ├── group_sum_matrix.h │ │ │ ├── guess_extension.cpp │ │ │ ├── guess_extension.h │ │ │ ├── harmonic.cpp │ │ │ ├── harmonic.h │ │ │ ├── harwell_boeing.cpp │ │ │ ├── harwell_boeing.h │ │ │ ├── hausdorff.cpp │ │ │ ├── hausdorff.h │ │ │ ├── heat_geodesics.cpp │ │ │ ├── heat_geodesics.h │ │ │ ├── hessian.cpp │ │ │ ├── hessian.h │ │ │ ├── hessian_energy.cpp │ │ │ ├── hessian_energy.h │ │ │ ├── histc.cpp │ │ │ ├── histc.h │ │ │ ├── hsv_to_rgb.cpp │ │ │ ├── hsv_to_rgb.h │ │ │ ├── icosahedron.cpp │ │ │ ├── icosahedron.h │ │ │ ├── igl_inline.h │ │ │ ├── in_element.cpp │ │ │ ├── in_element.h │ │ │ ├── increment_ulp.cpp │ │ │ ├── increment_ulp.h │ │ │ ├── infinite_cost_stopping_condition.cpp │ │ │ ├── infinite_cost_stopping_condition.h │ │ │ ├── inradius.cpp │ │ │ ├── inradius.h │ │ │ ├── internal_angles.cpp │ │ │ ├── internal_angles.h │ │ │ ├── internal_angles_intrinsic.cpp │ │ │ ├── internal_angles_intrinsic.h │ │ │ ├── intersect.cpp │ │ │ ├── intersect.h │ │ │ ├── intrinsic_delaunay_cotmatrix.cpp │ │ │ ├── intrinsic_delaunay_cotmatrix.h │ │ │ ├── intrinsic_delaunay_triangulation.cpp │ │ │ ├── intrinsic_delaunay_triangulation.h │ │ │ ├── invert_diag.cpp │ │ │ ├── invert_diag.h │ │ │ ├── is_border_vertex.cpp │ │ │ ├── is_border_vertex.h │ │ │ ├── is_boundary_edge.cpp │ │ │ ├── is_boundary_edge.h │ │ │ ├── is_delaunay.cpp │ │ │ ├── is_delaunay.h │ │ │ ├── is_dir.cpp │ │ │ ├── is_dir.h │ │ │ ├── is_edge_manifold.cpp │ │ │ ├── is_edge_manifold.h │ │ │ ├── is_file.cpp │ │ │ ├── is_file.h │ │ │ ├── is_intrinsic_delaunay.cpp │ │ │ ├── is_intrinsic_delaunay.h │ │ │ ├── is_irregular_vertex.cpp │ │ │ ├── is_irregular_vertex.h │ │ │ ├── is_planar.cpp │ │ │ ├── is_planar.h │ │ │ ├── is_readable.cpp │ │ │ ├── is_readable.h │ │ │ ├── is_sparse.cpp │ │ │ ├── is_sparse.h │ │ │ ├── is_stl.cpp │ │ │ ├── is_stl.h │ │ │ ├── is_symmetric.cpp │ │ │ ├── is_symmetric.h │ │ │ ├── is_vertex_manifold.cpp │ │ │ ├── is_vertex_manifold.h │ │ │ ├── is_writable.cpp │ │ │ ├── is_writable.h │ │ │ ├── isdiag.cpp │ │ │ ├── isdiag.h │ │ │ ├── ismember.cpp │ │ │ ├── ismember.h │ │ │ ├── ismember_rows.cpp │ │ │ ├── ismember_rows.h │ │ │ ├── isolines.cpp │ │ │ ├── isolines.h │ │ │ ├── isolines_intrinsic.cpp │ │ │ ├── isolines_intrinsic.h │ │ │ ├── isolines_map.cpp │ │ │ ├── isolines_map.h │ │ │ ├── iterative_closest_point.cpp │ │ │ ├── iterative_closest_point.h │ │ │ ├── jet.cpp │ │ │ ├── jet.h │ │ │ ├── kelvinlets.cpp │ │ │ ├── kelvinlets.h │ │ │ ├── kkt_inverse.cpp │ │ │ ├── kkt_inverse.h │ │ │ ├── knn.cpp │ │ │ ├── knn.h │ │ │ ├── launch_medit.cpp │ │ │ ├── launch_medit.h │ │ │ ├── lbs_matrix.cpp │ │ │ ├── lbs_matrix.h │ │ │ ├── lexicographic_triangulation.cpp │ │ │ ├── lexicographic_triangulation.h │ │ │ ├── limit_faces.cpp │ │ │ ├── limit_faces.h │ │ │ ├── line_field_mismatch.cpp │ │ │ ├── line_field_mismatch.h │ │ │ ├── line_search.cpp │ │ │ ├── line_search.h │ │ │ ├── line_segment_in_rectangle.cpp │ │ │ ├── line_segment_in_rectangle.h │ │ │ ├── linprog.cpp │ │ │ ├── linprog.h │ │ │ ├── list_to_matrix.cpp │ │ │ ├── list_to_matrix.h │ │ │ ├── local_basis.cpp │ │ │ ├── local_basis.h │ │ │ ├── look_at.cpp │ │ │ ├── look_at.h │ │ │ ├── loop.cpp │ │ │ ├── loop.h │ │ │ ├── lscm.cpp │ │ │ ├── lscm.h │ │ │ ├── lscm_hessian.cpp │ │ │ ├── lscm_hessian.h │ │ │ ├── map_vertices_to_circle.cpp │ │ │ ├── map_vertices_to_circle.h │ │ │ ├── mapping_energy_with_jacobians.cpp │ │ │ ├── mapping_energy_with_jacobians.h │ │ │ ├── march_cube.cpp │ │ │ ├── march_cube.h │ │ │ ├── marching_cubes.cpp │ │ │ ├── marching_cubes.h │ │ │ ├── marching_cubes_tables.h │ │ │ ├── marching_tets.cpp │ │ │ ├── marching_tets.h │ │ │ ├── massmatrix.cpp │ │ │ ├── massmatrix.h │ │ │ ├── massmatrix_intrinsic.cpp │ │ │ ├── massmatrix_intrinsic.h │ │ │ ├── mat_to_quat.cpp │ │ │ ├── mat_to_quat.h │ │ │ ├── material_colors.h │ │ │ ├── matlab │ │ │ ├── MatlabWorkspace.h │ │ │ ├── MexStream.h │ │ │ ├── matlabinterface.cpp │ │ │ ├── matlabinterface.h │ │ │ ├── mexErrMsgTxt.cpp │ │ │ ├── mexErrMsgTxt.h │ │ │ ├── parse_rhs.cpp │ │ │ ├── parse_rhs.h │ │ │ ├── prepare_lhs.cpp │ │ │ ├── prepare_lhs.h │ │ │ ├── requires_arg.cpp │ │ │ ├── requires_arg.h │ │ │ ├── validate_arg.cpp │ │ │ └── validate_arg.h │ │ │ ├── matlab_format.cpp │ │ │ ├── matlab_format.h │ │ │ ├── matrix_to_list.cpp │ │ │ ├── matrix_to_list.h │ │ │ ├── max.cpp │ │ │ ├── max.h │ │ │ ├── max_faces_stopping_condition.cpp │ │ │ ├── max_faces_stopping_condition.h │ │ │ ├── max_size.cpp │ │ │ ├── max_size.h │ │ │ ├── median.cpp │ │ │ ├── median.h │ │ │ ├── min.cpp │ │ │ ├── min.h │ │ │ ├── min_heap.h │ │ │ ├── min_quad_with_fixed.1.cpp │ │ │ ├── min_quad_with_fixed.10.cpp │ │ │ ├── min_quad_with_fixed.11.cpp │ │ │ ├── min_quad_with_fixed.2.cpp │ │ │ ├── min_quad_with_fixed.3.cpp │ │ │ ├── min_quad_with_fixed.4.cpp │ │ │ ├── min_quad_with_fixed.5.cpp │ │ │ ├── min_quad_with_fixed.6.cpp │ │ │ ├── min_quad_with_fixed.7.cpp │ │ │ ├── min_quad_with_fixed.8.cpp │ │ │ ├── min_quad_with_fixed.9.cpp │ │ │ ├── min_quad_with_fixed.h │ │ │ ├── min_quad_with_fixed.impl.h │ │ │ ├── min_quad_with_fixed_precompute.cpp │ │ │ ├── min_quad_with_fixed_solve.cpp │ │ │ ├── min_size.cpp │ │ │ ├── min_size.h │ │ │ ├── mod.cpp │ │ │ ├── mod.h │ │ │ ├── mode.cpp │ │ │ ├── mode.h │ │ │ ├── moments.cpp │ │ │ ├── moments.h │ │ │ ├── mosek │ │ │ ├── bbw.cpp │ │ │ ├── bbw.h │ │ │ ├── mosek_guarded.cpp │ │ │ ├── mosek_guarded.h │ │ │ ├── mosek_linprog.cpp │ │ │ ├── mosek_linprog.h │ │ │ ├── mosek_quadprog.cpp │ │ │ └── mosek_quadprog.h │ │ │ ├── mvc.cpp │ │ │ ├── mvc.h │ │ │ ├── nchoosek.cpp │ │ │ ├── nchoosek.h │ │ │ ├── next_filename.cpp │ │ │ ├── next_filename.h │ │ │ ├── normal_derivative.cpp │ │ │ ├── normal_derivative.h │ │ │ ├── normalize_quat.cpp │ │ │ ├── normalize_quat.h │ │ │ ├── null.cpp │ │ │ ├── null.h │ │ │ ├── octree.cpp │ │ │ ├── octree.h │ │ │ ├── offset_surface.cpp │ │ │ ├── offset_surface.h │ │ │ ├── on_boundary.cpp │ │ │ ├── on_boundary.h │ │ │ ├── opengl │ │ │ ├── MeshGL.cpp │ │ │ ├── MeshGL.h │ │ │ ├── ViewerCore.cpp │ │ │ ├── ViewerCore.h │ │ │ ├── ViewerData.cpp │ │ │ ├── ViewerData.h │ │ │ ├── bind_vertex_attrib_array.cpp │ │ │ ├── bind_vertex_attrib_array.h │ │ │ ├── create_index_vbo.cpp │ │ │ ├── create_index_vbo.h │ │ │ ├── create_mesh_vbo.cpp │ │ │ ├── create_mesh_vbo.h │ │ │ ├── create_shader_program.cpp │ │ │ ├── create_shader_program.h │ │ │ ├── create_vector_vbo.cpp │ │ │ ├── create_vector_vbo.h │ │ │ ├── destroy_shader_program.cpp │ │ │ ├── destroy_shader_program.h │ │ │ ├── gl.h │ │ │ ├── gl_type_size.cpp │ │ │ ├── gl_type_size.h │ │ │ ├── glfw │ │ │ │ ├── Viewer.cpp │ │ │ │ ├── Viewer.h │ │ │ │ ├── ViewerPlugin.h │ │ │ │ ├── background_window.cpp │ │ │ │ ├── background_window.h │ │ │ │ ├── imgui │ │ │ │ │ ├── ImGuiHelpers.h │ │ │ │ │ ├── ImGuiMenu.cpp │ │ │ │ │ ├── ImGuiMenu.h │ │ │ │ │ ├── ImGuiPlugin.cpp │ │ │ │ │ ├── ImGuiPlugin.h │ │ │ │ │ ├── ImGuiTraits.h │ │ │ │ │ ├── ImGuiWidget.h │ │ │ │ │ ├── ImGuizmoWidget.cpp │ │ │ │ │ ├── ImGuizmoWidget.h │ │ │ │ │ ├── SelectionWidget.cpp │ │ │ │ │ └── SelectionWidget.h │ │ │ │ ├── map_texture.cpp │ │ │ │ └── map_texture.h │ │ │ ├── init_render_to_texture.cpp │ │ │ ├── init_render_to_texture.h │ │ │ ├── load_shader.cpp │ │ │ ├── load_shader.h │ │ │ ├── print_program_info_log.cpp │ │ │ ├── print_program_info_log.h │ │ │ ├── print_shader_info_log.cpp │ │ │ ├── print_shader_info_log.h │ │ │ ├── read_pixels.cpp │ │ │ ├── read_pixels.h │ │ │ ├── report_gl_error.cpp │ │ │ ├── report_gl_error.h │ │ │ ├── stb │ │ │ │ ├── render_to_file.cpp │ │ │ │ ├── render_to_file.h │ │ │ │ ├── render_to_file_async.cpp │ │ │ │ └── render_to_file_async.h │ │ │ ├── uniform_type_to_string.cpp │ │ │ ├── uniform_type_to_string.h │ │ │ ├── verasansmono_compressed.cpp │ │ │ ├── verasansmono_compressed.h │ │ │ ├── vertex_array.cpp │ │ │ └── vertex_array.h │ │ │ ├── orient_halfedges.cpp │ │ │ ├── orient_halfedges.h │ │ │ ├── orient_outward.cpp │ │ │ ├── orient_outward.h │ │ │ ├── orientable_patches.cpp │ │ │ ├── orientable_patches.h │ │ │ ├── oriented_facets.cpp │ │ │ ├── oriented_facets.h │ │ │ ├── orth.cpp │ │ │ ├── orth.h │ │ │ ├── ortho.cpp │ │ │ ├── ortho.h │ │ │ ├── outer_element.cpp │ │ │ ├── outer_element.h │ │ │ ├── parallel_for.h │ │ │ ├── parallel_transport_angles.cpp │ │ │ ├── parallel_transport_angles.h │ │ │ ├── partition.cpp │ │ │ ├── partition.h │ │ │ ├── parula.cpp │ │ │ ├── parula.h │ │ │ ├── path_to_edges.cpp │ │ │ ├── path_to_edges.h │ │ │ ├── path_to_executable.cpp │ │ │ ├── path_to_executable.h │ │ │ ├── pathinfo.cpp │ │ │ ├── pathinfo.h │ │ │ ├── per_corner_normals.cpp │ │ │ ├── per_corner_normals.h │ │ │ ├── per_edge_normals.cpp │ │ │ ├── per_edge_normals.h │ │ │ ├── per_face_normals.cpp │ │ │ ├── per_face_normals.h │ │ │ ├── per_vertex_attribute_smoothing.cpp │ │ │ ├── per_vertex_attribute_smoothing.h │ │ │ ├── per_vertex_normals.cpp │ │ │ ├── per_vertex_normals.h │ │ │ ├── per_vertex_point_to_plane_quadrics.cpp │ │ │ ├── per_vertex_point_to_plane_quadrics.h │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ ├── piecewise_constant_winding_number.h │ │ │ ├── pinv.cpp │ │ │ ├── pinv.h │ │ │ ├── planarize_quad_mesh.cpp │ │ │ ├── planarize_quad_mesh.h │ │ │ ├── point_in_circle.cpp │ │ │ ├── point_in_circle.h │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ ├── point_mesh_squared_distance.h │ │ │ ├── point_simplex_squared_distance.cpp │ │ │ ├── point_simplex_squared_distance.h │ │ │ ├── polar_dec.cpp │ │ │ ├── polar_dec.h │ │ │ ├── polar_svd.cpp │ │ │ ├── polar_svd.h │ │ │ ├── polar_svd3x3.cpp │ │ │ ├── polar_svd3x3.h │ │ │ ├── polygon_corners.cpp │ │ │ ├── polygon_corners.h │ │ │ ├── polygons_to_triangles.cpp │ │ │ ├── polygons_to_triangles.h │ │ │ ├── predicates │ │ │ ├── delaunay_triangulation.cpp │ │ │ ├── delaunay_triangulation.h │ │ │ ├── ear_clipping.cpp │ │ │ ├── ear_clipping.h │ │ │ ├── lexicographic_triangulation.cpp │ │ │ ├── lexicographic_triangulation.h │ │ │ ├── point_inside_convex_polygon.cpp │ │ │ ├── point_inside_convex_polygon.h │ │ │ ├── polygons_to_triangles.cpp │ │ │ ├── polygons_to_triangles.h │ │ │ ├── predicates.cpp │ │ │ ├── predicates.h │ │ │ ├── segment_segment_intersect.cpp │ │ │ └── segment_segment_intersect.h │ │ │ ├── principal_curvature.cpp │ │ │ ├── principal_curvature.h │ │ │ ├── print_ijv.cpp │ │ │ ├── print_ijv.h │ │ │ ├── print_vector.cpp │ │ │ ├── print_vector.h │ │ │ ├── procrustes.cpp │ │ │ ├── procrustes.h │ │ │ ├── project.cpp │ │ │ ├── project.h │ │ │ ├── project_isometrically_to_plane.cpp │ │ │ ├── project_isometrically_to_plane.h │ │ │ ├── project_to_line.cpp │ │ │ ├── project_to_line.h │ │ │ ├── project_to_line_segment.cpp │ │ │ ├── project_to_line_segment.h │ │ │ ├── projection_constraint.cpp │ │ │ ├── projection_constraint.h │ │ │ ├── pseudonormal_test.cpp │ │ │ ├── pseudonormal_test.h │ │ │ ├── pso.cpp │ │ │ ├── pso.h │ │ │ ├── qslim.cpp │ │ │ ├── qslim.h │ │ │ ├── qslim_optimal_collapse_edge_callbacks.cpp │ │ │ ├── qslim_optimal_collapse_edge_callbacks.h │ │ │ ├── quad_grid.cpp │ │ │ ├── quad_grid.h │ │ │ ├── quad_planarity.cpp │ │ │ ├── quad_planarity.h │ │ │ ├── quadprog.cpp │ │ │ ├── quadprog.h │ │ │ ├── quadric_binary_plus_operator.cpp │ │ │ ├── quadric_binary_plus_operator.h │ │ │ ├── quat_conjugate.cpp │ │ │ ├── quat_conjugate.h │ │ │ ├── quat_mult.cpp │ │ │ ├── quat_mult.h │ │ │ ├── quat_to_axis_angle.cpp │ │ │ ├── quat_to_axis_angle.h │ │ │ ├── quat_to_mat.cpp │ │ │ ├── quat_to_mat.h │ │ │ ├── quats_to_column.cpp │ │ │ ├── quats_to_column.h │ │ │ ├── ramer_douglas_peucker.cpp │ │ │ ├── ramer_douglas_peucker.h │ │ │ ├── random_dir.cpp │ │ │ ├── random_dir.h │ │ │ ├── random_points_on_mesh.cpp │ │ │ ├── random_points_on_mesh.h │ │ │ ├── random_points_on_mesh_intrinsic.cpp │ │ │ ├── random_points_on_mesh_intrinsic.h │ │ │ ├── random_quaternion.cpp │ │ │ ├── random_quaternion.h │ │ │ ├── random_search.cpp │ │ │ ├── random_search.h │ │ │ ├── randperm.cpp │ │ │ ├── randperm.h │ │ │ ├── ray_box_intersect.cpp │ │ │ ├── ray_box_intersect.h │ │ │ ├── ray_mesh_intersect.cpp │ │ │ ├── ray_mesh_intersect.h │ │ │ ├── ray_sphere_intersect.cpp │ │ │ ├── ray_sphere_intersect.h │ │ │ ├── raytri.c │ │ │ ├── readBF.cpp │ │ │ ├── readBF.h │ │ │ ├── readCSV.cpp │ │ │ ├── readCSV.h │ │ │ ├── readDMAT.cpp │ │ │ ├── readDMAT.h │ │ │ ├── readMESH.cpp │ │ │ ├── readMESH.h │ │ │ ├── readMSH.cpp │ │ │ ├── readMSH.h │ │ │ ├── readNODE.cpp │ │ │ ├── readNODE.h │ │ │ ├── readOBJ.cpp │ │ │ ├── readOBJ.h │ │ │ ├── readOFF.cpp │ │ │ ├── readOFF.h │ │ │ ├── readPLY.cpp │ │ │ ├── readPLY.h │ │ │ ├── readSTL.cpp │ │ │ ├── readSTL.h │ │ │ ├── readTGF.cpp │ │ │ ├── readTGF.h │ │ │ ├── readWRL.cpp │ │ │ ├── readWRL.h │ │ │ ├── read_file_binary.cpp │ │ │ ├── read_file_binary.h │ │ │ ├── read_triangle_mesh.cpp │ │ │ ├── read_triangle_mesh.h │ │ │ ├── redux.h │ │ │ ├── remesh_along_isoline.cpp │ │ │ ├── remesh_along_isoline.h │ │ │ ├── remove_duplicate_vertices.cpp │ │ │ ├── remove_duplicate_vertices.h │ │ │ ├── remove_unreferenced.cpp │ │ │ ├── remove_unreferenced.h │ │ │ ├── repdiag.cpp │ │ │ ├── repdiag.h │ │ │ ├── repmat.cpp │ │ │ ├── repmat.h │ │ │ ├── resolve_duplicated_faces.cpp │ │ │ ├── resolve_duplicated_faces.h │ │ │ ├── rgb_to_hsv.cpp │ │ │ ├── rgb_to_hsv.h │ │ │ ├── rigid_alignment.cpp │ │ │ ├── rigid_alignment.h │ │ │ ├── rotate_by_quat.cpp │ │ │ ├── rotate_by_quat.h │ │ │ ├── rotate_vectors.cpp │ │ │ ├── rotate_vectors.h │ │ │ ├── rotation_matrix_from_directions.cpp │ │ │ ├── rotation_matrix_from_directions.h │ │ │ ├── round.cpp │ │ │ ├── round.h │ │ │ ├── rows_to_matrix.cpp │ │ │ ├── rows_to_matrix.h │ │ │ ├── sample_edges.cpp │ │ │ ├── sample_edges.h │ │ │ ├── scalar_to_cr_vector_gradient.cpp │ │ │ ├── scalar_to_cr_vector_gradient.h │ │ │ ├── screen_space_selection.cpp │ │ │ ├── screen_space_selection.h │ │ │ ├── seam_edges.cpp │ │ │ ├── seam_edges.h │ │ │ ├── segment_segment_intersect.cpp │ │ │ ├── segment_segment_intersect.h │ │ │ ├── serialize.h │ │ │ ├── setdiff.cpp │ │ │ ├── setdiff.h │ │ │ ├── setunion.cpp │ │ │ ├── setunion.h │ │ │ ├── setxor.cpp │ │ │ ├── setxor.h │ │ │ ├── shape_diameter_function.cpp │ │ │ ├── shape_diameter_function.h │ │ │ ├── shapeup.cpp │ │ │ ├── shapeup.h │ │ │ ├── sharp_edges.cpp │ │ │ ├── sharp_edges.h │ │ │ ├── shortest_edge_and_midpoint.cpp │ │ │ ├── shortest_edge_and_midpoint.h │ │ │ ├── signed_angle.cpp │ │ │ ├── signed_angle.h │ │ │ ├── signed_distance.cpp │ │ │ ├── signed_distance.h │ │ │ ├── simplify_polyhedron.cpp │ │ │ ├── simplify_polyhedron.h │ │ │ ├── slice.cpp │ │ │ ├── slice.h │ │ │ ├── slice_cached.cpp │ │ │ ├── slice_cached.h │ │ │ ├── slice_into.cpp │ │ │ ├── slice_into.h │ │ │ ├── slice_mask.cpp │ │ │ ├── slice_mask.h │ │ │ ├── slice_sorted.cpp │ │ │ ├── slice_sorted.h │ │ │ ├── slim.cpp │ │ │ ├── slim.h │ │ │ ├── smooth_corner_adjacency.cpp │ │ │ ├── smooth_corner_adjacency.h │ │ │ ├── snap_points.cpp │ │ │ ├── snap_points.h │ │ │ ├── snap_to_canonical_view_quat.cpp │ │ │ ├── snap_to_canonical_view_quat.h │ │ │ ├── snap_to_fixed_up.cpp │ │ │ ├── snap_to_fixed_up.h │ │ │ ├── solid_angle.cpp │ │ │ ├── solid_angle.h │ │ │ ├── sort.cpp │ │ │ ├── sort.h │ │ │ ├── sort_angles.cpp │ │ │ ├── sort_angles.h │ │ │ ├── sort_triangles.cpp │ │ │ ├── sort_triangles.h │ │ │ ├── sort_vectors_ccw.cpp │ │ │ ├── sort_vectors_ccw.h │ │ │ ├── sortrows.cpp │ │ │ ├── sortrows.h │ │ │ ├── sparse.cpp │ │ │ ├── sparse.h │ │ │ ├── sparse_cached.cpp │ │ │ ├── sparse_cached.h │ │ │ ├── sparse_voxel_grid.cpp │ │ │ ├── sparse_voxel_grid.h │ │ │ ├── spectra │ │ │ ├── eigs.cpp │ │ │ ├── eigs.h │ │ │ ├── lscm.cpp │ │ │ └── lscm.h │ │ │ ├── speye.cpp │ │ │ ├── speye.h │ │ │ ├── split_nonmanifold.cpp │ │ │ ├── split_nonmanifold.h │ │ │ ├── squared_edge_lengths.cpp │ │ │ ├── squared_edge_lengths.h │ │ │ ├── stb │ │ │ ├── read_image.cpp │ │ │ ├── read_image.h │ │ │ ├── write_image.cpp │ │ │ └── write_image.h │ │ │ ├── stdin_to_temp.cpp │ │ │ ├── stdin_to_temp.h │ │ │ ├── straighten_seams.cpp │ │ │ ├── straighten_seams.h │ │ │ ├── string_utils.cpp │ │ │ ├── string_utils.h │ │ │ ├── sum.cpp │ │ │ ├── sum.h │ │ │ ├── svd3x3.cpp │ │ │ ├── svd3x3.h │ │ │ ├── svd3x3_avx.cpp │ │ │ ├── svd3x3_avx.h │ │ │ ├── svd3x3_sse.cpp │ │ │ ├── svd3x3_sse.h │ │ │ ├── swept_volume.cpp │ │ │ ├── swept_volume.h │ │ │ ├── swept_volume_bounding_box.cpp │ │ │ ├── swept_volume_bounding_box.h │ │ │ ├── swept_volume_signed_distance.cpp │ │ │ ├── swept_volume_signed_distance.h │ │ │ ├── tan_half_angle.cpp │ │ │ ├── tan_half_angle.h │ │ │ ├── tet_tet_adjacency.cpp │ │ │ ├── tet_tet_adjacency.h │ │ │ ├── tetrahedralized_grid.cpp │ │ │ ├── tetrahedralized_grid.h │ │ │ ├── tinyply.cpp │ │ │ ├── tinyply.h │ │ │ ├── topological_hole_fill.cpp │ │ │ ├── topological_hole_fill.h │ │ │ ├── trackball.cpp │ │ │ ├── trackball.h │ │ │ ├── transpose_blocks.cpp │ │ │ ├── transpose_blocks.h │ │ │ ├── tri_tri_intersect.cpp │ │ │ ├── tri_tri_intersect.h │ │ │ ├── triangle │ │ │ ├── cdt.cpp │ │ │ ├── cdt.h │ │ │ ├── scaf.cpp │ │ │ ├── scaf.h │ │ │ ├── triangulate.cpp │ │ │ └── triangulate.h │ │ │ ├── triangle_fan.cpp │ │ │ ├── triangle_fan.h │ │ │ ├── triangle_triangle_adjacency.cpp │ │ │ ├── triangle_triangle_adjacency.h │ │ │ ├── triangles_from_strip.cpp │ │ │ ├── triangles_from_strip.h │ │ │ ├── triangulated_grid.cpp │ │ │ ├── triangulated_grid.h │ │ │ ├── turning_number.cpp │ │ │ ├── turning_number.h │ │ │ ├── two_axis_valuator_fixed_up.cpp │ │ │ ├── two_axis_valuator_fixed_up.h │ │ │ ├── uniformly_sample_two_manifold.cpp │ │ │ ├── uniformly_sample_two_manifold.h │ │ │ ├── unique.cpp │ │ │ ├── unique.h │ │ │ ├── unique_edge_map.cpp │ │ │ ├── unique_edge_map.h │ │ │ ├── unique_rows.cpp │ │ │ ├── unique_rows.h │ │ │ ├── unique_simplices.cpp │ │ │ ├── unique_simplices.h │ │ │ ├── unproject.cpp │ │ │ ├── unproject.h │ │ │ ├── unproject_in_mesh.cpp │ │ │ ├── unproject_in_mesh.h │ │ │ ├── unproject_on_line.cpp │ │ │ ├── unproject_on_line.h │ │ │ ├── unproject_on_plane.cpp │ │ │ ├── unproject_on_plane.h │ │ │ ├── unproject_onto_mesh.cpp │ │ │ ├── unproject_onto_mesh.h │ │ │ ├── unproject_ray.cpp │ │ │ ├── unproject_ray.h │ │ │ ├── unzip_corners.cpp │ │ │ ├── unzip_corners.h │ │ │ ├── upsample.cpp │ │ │ ├── upsample.h │ │ │ ├── vector_area_matrix.cpp │ │ │ ├── vector_area_matrix.h │ │ │ ├── verbose.h │ │ │ ├── vertex_components.cpp │ │ │ ├── vertex_components.h │ │ │ ├── vertex_triangle_adjacency.cpp │ │ │ ├── vertex_triangle_adjacency.h │ │ │ ├── volume.cpp │ │ │ ├── volume.h │ │ │ ├── voxel_grid.cpp │ │ │ ├── voxel_grid.h │ │ │ ├── winding_number.cpp │ │ │ ├── winding_number.h │ │ │ ├── writeBF.cpp │ │ │ ├── writeBF.h │ │ │ ├── writeDMAT.cpp │ │ │ ├── writeDMAT.h │ │ │ ├── writeMESH.cpp │ │ │ ├── writeMESH.h │ │ │ ├── writeMSH.cpp │ │ │ ├── writeMSH.h │ │ │ ├── writeOBJ.cpp │ │ │ ├── writeOBJ.h │ │ │ ├── writeOFF.cpp │ │ │ ├── writeOFF.h │ │ │ ├── writePLY.cpp │ │ │ ├── writePLY.h │ │ │ ├── writeSTL.cpp │ │ │ ├── writeSTL.h │ │ │ ├── writeTGF.cpp │ │ │ ├── writeTGF.h │ │ │ ├── writeWRL.cpp │ │ │ ├── writeWRL.h │ │ │ ├── write_triangle_mesh.cpp │ │ │ ├── write_triangle_mesh.h │ │ │ └── xml │ │ │ ├── XMLSerializable.h │ │ │ ├── serialization_test.skip │ │ │ ├── serialize_xml.cpp │ │ │ ├── serialize_xml.h │ │ │ ├── writeDAE.cpp │ │ │ ├── writeDAE.h │ │ │ ├── write_triangle_mesh.cpp │ │ │ └── write_triangle_mesh.h │ ├── tests │ │ ├── include │ │ │ └── igl │ │ │ │ ├── AABB.cpp │ │ │ │ ├── MshLoader.cpp │ │ │ │ ├── MshSaver.cpp │ │ │ │ ├── accumarray.cpp │ │ │ │ ├── adjacency_list.cpp │ │ │ │ ├── avg_edge_length.cpp │ │ │ │ ├── barycentric_interpolation.cpp │ │ │ │ ├── bbw.cpp │ │ │ │ ├── bezier.cpp │ │ │ │ ├── blkdiag.cpp │ │ │ │ ├── blue_noise.cpp │ │ │ │ ├── boundary_facets.cpp │ │ │ │ ├── boundary_loop.cpp │ │ │ │ ├── cat.cpp │ │ │ │ ├── circulation.cpp │ │ │ │ ├── copyleft │ │ │ │ ├── boolean │ │ │ │ │ └── mesh_boolean.cpp │ │ │ │ ├── cgal │ │ │ │ │ ├── CSGTree.cpp │ │ │ │ │ ├── delaunay_triangulation.cpp │ │ │ │ │ ├── half_space_box.cpp │ │ │ │ │ ├── hausdorff.cpp │ │ │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ │ │ ├── order_facets_around_edges.cpp │ │ │ │ │ ├── outer_facet.cpp │ │ │ │ │ ├── outer_hull_legacy.cpp │ │ │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ │ │ ├── points_inside_component.cpp │ │ │ │ │ ├── remesh_self_intersections.cpp │ │ │ │ │ ├── triangulate.cpp │ │ │ │ │ └── trim_with_solid.cpp │ │ │ │ ├── comiso │ │ │ │ │ └── miq.cpp │ │ │ │ └── tetgen │ │ │ │ │ └── tetrahedralize.cpp │ │ │ │ ├── cotmatrix.cpp │ │ │ │ ├── cotmatrix_entries.cpp │ │ │ │ ├── cotmatrix_intrinsic.cpp │ │ │ │ ├── cr_vector_curvature_correction.cpp │ │ │ │ ├── cr_vector_laplacian.cpp │ │ │ │ ├── cumprod.cpp │ │ │ │ ├── cumsum.cpp │ │ │ │ ├── curved_hessian_energy.cpp │ │ │ │ ├── cut_mesh.cpp │ │ │ │ ├── cut_to_disk.cpp │ │ │ │ ├── decimate.cpp │ │ │ │ ├── delaunay_triangulation.cpp │ │ │ │ ├── dijkstra.cpp │ │ │ │ ├── direct_delta_mush.cpp │ │ │ │ ├── dirname.cpp │ │ │ │ ├── doublearea.cpp │ │ │ │ ├── ears.cpp │ │ │ │ ├── edge_exists_near.cpp │ │ │ │ ├── edge_flaps.cpp │ │ │ │ ├── edge_lengths.cpp │ │ │ │ ├── edges_to_path.cpp │ │ │ │ ├── embree │ │ │ │ └── EmbreeIntersector.cpp │ │ │ │ ├── euler_characteristic.cpp │ │ │ │ ├── exact_geodesic.cpp │ │ │ │ ├── facet_components.cpp │ │ │ │ ├── fast_find_intersections.cpp │ │ │ │ ├── fast_winding_number.cpp │ │ │ │ ├── fit_cubic_bezier.cpp │ │ │ │ ├── grad.cpp │ │ │ │ ├── grad_intrinsic.cpp │ │ │ │ ├── grid.cpp │ │ │ │ ├── guess_extension.cpp │ │ │ │ ├── heat_geodesics.cpp │ │ │ │ ├── icosahedron.cpp │ │ │ │ ├── increment_ulp.cpp │ │ │ │ ├── internal_angles.cpp │ │ │ │ ├── intrinsic_delaunay_cotmatrix.cpp │ │ │ │ ├── intrinsic_delaunay_triangulation.cpp │ │ │ │ ├── is_delaunay.cpp │ │ │ │ ├── is_edge_manifold.cpp │ │ │ │ ├── is_intrinsic_delaunay.cpp │ │ │ │ ├── is_irregular_vertex.cpp │ │ │ │ ├── is_symmetric.cpp │ │ │ │ ├── ismember.cpp │ │ │ │ ├── isolines.cpp │ │ │ │ ├── iterative_closest_point.cpp │ │ │ │ ├── knn.cpp │ │ │ │ ├── linprog.cpp │ │ │ │ ├── list_to_matrix.cpp │ │ │ │ ├── lscm.cpp │ │ │ │ ├── massmatrix.cpp │ │ │ │ ├── min_quad_with_fixed.cpp │ │ │ │ ├── moments.cpp │ │ │ │ ├── mosek │ │ │ │ └── bbw.cpp │ │ │ │ ├── opengl │ │ │ │ └── glfw │ │ │ │ │ └── map_texture.cpp │ │ │ │ ├── orient_halfedges.cpp │ │ │ │ ├── path_to_edges.cpp │ │ │ │ ├── path_to_executable.cpp │ │ │ │ ├── pathinfo.cpp │ │ │ │ ├── per_face_normals.cpp │ │ │ │ ├── polygon_corners.cpp │ │ │ │ ├── predicates │ │ │ │ ├── ear_clipping.cpp │ │ │ │ ├── predicates.cpp │ │ │ │ └── segment_segment_intersect.cpp │ │ │ │ ├── principal_curvature.cpp │ │ │ │ ├── procrustes.cpp │ │ │ │ ├── qslim.cpp │ │ │ │ ├── quadprog.cpp │ │ │ │ ├── random_points_on_mesh.cpp │ │ │ │ ├── randperm.cpp │ │ │ │ ├── ray_mesh_intersect.cpp │ │ │ │ ├── readDMAT.cpp │ │ │ │ ├── readMESH.cpp │ │ │ │ ├── readMSH.cpp │ │ │ │ ├── readOBJ.cpp │ │ │ │ ├── readOFF.cpp │ │ │ │ ├── readPLY.cpp │ │ │ │ ├── remesh_along_isoline.cpp │ │ │ │ ├── repmat.cpp │ │ │ │ ├── rigid_alignment.cpp │ │ │ │ ├── seam_edges.cpp │ │ │ │ ├── segment_segment_intersect.cpp │ │ │ │ ├── setdiff.cpp │ │ │ │ ├── signed_distance.cpp │ │ │ │ ├── slice.cpp │ │ │ │ ├── slice_into.cpp │ │ │ │ ├── slice_mask.cpp │ │ │ │ ├── slice_sorted.cpp │ │ │ │ ├── sort.cpp │ │ │ │ ├── sparse_voxel_grid.cpp │ │ │ │ ├── spectra │ │ │ │ └── eigs.cpp │ │ │ │ ├── split_nonmanifold.cpp │ │ │ │ ├── squared_edge_lengths.cpp │ │ │ │ ├── stb │ │ │ │ ├── read_write.cpp │ │ │ │ ├── test_bmp.h │ │ │ │ ├── test_jpg.h │ │ │ │ ├── test_pgm.h │ │ │ │ ├── test_png.h │ │ │ │ ├── test_reference.h │ │ │ │ └── test_tga.h │ │ │ │ ├── tet_tet_adjacency.cpp │ │ │ │ ├── triangle │ │ │ │ ├── predicates.cpp │ │ │ │ └── scaf.cpp │ │ │ │ ├── triangle_triangle_adjacency.cpp │ │ │ │ ├── triangulated_grid.cpp │ │ │ │ ├── turning_number.cpp │ │ │ │ ├── unique.cpp │ │ │ │ ├── unique_simplices.cpp │ │ │ │ ├── upsample.cpp │ │ │ │ ├── writeMSH.cpp │ │ │ │ ├── writeOFF.cpp │ │ │ │ └── writePLY.cpp │ │ ├── main.cpp │ │ └── test_common.h │ └── tutorial │ │ ├── 101_FileIO │ │ └── main.cpp │ │ ├── 102_DrawMesh │ │ └── main.cpp │ │ ├── 103_Events │ │ └── main.cpp │ │ ├── 104_Colors │ │ └── main.cpp │ │ ├── 105_Overlays │ │ └── main.cpp │ │ ├── 106_ViewerMenu │ │ └── main.cpp │ │ ├── 107_MultipleMeshes │ │ └── main.cpp │ │ ├── 108_MultipleViews │ │ └── main.cpp │ │ ├── 109_ImGuizmo │ │ └── main.cpp │ │ ├── 110_MshView │ │ └── main.cpp │ │ ├── 111_MatCap │ │ └── main.cpp │ │ ├── 112_Selection │ │ └── main.cpp │ │ ├── 113_Shadows │ │ └── main.cpp │ │ ├── 114_CustomShader │ │ └── main.cpp │ │ ├── 201_Normals │ │ └── main.cpp │ │ ├── 202_GaussianCurvature │ │ └── main.cpp │ │ ├── 203_CurvatureDirections │ │ └── main.cpp │ │ ├── 204_Gradient │ │ └── main.cpp │ │ ├── 205_Laplacian │ │ └── main.cpp │ │ ├── 206_GeodesicDistance │ │ └── main.cpp │ │ ├── 207_PolygonLaplacian │ │ └── main.cpp │ │ ├── 301_Slice │ │ └── main.cpp │ │ ├── 302_Sort │ │ └── main.cpp │ │ ├── 303_LaplaceEquation │ │ └── main.cpp │ │ ├── 304_LinearEqualityConstraints │ │ └── main.cpp │ │ ├── 305_QuadraticProgramming │ │ └── main.cpp │ │ ├── 306_EigenDecomposition │ │ └── main.cpp │ │ ├── 401_BiharmonicDeformation │ │ └── main.cpp │ │ ├── 402_PolyharmonicDeformation │ │ └── main.cpp │ │ ├── 403_BoundedBiharmonicWeights │ │ └── main.cpp │ │ ├── 404_DualQuaternionSkinning │ │ └── main.cpp │ │ ├── 405_AsRigidAsPossible │ │ └── main.cpp │ │ ├── 406_FastAutomaticSkinningTransformations │ │ ├── main.cpp │ │ ├── precomputation.cpp │ │ └── precomputation.h │ │ ├── 407_BiharmonicCoordinates │ │ └── main.cpp │ │ ├── 408_DirectDeltaMush │ │ └── main.cpp │ │ ├── 409_Kelvinlets │ │ └── main.cpp │ │ ├── 501_HarmonicParam │ │ └── main.cpp │ │ ├── 502_LSCMParam │ │ └── main.cpp │ │ ├── 503_ARAPParam │ │ └── main.cpp │ │ ├── 504_NRosyDesign │ │ └── main.cpp │ │ ├── 505_MIQ │ │ └── main.cpp │ │ ├── 506_FrameField │ │ └── main.cpp │ │ ├── 507_Planarization │ │ └── main.cpp │ │ ├── 601_Serialization │ │ └── main.cpp │ │ ├── 602_Matlab │ │ ├── main.cpp │ │ └── run.sh │ │ ├── 603_MEX │ │ ├── compileMEX.m │ │ └── readOBJ_mex.cpp │ │ ├── 604_Triangle │ │ └── main.cpp │ │ ├── 605_Tetgen │ │ └── main.cpp │ │ ├── 606_AmbientOcclusion │ │ └── main.cpp │ │ ├── 607_ScreenCapture │ │ └── main.cpp │ │ ├── 608_RayTrace │ │ └── main.cpp │ │ ├── 609_Boolean │ │ └── main.cpp │ │ ├── 610_CSGTree │ │ ├── get_mesh.cpp │ │ ├── get_mesh.h │ │ └── main.cpp │ │ ├── 701_Statistics │ │ └── main.cpp │ │ ├── 702_WindingNumber │ │ └── main.cpp │ │ ├── 703_Decimation │ │ └── main.cpp │ │ ├── 704_SignedDistance │ │ └── main.cpp │ │ ├── 705_MarchingCubes │ │ └── main.cpp │ │ ├── 706_FacetOrientation │ │ └── main.cpp │ │ ├── 707_SweptVolume │ │ └── main.cpp │ │ ├── 708_Picking │ │ └── main.cpp │ │ ├── 709_SLIM │ │ ├── check_mesh_for_issues.cpp │ │ ├── check_mesh_for_issues.h │ │ ├── get_cube_corner_constraints.cpp │ │ ├── get_cube_corner_constraints.h │ │ ├── get_soft_constraint_for_circle.cpp │ │ ├── get_soft_constraint_for_circle.h │ │ ├── main.cpp │ │ ├── param_2d_demo_iter.cpp │ │ └── param_2d_demo_iter.h │ │ ├── 710_SCAF │ │ └── main.cpp │ │ ├── 801_Subdivision │ │ └── main.cpp │ │ ├── 802_DataSmoothing │ │ └── main.cpp │ │ ├── 803_ShapeUp │ │ └── main.cpp │ │ ├── 804_MarchingTets │ │ └── main.cpp │ │ ├── 805_MeshImplicitFunction │ │ ├── contours.cpp │ │ ├── contours.h │ │ └── main.cpp │ │ ├── 806_HeatGeodesics │ │ ├── isolines_colormap.cpp │ │ ├── isolines_colormap.h │ │ ├── main.cpp │ │ ├── update.cpp │ │ └── update.h │ │ ├── 807_FastWindingNumber │ │ └── main.cpp │ │ ├── 808_IterativeClosestPoint │ │ └── main.cpp │ │ ├── 809_ExplodedView │ │ └── main.cpp │ │ ├── 810_BlueNoise │ │ └── main.cpp │ │ ├── 901_VectorFieldSmoothing │ │ └── main.cpp │ │ ├── 902_VectorParallelTransport │ │ └── main.cpp │ │ ├── 903_FastFindSelfIntersections │ │ └── main.cpp │ │ ├── 904_FastFindIntersections │ │ └── main.cpp │ │ ├── 905_Isolines │ │ └── main.cpp │ │ ├── 906_TrimWithSolid │ │ └── main.cpp │ │ └── CMakeLists.txt ├── magic_enum-0.9.5 │ ├── .bazelignore │ ├── .bazelrc │ ├── .bazelversion │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── bzlmod-archive.yml │ │ │ ├── macos.yml │ │ │ ├── ubuntu.yml │ │ │ └── windows.yml │ ├── .gitignore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── LICENSE │ ├── MODULE.bazel │ ├── README.md │ ├── SECURITY.md │ ├── WORKSPACE.bazel │ ├── cmake │ │ └── GenPkgConfig │ │ │ ├── GenPkgConfig.cmake │ │ │ ├── ReadMe.md │ │ │ ├── UNLICENSE │ │ │ └── buildTimeScripts │ │ │ └── getObjectFilesBaseNames.cmake │ ├── doc │ │ ├── limitations.md │ │ └── reference.md │ ├── example │ │ ├── CMakeLists.txt │ │ ├── enum_flag_example.cpp │ │ ├── example.cpp │ │ ├── example_containers_array.cpp │ │ ├── example_containers_bitset.cpp │ │ ├── example_containers_set.cpp │ │ ├── example_custom_name.cpp │ │ ├── example_nonascii_name.cpp │ │ └── example_switch.cpp │ ├── include │ │ └── magic_enum │ │ │ ├── magic_enum.hpp │ │ │ ├── magic_enum_all.hpp │ │ │ ├── magic_enum_containers.hpp │ │ │ ├── magic_enum_flags.hpp │ │ │ ├── magic_enum_format.hpp │ │ │ ├── magic_enum_fuse.hpp │ │ │ ├── magic_enum_iostream.hpp │ │ │ ├── magic_enum_switch.hpp │ │ │ └── magic_enum_utility.hpp │ ├── meson.build │ ├── meson_options.txt │ ├── package.xml │ └── test │ │ ├── .bazelrc │ │ ├── 3rdparty │ │ └── Catch2 │ │ │ ├── LICENSE │ │ │ └── include │ │ │ └── catch2 │ │ │ └── catch.hpp │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── MODULE.bazel │ │ ├── WORKSPACE.bazel │ │ ├── meson.build │ │ ├── test.cpp │ │ ├── test_aliases.cpp │ │ ├── test_containers.cpp │ │ ├── test_flags.cpp │ │ ├── test_nonascii.cpp │ │ └── test_wchar_t.cpp ├── microsoft.direct3d.d3d12.1.715.0-preview.7z ├── mimalloc │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── azure-pipelines.yml │ ├── bin │ │ ├── mimalloc-redirect.dll │ │ ├── mimalloc-redirect.lib │ │ ├── mimalloc-redirect32.dll │ │ ├── mimalloc-redirect32.lib │ │ ├── minject.exe │ │ └── minject32.exe │ ├── cmake │ │ ├── mimalloc-config-version.cmake │ │ └── mimalloc-config.cmake │ ├── doc │ │ ├── bench-2020 │ │ │ ├── bench-c5-18xlarge-2020-01-20-a.svg │ │ │ ├── bench-c5-18xlarge-2020-01-20-b.svg │ │ │ ├── bench-c5-18xlarge-2020-01-20-rss-a.svg │ │ │ ├── bench-c5-18xlarge-2020-01-20-rss-b.svg │ │ │ ├── bench-r5a-1.svg │ │ │ ├── bench-r5a-12xlarge-2020-01-16-a.svg │ │ │ ├── bench-r5a-12xlarge-2020-01-16-b.svg │ │ │ ├── bench-r5a-2.svg │ │ │ ├── bench-r5a-rss-1.svg │ │ │ ├── bench-r5a-rss-2.svg │ │ │ ├── bench-spec-rss.svg │ │ │ ├── bench-spec.svg │ │ │ ├── bench-z4-1.svg │ │ │ ├── bench-z4-2.svg │ │ │ ├── bench-z4-rss-1.svg │ │ │ └── bench-z4-rss-2.svg │ │ ├── bench-2021 │ │ │ ├── bench-amd5950x-2021-01-30-a.svg │ │ │ ├── bench-amd5950x-2021-01-30-b.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-a.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-b.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-rss-a.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-rss-b.svg │ │ │ └── bench-macmini-2021-01-30.svg │ │ ├── doxyfile │ │ ├── ds-logo.jpg │ │ ├── ds-logo.png │ │ ├── mimalloc-doc.h │ │ ├── mimalloc-doxygen.css │ │ ├── mimalloc-logo-100.png │ │ ├── mimalloc-logo.png │ │ ├── mimalloc-logo.svg │ │ ├── spades-logo.png │ │ └── unreal-logo.svg │ ├── ide │ │ ├── vs2017 │ │ │ ├── mimalloc-override-test.vcxproj │ │ │ ├── mimalloc-override.vcxproj │ │ │ ├── mimalloc-test-stress.vcxproj │ │ │ ├── mimalloc-test.vcxproj │ │ │ ├── mimalloc.sln │ │ │ └── mimalloc.vcxproj │ │ └── vs2019 │ │ │ ├── mimalloc-override-test.vcxproj │ │ │ ├── mimalloc-override.vcxproj │ │ │ ├── mimalloc-test-api.vcxproj │ │ │ ├── mimalloc-test-stress.vcxproj │ │ │ ├── mimalloc-test.vcxproj │ │ │ ├── mimalloc.sln │ │ │ └── mimalloc.vcxproj │ ├── include │ │ ├── mimalloc-atomic.h │ │ ├── mimalloc-internal.h │ │ ├── mimalloc-new-delete.h │ │ ├── mimalloc-override.h │ │ ├── mimalloc-types.h │ │ └── mimalloc.h │ ├── readme.md │ ├── src │ │ ├── alloc-aligned.c │ │ ├── alloc-override-osx.c │ │ ├── alloc-override.c │ │ ├── alloc-posix.c │ │ ├── alloc.c │ │ ├── arena.c │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── heap.c │ │ ├── init.c │ │ ├── options.c │ │ ├── os.c │ │ ├── page-queue.c │ │ ├── page.c │ │ ├── random.c │ │ ├── region.c │ │ ├── segment-cache.c │ │ ├── segment.c │ │ ├── static.c │ │ └── stats.c │ └── test │ │ ├── CMakeLists.txt │ │ ├── main-override-static.c │ │ ├── main-override.c │ │ ├── main-override.cpp │ │ ├── main.c │ │ ├── readme.md │ │ ├── test-api-fill.c │ │ ├── test-api.c │ │ ├── test-stress.c │ │ └── testhelper.h ├── multiprecision-Boost.7z ├── oneapi-tbb-2021.11.0.7z ├── ryu │ ├── .classpath │ ├── .github │ │ └── workflows │ │ │ └── presubmit.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE-Apache2 │ ├── LICENSE-Boost │ ├── README.md │ ├── WORKSPACE │ ├── run_benchmark.bat │ ├── run_benchmark_linux.sh │ ├── ryu │ │ ├── BUILD │ │ ├── Makefile │ │ ├── benchmark │ │ │ ├── BUILD │ │ │ ├── benchmark.cc │ │ │ ├── benchmark_fixed.c │ │ │ └── benchmark_fixed.cc │ │ ├── common.h │ │ ├── d2fixed.c │ │ ├── d2fixed_full_table.h │ │ ├── d2s.c │ │ ├── d2s_full_table.h │ │ ├── d2s_intrinsics.h │ │ ├── d2s_small_table.h │ │ ├── digit_table.h │ │ ├── f2s.c │ │ ├── f2s_full_table.h │ │ ├── f2s_intrinsics.h │ │ ├── generic_128.c │ │ ├── generic_128.h │ │ ├── ryu.h │ │ ├── ryu_generic_128.h │ │ ├── ryu_parse.h │ │ ├── s2d.c │ │ ├── s2f.c │ │ └── tests │ │ │ ├── BUILD │ │ │ ├── common_test.cc │ │ │ ├── d2fixed_test.cc │ │ │ ├── d2s_intrinsics_test.cc │ │ │ ├── d2s_table_test.cc │ │ │ ├── d2s_test.cc │ │ │ ├── f2s_test.cc │ │ │ ├── generic_128_test.cc │ │ │ ├── s2d_test.cc │ │ │ └── s2f_test.cc │ ├── scripts │ │ ├── BUILD │ │ ├── double.template │ │ ├── float.template │ │ └── printf.template │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── info │ │ │ │ └── adams │ │ │ │ └── ryu │ │ │ │ ├── BUILD │ │ │ │ ├── RoundingMode.java │ │ │ │ ├── RyuDouble.java │ │ │ │ ├── RyuFloat.java │ │ │ │ ├── analysis │ │ │ │ ├── BUILD │ │ │ │ ├── ComputeRequiredBitSizes.java │ │ │ │ ├── ComputeTableSizes.java │ │ │ │ ├── EuclidMinMax.java │ │ │ │ ├── ExhaustiveFloatComparison.java │ │ │ │ ├── ExtensiveDoubleComparison.java │ │ │ │ ├── FindDifferences.java │ │ │ │ ├── FloatingPointFormat.java │ │ │ │ ├── PrintDoubleLookupTable.java │ │ │ │ ├── PrintFloatLookupTable.java │ │ │ │ ├── PrintGenericLookupTable.java │ │ │ │ ├── RandomizedDoubleComparison.java │ │ │ │ └── SlowConversion.java │ │ │ │ ├── benchmark │ │ │ │ ├── BUILD │ │ │ │ ├── BenchmarkMain.java │ │ │ │ └── MeanAndVariance.java │ │ │ │ └── printf │ │ │ │ └── PrintPrintfLookupTable.java │ │ └── test │ │ │ └── java │ │ │ └── info │ │ │ └── adams │ │ │ └── ryu │ │ │ ├── AllTests.java │ │ │ ├── BUILD │ │ │ ├── DoubleToStringTest.java │ │ │ ├── EuclidMinMaxTest.java │ │ │ ├── FloatToStringTest.java │ │ │ ├── JafferDoubleTest.java │ │ │ ├── RyuDoubleTest.java │ │ │ ├── RyuFloatTest.java │ │ │ ├── SlowDoubleTest.java │ │ │ └── SlowFloatTest.java │ └── third_party │ │ ├── double-conversion │ │ ├── AUTHORS │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Changelog │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── Makefile │ │ ├── README.md │ │ ├── SConstruct │ │ ├── WORKSPACE │ │ ├── double-conversion │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── bignum-dtoa.cc │ │ │ ├── bignum-dtoa.h │ │ │ ├── bignum.cc │ │ │ ├── bignum.h │ │ │ ├── cached-powers.cc │ │ │ ├── cached-powers.h │ │ │ ├── diy-fp.cc │ │ │ ├── diy-fp.h │ │ │ ├── double-conversion.cc │ │ │ ├── double-conversion.h │ │ │ ├── fast-dtoa.cc │ │ │ ├── fast-dtoa.h │ │ │ ├── fixed-dtoa.cc │ │ │ ├── fixed-dtoa.h │ │ │ ├── ieee.h │ │ │ ├── strtod.cc │ │ │ ├── strtod.h │ │ │ └── utils.h │ │ ├── double-conversionBuildTreeSettings.cmake.in │ │ ├── double-conversionConfig.cmake.in │ │ ├── double-conversionConfigVersion.cmake.in │ │ └── msvc │ │ │ ├── double-conversion.sln │ │ │ ├── double-conversion.vcxproj │ │ │ ├── double-conversion.vcxproj.filters │ │ │ ├── run_tests │ │ │ ├── run_tests.vcxproj │ │ │ └── run_tests.vcxproj.filters │ │ │ └── testrunner.cmd │ │ ├── gtest │ │ ├── BUILD │ │ ├── LICENSE │ │ ├── README │ │ ├── gtest-all.cc │ │ ├── gtest.h │ │ └── gtest_main.cc │ │ ├── jaffer │ │ ├── BUILD │ │ ├── LICENSE │ │ └── java │ │ │ └── org │ │ │ └── yuanheng │ │ │ └── cookjson │ │ │ └── DoubleUtils.java │ │ ├── junit │ │ ├── BUILD │ │ ├── LICENSE │ │ ├── hamcrest-core-1.3.jar │ │ └── junit-4.12.jar │ │ ├── mersenne │ │ ├── BUILD │ │ ├── LICENSE │ │ ├── random.c │ │ └── random.h │ │ └── mersenne_java │ │ ├── BUILD │ │ └── java │ │ └── info │ │ └── adams │ │ └── random │ │ └── MersenneTwister.java ├── sigslot │ ├── .github │ │ └── workflows │ │ │ └── unit-tests.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── cmake │ │ ├── PalSigslotConfig.cmake.in │ │ └── SigslotUtils.cmake │ ├── example │ │ ├── CMakeLists.txt │ │ ├── arguments.cpp │ │ ├── basic.cpp │ │ ├── connection.cpp │ │ ├── default-arguments.cpp │ │ ├── disconnection.cpp │ │ ├── lambdas.cpp │ │ ├── overloads.cpp │ │ └── slot-group.cpp │ ├── include │ │ └── sigslot │ │ │ ├── adapter │ │ │ ├── boost.hpp │ │ │ └── qt.hpp │ │ │ └── signal.hpp │ ├── readme.md │ └── test │ │ ├── CMakeLists.txt │ │ ├── bench-slots.cpp │ │ ├── boost-tracking.cpp │ │ ├── function-traits.cpp │ │ ├── observer.cpp │ │ ├── pmf-disconnection.cpp │ │ ├── qt-tracking.cpp │ │ ├── recursive.cpp │ │ ├── signal-extended.cpp │ │ ├── signal-performance.cpp │ │ ├── signal-pmf.cpp │ │ ├── signal-threaded.cpp │ │ ├── signal-tracking.cpp │ │ ├── signal.cpp │ │ ├── slots-groups.cpp │ │ └── test-common.h ├── smhasher │ ├── CMakeLists.txt │ ├── MurmurHash3.cpp │ └── MurmurHash3.h ├── spdlog-1.14.1 │ ├── .clang-format │ ├── .clang-tidy │ ├── .git-blame-ignore-revs │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── bench │ │ ├── CMakeLists.txt │ │ ├── async_bench.cpp │ │ ├── bench.cpp │ │ ├── formatter-bench.cpp │ │ ├── latency.cpp │ │ └── utils.h │ ├── cmake │ │ ├── ide.cmake │ │ ├── pch.h.in │ │ ├── spdlog.pc.in │ │ ├── spdlogCPack.cmake │ │ ├── spdlogConfig.cmake.in │ │ ├── utils.cmake │ │ └── version.rc.in │ ├── example │ │ ├── CMakeLists.txt │ │ └── example.cpp │ ├── include │ │ └── spdlog │ │ │ ├── async.h │ │ │ ├── async_logger-inl.h │ │ │ ├── async_logger.h │ │ │ ├── cfg │ │ │ ├── argv.h │ │ │ ├── env.h │ │ │ ├── helpers-inl.h │ │ │ └── helpers.h │ │ │ ├── common-inl.h │ │ │ ├── common.h │ │ │ ├── details │ │ │ ├── backtracer-inl.h │ │ │ ├── backtracer.h │ │ │ ├── circular_q.h │ │ │ ├── console_globals.h │ │ │ ├── file_helper-inl.h │ │ │ ├── file_helper.h │ │ │ ├── fmt_helper.h │ │ │ ├── log_msg-inl.h │ │ │ ├── log_msg.h │ │ │ ├── log_msg_buffer-inl.h │ │ │ ├── log_msg_buffer.h │ │ │ ├── mpmc_blocking_q.h │ │ │ ├── null_mutex.h │ │ │ ├── os-inl.h │ │ │ ├── os.h │ │ │ ├── periodic_worker-inl.h │ │ │ ├── periodic_worker.h │ │ │ ├── registry-inl.h │ │ │ ├── registry.h │ │ │ ├── synchronous_factory.h │ │ │ ├── tcp_client-windows.h │ │ │ ├── tcp_client.h │ │ │ ├── thread_pool-inl.h │ │ │ ├── thread_pool.h │ │ │ ├── udp_client-windows.h │ │ │ ├── udp_client.h │ │ │ └── windows_include.h │ │ │ ├── fmt │ │ │ ├── bin_to_hex.h │ │ │ ├── bundled │ │ │ │ ├── args.h │ │ │ │ ├── chrono.h │ │ │ │ ├── color.h │ │ │ │ ├── compile.h │ │ │ │ ├── core.h │ │ │ │ ├── fmt.license.rst │ │ │ │ ├── format-inl.h │ │ │ │ ├── format.h │ │ │ │ ├── locale.h │ │ │ │ ├── os.h │ │ │ │ ├── ostream.h │ │ │ │ ├── printf.h │ │ │ │ ├── ranges.h │ │ │ │ ├── std.h │ │ │ │ └── xchar.h │ │ │ ├── chrono.h │ │ │ ├── compile.h │ │ │ ├── fmt.h │ │ │ ├── ostr.h │ │ │ ├── ranges.h │ │ │ ├── std.h │ │ │ └── xchar.h │ │ │ ├── formatter.h │ │ │ ├── fwd.h │ │ │ ├── logger-inl.h │ │ │ ├── logger.h │ │ │ ├── mdc.h │ │ │ ├── pattern_formatter-inl.h │ │ │ ├── pattern_formatter.h │ │ │ ├── sinks │ │ │ ├── android_sink.h │ │ │ ├── ansicolor_sink-inl.h │ │ │ ├── ansicolor_sink.h │ │ │ ├── base_sink-inl.h │ │ │ ├── base_sink.h │ │ │ ├── basic_file_sink-inl.h │ │ │ ├── basic_file_sink.h │ │ │ ├── callback_sink.h │ │ │ ├── daily_file_sink.h │ │ │ ├── dist_sink.h │ │ │ ├── dup_filter_sink.h │ │ │ ├── hourly_file_sink.h │ │ │ ├── kafka_sink.h │ │ │ ├── mongo_sink.h │ │ │ ├── msvc_sink.h │ │ │ ├── null_sink.h │ │ │ ├── ostream_sink.h │ │ │ ├── qt_sinks.h │ │ │ ├── ringbuffer_sink.h │ │ │ ├── rotating_file_sink-inl.h │ │ │ ├── rotating_file_sink.h │ │ │ ├── sink-inl.h │ │ │ ├── sink.h │ │ │ ├── stdout_color_sinks-inl.h │ │ │ ├── stdout_color_sinks.h │ │ │ ├── stdout_sinks-inl.h │ │ │ ├── stdout_sinks.h │ │ │ ├── syslog_sink.h │ │ │ ├── systemd_sink.h │ │ │ ├── tcp_sink.h │ │ │ ├── udp_sink.h │ │ │ ├── win_eventlog_sink.h │ │ │ ├── wincolor_sink-inl.h │ │ │ └── wincolor_sink.h │ │ │ ├── spdlog-inl.h │ │ │ ├── spdlog.h │ │ │ ├── stopwatch.h │ │ │ ├── tweakme.h │ │ │ └── version.h │ ├── logos │ │ ├── jetbrains-variant-4.svg │ │ └── spdlog.png │ ├── scripts │ │ ├── ci_setup_clang.sh │ │ ├── extract_version.py │ │ └── format.sh │ ├── src │ │ ├── async.cpp │ │ ├── bundled_fmtlib_format.cpp │ │ ├── cfg.cpp │ │ ├── color_sinks.cpp │ │ ├── file_sinks.cpp │ │ ├── spdlog.cpp │ │ └── stdout_sinks.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── includes.h │ │ ├── main.cpp │ │ ├── test_async.cpp │ │ ├── test_backtrace.cpp │ │ ├── test_bin_to_hex.cpp │ │ ├── test_cfg.cpp │ │ ├── test_circular_q.cpp │ │ ├── test_create_dir.cpp │ │ ├── test_custom_callbacks.cpp │ │ ├── test_daily_logger.cpp │ │ ├── test_dup_filter.cpp │ │ ├── test_errors.cpp │ │ ├── test_eventlog.cpp │ │ ├── test_file_helper.cpp │ │ ├── test_file_logging.cpp │ │ ├── test_fmt_helper.cpp │ │ ├── test_macros.cpp │ │ ├── test_misc.cpp │ │ ├── test_mpmc_q.cpp │ │ ├── test_pattern_formatter.cpp │ │ ├── test_registry.cpp │ │ ├── test_sink.h │ │ ├── test_stdout_api.cpp │ │ ├── test_stopwatch.cpp │ │ ├── test_systemd.cpp │ │ ├── test_time_point.cpp │ │ ├── utils.cpp │ │ └── utils.h ├── stb │ ├── CMakeLists.txt │ ├── LICENSE │ ├── stb.cpp │ ├── stb_image.h │ └── stb_image_write.h ├── tbbinterface │ └── CMakeLists.txt ├── tinyexr │ ├── CMakeLists.txt │ ├── README.md │ ├── cmake │ │ └── sanitizers │ │ │ ├── FindASan.cmake │ │ │ ├── FindMSan.cmake │ │ │ ├── FindSanitizers.cmake │ │ │ ├── FindTSan.cmake │ │ │ ├── FindUBSan.cmake │ │ │ ├── asan-wrapper │ │ │ └── sanitize-helpers.cmake │ ├── deps │ │ ├── miniz │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── examples │ │ │ │ ├── example1.c │ │ │ │ ├── example2.c │ │ │ │ ├── example3.c │ │ │ │ ├── example4.c │ │ │ │ ├── example5.c │ │ │ │ └── example6.c │ │ │ ├── miniz.c │ │ │ ├── miniz.h │ │ │ └── readme.md │ │ └── nanozlib │ │ │ ├── README.md │ │ │ ├── nanozlib.h │ │ │ └── wuffs-v0.3.c │ ├── tinyexr.cc │ └── tinyexr.h ├── tinyobjloader │ ├── CMakeLists.txt │ ├── tiny_obj_loader.cc │ └── tiny_obj_loader.h ├── tracy-0.11.1.7z ├── unordered_dense │ ├── .clang-format │ ├── .clang-tidy │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ └── workflows │ │ │ └── main.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ └── unordered_denseConfig.cmake.in │ ├── data │ │ └── fuzz │ │ │ ├── api │ │ │ ├── 005cd7f407b69ba5b0c1e692828ca20b7fb11264 │ │ │ ├── 00a78247e4bdcee895295bbdeb7ae08479daf82e │ │ │ ├── 00b05d7d90848f32ca139aa1a2a7bfc05ecdc6aa │ │ │ ├── 00b7cb97d475f7662ee9f16e81655b0b3615265c │ │ │ ├── 00d29941d07ea0f8bd175bf354d84c025f1aafb4 │ │ │ ├── 0180286a4e29658f97edd3feacc087b3a1d1a865 │ │ │ ├── 018e3eaf0cc8f6c44dae51ee27af2ce74ca8ae38 │ │ │ ├── 01c03d4d5fa42b337ff3e625d2d30163f3c6975f │ │ │ ├── 024601b8ab57d10922d2d026c9de8fb0d0b3f653 │ │ │ ├── 02b4e5d03d5fa707e4c1884f126320cf2d5cee24 │ │ │ ├── 02e7ab4627d4e676e38ac92cd806599e7d2263e3 │ │ │ ├── 03b884c410eca3a656ace333f9ab7d546da46371 │ │ │ ├── 03ef8ca2cfdcf234924014bb10e45f3d95b0e562 │ │ │ ├── 040026f040539eeb65daef4fad5205a3600ec9d4 │ │ │ ├── 043d8b204f1624bf27c3d301169ab8d7cfebe195 │ │ │ ├── 044838b91ccedabd62bb45a224bc493d1b579904 │ │ │ ├── 045b5e7e77ecc4bc2c987e3a2c3560655f45c414 │ │ │ ├── 0460326e37c21a1453186c11f5b853bee04a5303 │ │ │ ├── 0460629c0d574a3778d1683cd5d175cdc1e9bf1c │ │ │ ├── 0474d119de2770b49afb3d7d79bccc8ba32e7652 │ │ │ ├── 0493f7179612c66da3843442de85dc8fddb920dc │ │ │ ├── 04ee4ef88c727a049f7df84a2e92023ed19e748a │ │ │ ├── 04f332b71c8ebf502ca885306f9f8b7eb2874389 │ │ │ ├── 05002175afafa37cbc9fcc10e91af646e902655a │ │ │ ├── 050bb758742a9d8c1baf0057fbe45a920fc8c521 │ │ │ ├── 05c2cda4c7a347efb52d8d86e6fb010d31a61f2d │ │ │ ├── 05cb85ee3c7ee6f363d64e4e3e2dd99a9c755a0a │ │ │ ├── 05cd5621b93fd179953feb30a49b8ee76a768e2a │ │ │ ├── 061fb208431db793bbd3645b7a16058a1e2a2412 │ │ │ ├── 0621467f82011be1c0482abfde29c87eaca0e410 │ │ │ ├── 062d6291e2cde345e8bea3c37af386e217e6968b │ │ │ ├── 064d7b676a567ae2c96f1ae9eb0924f4de6ce9f3 │ │ │ ├── 06b1a797044703fb9d27589c617915901afdbbc1 │ │ │ ├── 0787642e20af3bb0582be7d387ca2f39d8566dc7 │ │ │ ├── 07f6c0f4d7f925a693b4576895426d4f35210b8a │ │ │ ├── 08c5625f9aa5e542ef73c521fa9e508d28ef45f9 │ │ │ ├── 08c684aa36bebe1d5c53e9761e6029a490377e93 │ │ │ ├── 08d06aa3815c9a720f574e8a2d2a0e9c6318a3b2 │ │ │ ├── 08f217f098c5f10214f19660a31f74fd3b28f433 │ │ │ ├── 0954bbc123d3889fb38a7ea315b0e82875e66987 │ │ │ ├── 096f31e8d3a43fe1baabf639bc0819d70ead8969 │ │ │ ├── 09e9a26eedd67a7d67f1eaed943b41898bd18b2d │ │ │ ├── 09ee480638d6498318deb3f5cc0bc5c60942766a │ │ │ ├── 09f93ae84d74ef4561ea13b191360774fe2d8608 │ │ │ ├── 0a3f4a271a15205a4690cb8c656b70f22deefe52 │ │ │ ├── 0a6890bb2ad96b206334440c7e9f94295f1c04f7 │ │ │ ├── 0a77a0a3e93a5c3b5590254e59a496c3009f5c6a │ │ │ ├── 0a80baa1797615faddb0ccfaa6d46382a6b3e0e2 │ │ │ ├── 0aae23a0893e524f945ad497e8bf2ea6632445d5 │ │ │ ├── 0ab8318acaf6e678dd02e2b5c343ed41111b393d │ │ │ ├── 0b1a71d25a878ecf9ce82303764b9e184f308bbc │ │ │ ├── 0b3130ed47b4188d9a717e4d44bdebb3abbc44da │ │ │ ├── 0b6adacdd825ea8481ce1d1e545d2ebccb769317 │ │ │ ├── 0ba059a3520eaa49b3a6565ce7d4cac9d1b82d62 │ │ │ ├── 0cede2656130276185b38b2fb9b56d1fec0d8ac7 │ │ │ ├── 0d0588f1bfe50fb423b459055f3d63c6a5432000 │ │ │ ├── 0d06b0a171fca96ca6a3e68323726b39e008838a │ │ │ ├── 0d0bbe5eea2180288a994c4992280c7bc2ec6763 │ │ │ ├── 0d2a6c8ca13553e291bea433b35db015a5cb31e5 │ │ │ ├── 0d93c9e80d80011f47f935d3eeeda3842b9066a5 │ │ │ ├── 0e398dde9daf69063727b4628b4b5ed6fcf647f8 │ │ │ ├── 0e545156f693836591a56396f97b94127eb231e9 │ │ │ ├── 0ef117454e55fc72b3eb4ed4f853cac4ec692ff7 │ │ │ ├── 0efcead1884066653639cdf1a628c9d8f92366fc │ │ │ ├── 0f0892a4480a6ffb81d4240efee4f727c415621c │ │ │ ├── 0f2c98e036015bf36c55ff5d67f6ee0ea9180690 │ │ │ ├── 0f4365e85e91cc870cceb3bbb3561ce294b8f922 │ │ │ ├── 0f7703697ef785535a55293013391ff9e40a4216 │ │ │ ├── 0f8c7612687e419ac70144011dfa8fcbdc717228 │ │ │ ├── 0fc1e2d4dd526222bd0c09976e6da9c05281f930 │ │ │ ├── 0fe3a9e0e7f89c4ca381ce8da2af9cfe2cb2d331 │ │ │ ├── 0fe57df21caaa3cd11b20745526005dc32108413 │ │ │ ├── 100a2659dcd0859aad27c7d67dcadb93678a1ec6 │ │ │ ├── 1058c64354951e205928ba65a597efae2a804658 │ │ │ ├── 106cbd1af35bdc6092b21d41c6be415d3a30830f │ │ │ ├── 1078aadb2db22cf008832242292a02fca407acb2 │ │ │ ├── 109c3a5cd70c29448140eedd7b19f4c86ff57846 │ │ │ ├── 10c7bf54c64fbe40648ac7d8cd787a354f4f4713 │ │ │ ├── 10c9ac876a74aa2f8e2977108d91b9d75a233b72 │ │ │ ├── 10f6c95503ef9be19d72058dc788d1b93f836ac3 │ │ │ ├── 11eb620198c9a56ce48a0360dc2a8c410e4b859c │ │ │ ├── 1264b0e84b387bbfbf6a82aca1428cb7437292fb │ │ │ ├── 128989d33ea41b2589bc64e1609b8e5575bed52c │ │ │ ├── 12ca02936a8977fa5907dcc466bfd879a4455967 │ │ │ ├── 13148f994b89ba980e14e77d4de156d4e9190d99 │ │ │ ├── 1319d5c8b4862292fae6083b1b69711869591c51 │ │ │ ├── 1352246e33277e9d3c9090a434fa72cfa6536ae2 │ │ │ ├── 13c116fbc8b8bc27f22b1b4ff941a85281ada1a3 │ │ │ ├── 13ded71382f01d07be90cec0d70e5b4d2247e872 │ │ │ ├── 140e927b6233b60236ba8bfd5a9e8ca080e141dc │ │ │ ├── 143ad0b29d781af9dbd6801cf5c60c024760b016 │ │ │ ├── 14be94de8a37175291675a2ca5340cb7b0adb77d │ │ │ ├── 14c23f102a05b1907a103d5e9d2ac49b6bd1e706 │ │ │ ├── 1547a95dfc773a13cc5cbbe296f25e98f298b22f │ │ │ ├── 156f47fcf2a982f7e32c0d2d9ef15e1c938b9ae7 │ │ │ ├── 1594253220171030ad68a1d7bbcc4220e526a571 │ │ │ ├── 15a195a4798e53fcd1ed6ccccef852fe8c5e81df │ │ │ ├── 15cf871ecb8c2904105cf5202a35d8c8c6cab413 │ │ │ ├── 1669d455fe6afe6e0e6b9df6b7b65fbb85c8ac18 │ │ │ ├── 166a5d3e55366fe1e755e6864955d9adedad5af1 │ │ │ ├── 167a8d558d82c1b7319bad65a57a19a3163c3baa │ │ │ ├── 1694365e7741c0914b68469043f72a75eb5fca6b │ │ │ ├── 169db9a0fee72a7f81f7fd5b752cceda69f4ec8f │ │ │ ├── 17636d4fb9d9b80331348495f5526d3525fb930f │ │ │ ├── 17a45fb51a7cb31980b8af210a9c21f82b444d5f │ │ │ ├── 17b0e59a190ed172ede5ac6493b9339e5ede3626 │ │ │ ├── 17b75617b5c0ab200b6bd4275e8c19dda4aea490 │ │ │ ├── 17c2c9ec400f2c97fa30a0dec6b8a787af909a22 │ │ │ ├── 17f14f7cba853ed70250861e9ce5896766de8bf9 │ │ │ ├── 18331dd6f12f3396020ae279d67a874e28fec83b │ │ │ ├── 185a9b5f28d582c32ceb484afcb8c4206f7dd988 │ │ │ ├── 18c8e7b5836a3fd84896e6423e48f20cf6b5f7fe │ │ │ ├── 18caca41327107d5ac9aea4e0dc3e3b3670a1201 │ │ │ ├── 18ed1636f06037da25b2c8bcf93a86473150b1be │ │ │ ├── 18f23d80901a2e967c4cabf028bffb6a105cce57 │ │ │ ├── 18ff02cd25ab7835be46025faf38c7f806f27b81 │ │ │ ├── 1967bef58c976a0f6fbcf328865659a4f3e90f2a │ │ │ ├── 19e70fc4399f29f26c55a4291b60f6a47322f039 │ │ │ ├── 1a23bcdab70401d8fc5fe624f7597094a4b3293e │ │ │ ├── 1a2697058081d4cb032b3d358b84e0a46f93e882 │ │ │ ├── 1a6dbaa717f8837c4bd4332121e92bd73bbec049 │ │ │ ├── 1aaec78739114ad27780e38e640866ba7c2d69d8 │ │ │ ├── 1abf05909b73f00833f2d5f0f8d091b76b738193 │ │ │ ├── 1b34fd262a396b4a3713b8a207aad5fcdd8056d3 │ │ │ ├── 1b3fca8725ca7c29201949316cc5073b74e7b3fa │ │ │ ├── 1ba65cb2440cd71e59fc52b51c95a4ab1cfcff2d │ │ │ ├── 1bbaa91fd12ec9e4313d5842ecf39932822cc53b │ │ │ ├── 1c103710c8e7006902025df70c4039fe678e156f │ │ │ ├── 1c12a84fcfed1811a0839d368ee83a7ed86f801d │ │ │ ├── 1cb6ffd144b5e06280d3514159ff551aab64379e │ │ │ ├── 1d53182eba1b8c0f803942aaeba601e5187be9cd │ │ │ ├── 1d7ddde23acd8c7b109e8490729e7d6c3b528b23 │ │ │ ├── 1d9446811dd83bb1e21d5420f8c7f43b4653ff03 │ │ │ ├── 1e5c2f367f02e47a8c160cda1cd9d91decbac441 │ │ │ ├── 1e613882e63bfb7ec394adc25eaf9804458d3d82 │ │ │ ├── 1e769ca66daa0e7bb96a1a27bd366a1a849ce099 │ │ │ ├── 1ee8348b1b9dbcb75ec19f8a013cd3c7602a304e │ │ │ ├── 1ef348ccb1fcb6ed87cb4455f29e4ef6ad871de5 │ │ │ ├── 1f80b2a82346308bf9b27649628e57139f86451e │ │ │ ├── 1fa3a7652a6be8558b88a520fa55b5e7e0ad32c0 │ │ │ ├── 1fe7a60c7b579a5e3f821c85d33503bbcdd3a125 │ │ │ ├── 208287c8601b08c9740907fb03657392d883b542 │ │ │ ├── 209073d44705be4d1885022fd8f0d0eadee5a6ea │ │ │ ├── 20b5d2f9d77714e2f0d585051e282a3e6f28f47d │ │ │ ├── 20c41ee834283102d68b5ccbd06f964df7d5db27 │ │ │ ├── 228667cd4a672bc21490407866ec4edaca2d3abe │ │ │ ├── 22f3a4b57f9a18490b13b17ea9e45923de4748d6 │ │ │ ├── 23211b5d7895f27a2e376d0397732ee7ae31fe2b │ │ │ ├── 23513e02c84d963fb8aa982f6584e76b84dbb15e │ │ │ ├── 23e2b4ec24d1fab02aa6244cdac6dea1fd2bdc29 │ │ │ ├── 246d903948312f19bad2f6b91d7a535bde03e810 │ │ │ ├── 249fe51cbaef9fe505905e3e79221a82a0b4f550 │ │ │ ├── 25351bea1877c088f67052c731df9c2b7ec55eac │ │ │ ├── 2581d46f2c1ec08f772a9e48713b76a33ac90397 │ │ │ ├── 25a8b83ced77387ab965a2970219a410ebd80cdc │ │ │ ├── 25ce95337bc47e8bda52d1f2650aedfadcf7dced │ │ │ ├── 25e48d79670386766356123bc0f6fc06518cd3c9 │ │ │ ├── 25f998a2404e2d2be42ce7f031fa790149ae61ad │ │ │ ├── 2609c21617130007f9c642c3d5b023f591adf731 │ │ │ ├── 260faa145cbd12fe30966978724211424060c823 │ │ │ ├── 26230b1e9a111b21dabfbd67a3136e351eede570 │ │ │ ├── 263d705a8e9e831477e3167cc8bbbc776c1c70dd │ │ │ ├── 26442b0455a8d9be5d7e5974357a4f14244d5c29 │ │ │ ├── 264bafbcd1499f96ad31bc720cd95a036841ceb0 │ │ │ ├── 269f9dcf3cf0042af35dec59cdc8d629a1f12675 │ │ │ ├── 26beba86b5842779962bd7d5c3e0936798784f53 │ │ │ ├── 27b132ed4919bdf0c655ec4cad2890c8f664bbd7 │ │ │ ├── 27f57cb359a8f86acf4af811c47a6380b4bb4209 │ │ │ ├── 2845cccc053756fcb41493b33930ee5ad5db9084 │ │ │ ├── 2890bc38ef852b890aed392899463aabac2347b9 │ │ │ ├── 28a655b8b435fffd2cebc52d5f716591b3169aca │ │ │ ├── 28caad6ea086ed34a069b5cb3c2a4b96c743cc78 │ │ │ ├── 2908e305fb62780d3b7ca11657a67abe9755ba63 │ │ │ ├── 29371b45b46460a6bf8240283a31cc49a30c6c83 │ │ │ ├── 294330edf83a589e3422af6b716dc54611b60547 │ │ │ ├── 2981148b7761ee6fe94a8f0c2f19210eeace26f2 │ │ │ ├── 29e3ce1b04dca1bb3250069b3dc865873a2ac9a9 │ │ │ ├── 2a012853642433f3129adbd28578c173afa8375d │ │ │ ├── 2a04762f6f2e1a579ff501f4e6406deeda80377f │ │ │ ├── 2a28e75028669194d75d35bd0c9be3e012a898bb │ │ │ ├── 2a316ab17eae23e1da5a4df6782012bcb1f3274c │ │ │ ├── 2a687445f01f304375eef92e7b616a56e6e2bb2d │ │ │ ├── 2a7ec8bfa101aea17a28e93afc81b2c360369154 │ │ │ ├── 2b20e429f0163a8ee4a261156b74e06b0e463aa5 │ │ │ ├── 2b26ccdd862aa0ef02aa47bc32e07ebafdad0bc5 │ │ │ ├── 2b9ad2c3e817306934e4a31f7f1a4551516a99aa │ │ │ ├── 2c355e8be062f107389e4907ff25b8ab9dac23db │ │ │ ├── 2c763052f91af9ebbbaa2967bb600bad57550a19 │ │ │ ├── 2c7e83e73c093fd1d5e2de5df88e8a156268dea2 │ │ │ ├── 2ceeb4f791e9a3bb37700ecf7518c3c59dfd1b49 │ │ │ ├── 2d78893e165ff4e05d91ce645f243bb9ddcf2d38 │ │ │ ├── 2dd86125975dd671bf73f1bf6e720b5e08684c7f │ │ │ ├── 2e31ee667681e433a24c142e9b9233cbc0908c94 │ │ │ ├── 2e5d089fe9331589c209a9f71ef00f0b879c3af6 │ │ │ ├── 2e908f99252a278ab7218424ec1edf9b6390820f │ │ │ ├── 2eaafe9e740b24ca5a373728e12f102c9c39014f │ │ │ ├── 2eaead85908c333670bbb92604c44caee23998b6 │ │ │ ├── 2ec2484583a49e75743e1a590cdb43a8177e2c5d │ │ │ ├── 2edd8cd812198fa5e8150f77da4f37b5099c4316 │ │ │ ├── 2f0529d991f090770f7c30ccaf34c5aca849cfe5 │ │ │ ├── 2f793aae6b3ea214f50c4ae434e16f6c05834535 │ │ │ ├── 317bce2d87616fb2c42bb63169c54016556bfac1 │ │ │ ├── 31b99824d4184868da142a0ad5dc099d349f1aca │ │ │ ├── 31c440f9ab80976665056e180c9c49263c32aeb7 │ │ │ ├── 32254fa9607fa19fb19cd948a2386805869ac10a │ │ │ ├── 32cff7bde64fe164f16aa6b58e0698d7d2133818 │ │ │ ├── 32f2ee1ced8a5d1fc83d39a735850638c59530bc │ │ │ ├── 331e16bfca9f93e9d4236abc1ec5c039d160f579 │ │ │ ├── 33ab0f5e3f07525e92a0a3b620789627e277e999 │ │ │ ├── 33ec943443d171bf7d7ae35a3ed38da7da730075 │ │ │ ├── 3453d7681d8123ccd687b449392af60fb33ba961 │ │ │ ├── 34a4fe6682c22fd3ee4919580d9f06850cbf6814 │ │ │ ├── 35059cdc876f4038f0ce1b2db1dd3e1f14f31d7d │ │ │ ├── 35b6e4e31e923348f16533f51f60777c7f6279c1 │ │ │ ├── 35f69d7e79c19306708eea1d1fdfe9d927d42887 │ │ │ ├── 360388c167d52ca09a3aa229240ff1c786da1243 │ │ │ ├── 36069dba5cd2528ef3359e9c758ac1894fbbcad9 │ │ │ ├── 361a52996679445c4571c014b26c883135b052ff │ │ │ ├── 36cf1097a81907c2ab3c01a288a7a16aa8a705fd │ │ │ ├── 36fb6bb919f01f334c2e19978dfc12836b99befb │ │ │ ├── 36ffc266c5cdbd959f8c805db2a6a8c581906db5 │ │ │ ├── 370d3923b73a01d1ede661de47df1593b46855b6 │ │ │ ├── 3711244abbbac4f272cf868661bb9a097ace314d │ │ │ ├── 372d908dc6926e581251e81e18f4410d512911cc │ │ │ ├── 37a0aabf697214ac0614190ada5fa0a941696d28 │ │ │ ├── 37bd8251221c859be873413a0942a344e2486a31 │ │ │ ├── 3830fcd5059b81d76f3da91169022c45690187a2 │ │ │ ├── 3881d41035bd4e205249e6ec8935d92caa18dbb1 │ │ │ ├── 38dbdec3871e21eba204a8282310b46e7d8171e9 │ │ │ ├── 39435e5f8f4bd76eec8a1129f03f1d723d252828 │ │ │ ├── 3946cfca0ce11f049652af0c91d829c8927cbecb │ │ │ ├── 39dde23b8e71cc299c800d79ea9a5ea59abe9bb4 │ │ │ ├── 3a1172e202e5e95a6a7282542fc2eacd411d9995 │ │ │ ├── 3a12f2e562c3240f02756c7c8f2a573a744a10a3 │ │ │ ├── 3a460c0a70c91908a50a909200078219d4488ba1 │ │ │ ├── 3a559ebbfaf72f7a0663b2feecaf800dbb1a6588 │ │ │ ├── 3a6d82daf2d1e1ec5b29c4be40d84005031e8442 │ │ │ ├── 3ab14a63730cfec4f7b08593849bfe642ca42b17 │ │ │ ├── 3ad5741153a7b7191167b211585aca18963f9545 │ │ │ ├── 3adbf924a8ed4f6aa2000d7598b24a2f270a880c │ │ │ ├── 3b1e37dae3c4dfcc971b11822101b9b58a8a4ca3 │ │ │ ├── 3b2c96903d2ea81cd098021cf2d0b54b5ddf3a48 │ │ │ ├── 3b47597b5d2313228b17e6e324bfd7de89365e2b │ │ │ ├── 3b598fcc74463dd9e42b94886b8fa970f326bf17 │ │ │ ├── 3b78b180dfab17c9239ef95456d1e62cfa24136a │ │ │ ├── 3bdcd1a594405f742ee254098ffd745455fc3345 │ │ │ ├── 3c0c2a180ee3e26b70248daaec24eb7efed7bedc │ │ │ ├── 3c58abc598f65641ec0f1f485269589d066bf3e2 │ │ │ ├── 3c7923f135d358fd685065fde8a996d474367da2 │ │ │ ├── 3c8bb9d422e8d8dc6d8f85af1d9282f035285dbb │ │ │ ├── 3d0dd6103b986bc02d33f08dd67d0ef452e88ad8 │ │ │ ├── 3d1fe026c178711b60fe2cb6117f825e35ee875b │ │ │ ├── 3d691c368cb188f640f4387ae4b4ba2dc53f89f3 │ │ │ ├── 3d6f49b6e71aa81d5a386c52df789839217b0067 │ │ │ ├── 3db1a1c137a80f0613841e0aa11fc4edd236f5a0 │ │ │ ├── 3dbb4dd3b6088bbda15724072ade5dff11289eab │ │ │ ├── 3dde490fe66337b64d25599bec72f6f05f7fa370 │ │ │ ├── 3df9aba8f86270f086d32dcc4a6786088419e84c │ │ │ ├── 3e13a85705068e52d3d1156344d00043752d2345 │ │ │ ├── 3e67abbb43bd4b4c9d7460192dd634114f3147e5 │ │ │ ├── 3e87cd594046fc2ba02892d29191933dd009109e │ │ │ ├── 3eb416223e9e69e6bb8ee19793911ad1ad2027d8 │ │ │ ├── 3ee207f869c84fca99b82c26283935f5db0fbaf7 │ │ │ ├── 3f4941423b4d4b2def357c9cf10ec8afa8e669c5 │ │ │ ├── 3f8148334e88e1f07d6a2162846d254af9d6b17b │ │ │ ├── 403709742e60e92e3ce4486193f801c49238e951 │ │ │ ├── 4067c8d1bee31f0fff1ad43cc9bf358bf965830d │ │ │ ├── 40bf0c6cf2807a6e3c7a97fbd25244690e752b26 │ │ │ ├── 40bf73dfbe676f3085a1be85af596ec16356a486 │ │ │ ├── 40fa37ec00c761c7dbb6ebdee6d4a260b922f5f4 │ │ │ ├── 41432da405cbfc2032b72d2847d79c3732550623 │ │ │ ├── 41d63d53691c41ce65840e87e46c4f6832678ed0 │ │ │ ├── 41d709c84fa314955e2e2c06ae44bac3f91ac738 │ │ │ ├── 41e379b4b24aaa033ee1478d71341d90438bedd7 │ │ │ ├── 41ec452a84c0eef1dadfb772ada4edaa02f7f14d │ │ │ ├── 421ab52d6e9d8ff0f7d1d85e2670b11352b4817c │ │ │ ├── 4245b2816b14adcc91d3d77f90e2b6437f9bafc3 │ │ │ ├── 424723c132efd02c0fdec8058044274ae78aef60 │ │ │ ├── 424bc4eeb47a4086b3598091598c25c1e5993370 │ │ │ ├── 4277bf69dc4278ed3eaf1cfbf94721d1b7884b89 │ │ │ ├── 427a61bdb0dfed4fa92a558959a30d09203dd9fe │ │ │ ├── 42ca847b64bd98ec8bdbd85748e5724ae86167b7 │ │ │ ├── 42e78f5d308a464167e6c94c50047bc592f9f572 │ │ │ ├── 43429ba48df3e17b23233ec9e091a135ca439841 │ │ │ ├── 4388bc7af5c1c4201b1bb1244d098b9dcfbaeb55 │ │ │ ├── 43a378ee3af1f6882f59fac65d5173c1c799b921 │ │ │ ├── 440502b45a737d5b2e5623b49cbb9e6559d38ebe │ │ │ ├── 446ca466b40f2388269853bc4c7017f84a102654 │ │ │ ├── 44fc118f336bc8b2903bd6ef1d6b0c843ce647ff │ │ │ ├── 4502efcac5c19ef9424c5226830c956a122e7784 │ │ │ ├── 4510a1caafc630f08393c0653c6bff453e2b51a6 │ │ │ ├── 451bb5b8e85859f406439d5777ac733416f4bf43 │ │ │ ├── 453585c4ffadf9cb7917ace8703e942cb5462ac5 │ │ │ ├── 453b64396e8b2036b18a91ee76c88c871fe6bc49 │ │ │ ├── 45c36ae10a8596101c4eef87f56f959c74beef2a │ │ │ ├── 45ce165d12ee08b0a93d8dac8af975decd83478b │ │ │ ├── 45e77fe4aac82e1cf3f49bf26b209c110d95df22 │ │ │ ├── 463c8af78a6b1fb5e28044838cd209ed5d301d54 │ │ │ ├── 464c429eabcf8bea0ef7eaabbbad580991455dab │ │ │ ├── 4658cd64fcd84418a9ac3003d1e5654696ce93d4 │ │ │ ├── 46a72dc2c983f43f7bda4f03b705e3f3d2ac83bf │ │ │ ├── 46c7f7806460da3df23d5989ca5cad1d9a6a578f │ │ │ ├── 46d6a22920746f08ce476c3c0891a312422d8430 │ │ │ ├── 46ed7c052afc7f78fad09e04bdd05e230bae9bf1 │ │ │ ├── 47539a5496d3162866d18f39a2a83ba74873cbb2 │ │ │ ├── 47557007a522e678f1d51fbe44081386dbaca59a │ │ │ ├── 47ebfbee69bc4c4c73f3c72d43f6719c1bc0ba3f │ │ │ ├── 4805fb8dac7fbf45efb2a3406f929aa4b506fbd7 │ │ │ ├── 4826aeb6f8a4e153bcfb3223213c5a30bbd2a856 │ │ │ ├── 4839255529f34d34aae4b29a59b9ba90f9bd7eed │ │ │ ├── 485ded326097f9607ed9d55561ee4e9b8647c2ca │ │ │ ├── 4881d2dae2b991999855f22c11797bb9488299a4 │ │ │ ├── 48bdef091bf2aad6bdf0a722e29c596dfe65fe91 │ │ │ ├── 49469db80e7fc61d4b9cebcb39b2335460b717f2 │ │ │ ├── 494c40a1bb15cd6d3e7198f6fce391ba91077177 │ │ │ ├── 498a2acd29bb5d4bc6f74cf2e59285966c2cd8e6 │ │ │ ├── 4996a3e7c42b792fea8e48a6303a7ef97b47e04f │ │ │ ├── 49b79ab424a19b6ade6210dbc277e076268f2593 │ │ │ ├── 4a0977214a607e3f61185afb43493a0a3dda0ab0 │ │ │ ├── 4a1dd7a69bfcaf0c3754f7e93d5f1188df45a785 │ │ │ ├── 4a4cf05dec1ecd8899b8a8ccd232b7485738c7b4 │ │ │ ├── 4a70c7b7fa387d90da046f4c552ac8f58a44eb12 │ │ │ ├── 4a7cf73d75284f51b40c036af687f4039238fb5d │ │ │ ├── 4a9ffaa04518d730003e86d583c9c6fdcab4092e │ │ │ ├── 4ab4e667baddc7a91ac23e8f71eeb2ce5e4cf997 │ │ │ ├── 4adf3004210a56514257f2f5715ed9b6b02c5c8a │ │ │ ├── 4ae63173360c2ff720bb2f123e80eba7a6749b7b │ │ │ ├── 4b003eb06053a672a623d73455065d20a6243585 │ │ │ ├── 4b1ff65393e1268867cec86cf3533c31224bafde │ │ │ ├── 4b41e8c8567f54051896ed94a0f8120e3a2110fb │ │ │ ├── 4bd0937233440e7fb2cb0b8ba9c4359c9749eb89 │ │ │ ├── 4c481fd77d90e294e20156f9906a915dd361f5e8 │ │ │ ├── 4cd6d9668ea1e973aef706aa7db1a49efb13a483 │ │ │ ├── 4d3c78d99194d2562edd01f72b273d919230bc85 │ │ │ ├── 4da0d74fd048bda1682b06efc20d606c1d87cfa0 │ │ │ ├── 4da47f4e252597b1a32fae3889a597e58da91ac2 │ │ │ ├── 4da6bc478fd5ef05a22eea46350ba04e917b8b71 │ │ │ ├── 4e83065c36ec0a815f59a31a9c2a2841cbea8e19 │ │ │ ├── 4e8dabd57ddb90dc4b338819a394dae397003c38 │ │ │ ├── 4e9b8037a3e552b51bdb1b89b3dda2259bb218ed │ │ │ ├── 4ee2e480e4d4d517da4755664c17118b93964c5f │ │ │ ├── 4ef4302d490b638f579a89b77c9d1b7809f4e5dd │ │ │ ├── 4f19728af4794fba5fd793715bb3cd45d915e177 │ │ │ ├── 4f271709e575c1c3ad95324dd56b2e1c35c3fc07 │ │ │ ├── 4f63c75bbb35a1789b2a0fceb7cd849a6cfdbdbc │ │ │ ├── 4f7abda7826a65ae34f89377c355dc6687f2a0e8 │ │ │ ├── 4f886111f88e60d8bd31f01ad6d036da9f2936d5 │ │ │ ├── 4fa8103001c85eb417d3d009f9c069123d627eac │ │ │ ├── 504013d972274d573e541404c4d83c9965ce508b │ │ │ ├── 506086cd70394c2853e3f835ef19170c8cec700a │ │ │ ├── 5077aa63f8dcc01908b232f75ef25599dc9bd17e │ │ │ ├── 50e49a6abe34785232ca8bd2ac7d9beb498e07da │ │ │ ├── 50ed9db3096365cd089e1b37f2a4c5160fea9cd6 │ │ │ ├── 5124a4a6f29061b3d61f3e8a86db67a4128ba351 │ │ │ ├── 51445c8fc21e47597603dac1a2e7dcec5c17b29b │ │ │ ├── 516113b8b1fc53e81890cf9b1af133c2cf107575 │ │ │ ├── 51fcd9548e220b280b78c6f81ac8b2b4c3dbe349 │ │ │ ├── 523fe01478e1cd35d0dbb13ca301d3de7ca916f5 │ │ │ ├── 52b4319d15ea35c1a951094430e5294ceb83a1b3 │ │ │ ├── 52c276e9c1bfe6866cc237244f421f761a3067a5 │ │ │ ├── 530071907df46fd48a28be8c272e4a591c45b583 │ │ │ ├── 53073a134f5a61d7a679679d43efb8b233d4c72a │ │ │ ├── 53466d94eb4598646dbe0051a8fe99d16fc0a1b7 │ │ │ ├── 5375cdb60501a7b4d522805d484d32ea8a0bc605 │ │ │ ├── 53d3a3d0e9c50b3050f17f9cb74e345f8c6400e1 │ │ │ ├── 53d62bdf219e25a761df9b63432bf8d4fc3bd863 │ │ │ ├── 5415a091331ebed292dcd9702ff69a2e69b66a25 │ │ │ ├── 5426d98b045535f77331a9d85c16b0bdbc17f8ca │ │ │ ├── 54cf68c15bdebfe40159ba5763dfdda81edd251b │ │ │ ├── 54f4ae621083eb8b6a3087f2af42f88cac2ad374 │ │ │ ├── 55883dc0adee8ecbcd9dc24ce375d29dac6ce627 │ │ │ ├── 558d63fe92a4428bb6c9f32db1485ed11b073519 │ │ │ ├── 56869e5a231807e4022a8ae6cc7ba14993db0f44 │ │ │ ├── 569d0c48f9d262880d5b95da7b6b23daa2afbfa2 │ │ │ ├── 57dafe28ebeccc5bb579bdd54241a1b61f57e5f5 │ │ │ ├── 57ea410ad0345f1904538474e1d7dd7a0fb4e091 │ │ │ ├── 587b8174d4d7d8e31be66cc4a7e8eb013ecd4245 │ │ │ ├── 587f611ada3891bdc785225482ef028ae33e24c3 │ │ │ ├── 589a43486e0cf9e2e0ff11e6f7ce87b34f9f27bc │ │ │ ├── 58b54f74ff969b3e057463f891630af172b4a10b │ │ │ ├── 58b83a866a77a931c5eb7053f63de82fd3fb61a7 │ │ │ ├── 58e0a5bf832892fac5ffc0f3334dfbcc06eca4b4 │ │ │ ├── 5998d82c5418f6f660e892c550dcc601ce9fac37 │ │ │ ├── 59ff80500d58d3e303c03dc43d9f306922772365 │ │ │ ├── 5a12eee2b9f9502a30390691b88bc8137027fda9 │ │ │ ├── 5a9ff1dc054624e7d09cf81bd742b003638307fb │ │ │ ├── 5aa45433beed76b16f367fe69a5f0f722e9785ff │ │ │ ├── 5ac4b2b244491406bd3655099345985ca8e882ac │ │ │ ├── 5af493159a44e1796748cf397df1478ed0ed0b29 │ │ │ ├── 5af6c73c6a666c0d483ed0c74f0469acbfb57de3 │ │ │ ├── 5b66381b33df8b40225b744811b14da750131358 │ │ │ ├── 5b8d6b10bb019f9074adacac424d4cdf119ea81f │ │ │ ├── 5b8dafc2c1ef3eee0b986e4878f07d75e7b9ea9b │ │ │ ├── 5ba97cb903e171f524213e9eaa3b99d8050aed6f │ │ │ ├── 5c069de850180f93424e0a1e042649c6df18c042 │ │ │ ├── 5c15da62f470cd4b68626dbce271401b14e06d99 │ │ │ ├── 5c3c807162f9afbae9c6f1da84797a73d8d06d5e │ │ │ ├── 5cba5d41bbd2f81c75f18d9fc07a5ef191611a42 │ │ │ ├── 5ce2e29362211720be077d2a3000ca7ca750680d │ │ │ ├── 5d0b443c8370cea3078189d16d1a13b048c58802 │ │ │ ├── 5d238b4ae6a4bf7910461b876224632e72a4ada3 │ │ │ ├── 5d36126428e23303fbaae444176bc86a7aae39ba │ │ │ ├── 5df9b5633e8ea2c33bb86c4eb4c2c39bed290561 │ │ │ ├── 5e1581cd1802a2be547215d39fd41064c2353751 │ │ │ ├── 5e223a7e12ba9de5241217b12fc7a2337c5a3dd5 │ │ │ ├── 5e24b6c6b79c2ab8f25c6c859034fdd445dd7300 │ │ │ ├── 5e5492a0c59fc9e931bdf383588a9702fa33e787 │ │ │ ├── 5ec6a48292a4bfdf4629df76f04519ad9481e6b5 │ │ │ ├── 5ed88ff1226785b218e011f86a80d946efb1fcbb │ │ │ ├── 5edabd7b124ae9247a86cc2a575af230f7310eeb │ │ │ ├── 5f02c522352036e23c4d3cb5670059a2ec71631a │ │ │ ├── 5f730951e6705815ce286be0df3e3f1d0840774f │ │ │ ├── 5fb5c7e0da589ff9b8be617e9dd3096c4fa355de │ │ │ ├── 5fd509c114de04a7c4653e27f23e58d6879df4a6 │ │ │ ├── 5fd6235e1c4bbe21cb01b98f9eeed7d3f187e0c9 │ │ │ ├── 5ffd563637a481c3ca4ad3b41b96d162791dacdd │ │ │ ├── 5ffdc5e0869db2cba5ceb4f2a650f878c424b849 │ │ │ ├── 6032eb0e89bd5df5c76ebac4db7a2b1a7017d75e │ │ │ ├── 6035e522da2f771dbdaf1027b132429f0b41f0de │ │ │ ├── 60a8dc8e760d73631d2e3dd8157d1843dcf5b0f3 │ │ │ ├── 60bdfc1a3fe5a702fd1a893979b6ddbce697c445 │ │ │ ├── 60f8bc13d6c51f56b1d68cdb2bf5f4b979e5a2c3 │ │ │ ├── 6194592b017b4e3b74e99b9c6553822f574dd48e │ │ │ ├── 619bcbfc1038fee4b886a6a0b05736d007017d19 │ │ │ ├── 61a850273fae4d59682e39e42beccbce43c7be10 │ │ │ ├── 61cfa0eadb36ea1c25406fe8a7f3c8f86f10ee18 │ │ │ ├── 61ea73fafc5f4e0ccf20f696dab295d0a2c577d2 │ │ │ ├── 622bbdf718100bb8441870b5d47d18b5e2d7d13f │ │ │ ├── 623afe42366185aab89337ff93175aae5aed6113 │ │ │ ├── 6255a6d0a8e77c6c400759049491071b5fbd2676 │ │ │ ├── 6325fe303ffc791cb45c3573a6f9d8e9f917892b │ │ │ ├── 636ffd1dbb090a5c1299076fb26d3bf62d1db478 │ │ │ ├── 63b500588082f55b10d66e0ca23261deadd1b8a8 │ │ │ ├── 64677a245c93e2a13bdc068f1a0c7e306c2a8579 │ │ │ ├── 6477b511d28dde2c6f4cc2123a5a270780b0828d │ │ │ ├── 64c32f813112d78fc55361f9724cfc0e3d9c6abd │ │ │ ├── 6513e716a34d0793af1f99a4fbb0493059d94e0f │ │ │ ├── 6530c91d937a2b684e67f49245856f1930b31077 │ │ │ ├── 653bf2aa3a70e51e71379f03dcc0ec67a7614886 │ │ │ ├── 6592b98683f9d033655457c21dc61c2e6dd4a4b1 │ │ │ ├── 659653ade8e073d452f0bd55b981ec290c8e2bcb │ │ │ ├── 65f7578302ff20d291829caa653c5b9754f678b4 │ │ │ ├── 660fbb026a12537aff5db3034703b3ebb3563f33 │ │ │ ├── 66e0d83dd7510b7fe721a179ea0d621cd850164e │ │ │ ├── 66f66a3e792e523142053cf7deca0d2413148777 │ │ │ ├── 670efa740ec719c20e8d69a7bd0a80c0525c3c1c │ │ │ ├── 671ea4873d0c1fc06d34774e8f57932fbcbf675e │ │ │ ├── 673adcc7a9eaf0ecb7adae7783849381bab268f4 │ │ │ ├── 674382d665a2b68ef15d524ffef1ce6bf7e327b4 │ │ │ ├── 678b32a94a9a2226340ba9b92f2c8dcb5d4f2c59 │ │ │ ├── 682b7608595c9af42d6d78e3fa6c00241dd90146 │ │ │ ├── 685e9fa70436546fad8fdf719894a91098c8e5f9 │ │ │ ├── 6889cfa865abf53f7c550679dab3ee05d785e3c9 │ │ │ ├── 68e3b4d4699227c8e0dfea4044802eba9ae27dca │ │ │ ├── 6976a67903af605e9ea991f92128406f2010b917 │ │ │ ├── 6998792408c837e016d293c263dc8cb6ef27ffd7 │ │ │ ├── 69c717c6580af1a153e38687afdf637ec8023c4e │ │ │ ├── 69ea72a4105f91391256cb46ce48962273eb9c8c │ │ │ ├── 6a16bd0ad05b0868bff81981cc092bc9d19dff44 │ │ │ ├── 6a3325de19b7a40f7f7abef68978d55137cc8991 │ │ │ ├── 6a9eaabcd1e067a31f89f783cb1c81f5b202a71a │ │ │ ├── 6ab74ed21b093eb36bd3f4fe2fe4361794e017a0 │ │ │ ├── 6abb1feb3e036add47d3f8e5268f58db137cd26b │ │ │ ├── 6aeb35cbd9ada4e02567da70f6adb0b3b60cc21b │ │ │ ├── 6b0281e90f2db9930cb4426aaf2718441c2eedd9 │ │ │ ├── 6b073621c934c246f94d0e9caa95857dcd16b08d │ │ │ ├── 6b0c68ffe1f028cd754aaf43edf1eff5101bcdb0 │ │ │ ├── 6b704447dd1d5e96857ad6cacd04bb763753621a │ │ │ ├── 6b815d2aed0dfa75ccad50351b21e9de5c91b350 │ │ │ ├── 6b8853d4125ffd4ece3763ceb82db0541f6623e0 │ │ │ ├── 6bffa1fc1ff0e11ce9633b11ff56258a2d55bda8 │ │ │ ├── 6c12a697c78de4c4255a2892c474a3c99619e567 │ │ │ ├── 6c50cafc5241fb38ba3ce26627f03e1033b91dec │ │ │ ├── 6c852ebe64dfe2a1579a0f855606a7e7cb3303af │ │ │ ├── 6c9728a09de84c978436447d8ed484e67b69375f │ │ │ ├── 6cbe15c8559b118690ee5aefa4dce61bfb9a14e1 │ │ │ ├── 6ce27b7a09d8cd04ce837ad6d97e27fe66a4bca4 │ │ │ ├── 6cf3d70a419aeda1fa9e520bb25c7ed23e48be5d │ │ │ ├── 6d01dff409415c1f1299af3502f125eef9b71df5 │ │ │ ├── 6d6a100decadc8f3ff099558e7f57684f3e07f21 │ │ │ ├── 6d9417a3cfbff243811efdca5ce022b8ce18acdb │ │ │ ├── 6dbea6313ca80d1ee103ff3bc577219377be9866 │ │ │ ├── 6dfaed1c5bf0ba1e2a60bac3b6cb9a035c61b2bf │ │ │ ├── 6e183df611aa192d8ce4930d0dcfec97e11e5741 │ │ │ ├── 6e4eaefccd9dce80adf43fa57f976633a6cc0c78 │ │ │ ├── 6e7a88ac0d7a296dce566f2d3517c221813890ce │ │ │ ├── 6eceafb153191c50ccffc032f16d952d4e40ebe8 │ │ │ ├── 6f4831f9af43ff980187a16f37359cae8749483d │ │ │ ├── 6fa15229c52f686e06e3ac42f42f0a3a027c756b │ │ │ ├── 6fb41b3b6e0c14383377e5f9768e2af46e4e3f7e │ │ │ ├── 703765a4d04e954e8b0caa1a654445ecdab7ed02 │ │ │ ├── 7075a8870ae3f1494ad3fbab6efd8590e6257a11 │ │ │ ├── 7077507680e38881413b5b4a81e7353c3adab705 │ │ │ ├── 70b0043c4f84052989330496e91a397ef732d483 │ │ │ ├── 70b97117dbb19c5654fe51390efbdb8542e8b8b1 │ │ │ ├── 70d9ebd7ac182fa1066cc2279ded35e7041194cd │ │ │ ├── 70fc72316c88cb9cafef87038e7b98d08bf83758 │ │ │ ├── 710c10815c73dc045e301fae556eac57610fc149 │ │ │ ├── 714995fcd4ffb2f3def2df150ce8b2230e36b6f6 │ │ │ ├── 715f7f933fca8adbae58cc4cfe15e1cb47675a84 │ │ │ ├── 716af17d9586fa2c84cf42db0f4d24dd233362db │ │ │ ├── 71a848b61688dff9ccd687bc9ce039edb002fdf3 │ │ │ ├── 724bca74227e0a5bbdfe20f93a36abbb30ba2cf7 │ │ │ ├── 728f578a4e5e045d1ccf565e25aedabcbfd74b3b │ │ │ ├── 730be9b780a4b7e5871f770134bc7183c39e1bae │ │ │ ├── 7315c9a9680c447638af5c0d63195ccc9a439b7d │ │ │ ├── 7327280c68e10295302f604e9779a7ace81414fe │ │ │ ├── 73321a932de544a3a4c2a9e87d33e1cae65412b3 │ │ │ ├── 73580f85bf7308bd6efadfd6498fce9d3a0f9c27 │ │ │ ├── 735c2145d2deaf00965e524dd2196349fc7615bd │ │ │ ├── 738548e80b07beb5f8b3601b6879ac800d19da2d │ │ │ ├── 73a16fcf6f3f71a0b0b87e4f554340f10a13d30e │ │ │ ├── 7415ae328b220bb81d76b24c3604bf22f6175d71 │ │ │ ├── 745bedb79413d20844a8b0e96fbec51b4989c65d │ │ │ ├── 745d30830e3e6c17edd753a059a9dcd290b78a69 │ │ │ ├── 74b5080544ed96a89664c86f6e6330ebc156b72e │ │ │ ├── 74ffaf2fa72eb6e28900fdc429144e68466cfff1 │ │ │ ├── 750b53094be562c9d38f2fba3f635fc754d32c7c │ │ │ ├── 75f553a25cd6208c409ce7c34a970d89f3ea5f14 │ │ │ ├── 769e37f90e11abc6d36a38b1be4c4f47332561ad │ │ │ ├── 76cb57b30fa55b495e2863834ac58b4463926db5 │ │ │ ├── 76d14ea91168626a28ed808ab86d116969ee5579 │ │ │ ├── 7747f9334ec0bd4a91dcdb184b7a8950fcb9b163 │ │ │ ├── 776c637180eed203b3d5a263731ef30e07f248a3 │ │ │ ├── 77a725472e71adfdf045714a61bbcbd11e255229 │ │ │ ├── 77b9e1bf6bf36675ca29f41b14c47d395c1e46b8 │ │ │ ├── 77c04aedc7ad59d4dd03a50574e5d8e18cd205f3 │ │ │ ├── 77e7d5754062b8c298d687a90e9ca3db25e8e9c0 │ │ │ ├── 7816ef849ad6f71f34f9c694e687dfc34e164b04 │ │ │ ├── 789f9d4921a96854c74b03dacd229523952e24eb │ │ │ ├── 78e1929b24cd96e6b698f85424afa317c6be9d1d │ │ │ ├── 79248f8321054d822dd964cab4c5d9e232405988 │ │ │ ├── 794fe132e9a4c45775ebfa540a26bf3e95e57fea │ │ │ ├── 798445bc1d44da4a26b58af2968d25dc1bfdabc4 │ │ │ ├── 79a842dffa8abba107ac920f08082a4192261c4c │ │ │ ├── 79b4ed54ab4bb8a387d0aed32e7086bb98d9bee1 │ │ │ ├── 79c33f631ab651314945fb014eb5d4a91c9b79ed │ │ │ ├── 7a2b5f53a63da573767ea1bee7e3dabd9979e69f │ │ │ ├── 7a6dc26c4f34ac63a1896fcc6e92829f390ec17a │ │ │ ├── 7b6b2dfc9d13e14c097f5c9e633e3e8d75883b4b │ │ │ ├── 7b8b2cd9ae0808e9066f31355ffad7f3a1590676 │ │ │ ├── 7c46f1066e8f04d3186f79479aa101f7e77ad4ae │ │ │ ├── 7c7731e11bb5eb533aae41c6ce619050a5db6c9c │ │ │ ├── 7cf184f4c67ad58283ecb19349720b0cae756829 │ │ │ ├── 7d07a3ce905384f1a02153faf95061bd20fed4c0 │ │ │ ├── 7d1cce94759e7224ff7c62e52cd5c0f8383f86eb │ │ │ ├── 7d768686f00aee37577163440657b9bc8b4af3d5 │ │ │ ├── 7dc71d42077820436e4262f99d9d61a925825635 │ │ │ ├── 7dce1a4d2cdcd6ec24a2854bd3cf6a7b3e30fb00 │ │ │ ├── 7e0294c10869691cafa461c8c3d456ee6eff8d16 │ │ │ ├── 7e0ffedd21f1b825f54d92c5693949a65ba76cf2 │ │ │ ├── 7eaf8610cc5dd2f2b125e06d708649f68c614ed2 │ │ │ ├── 7eb92202da3c267bc6e293ec03e1354e11ed12dd │ │ │ ├── 7f1e1b61a15dc87297e39681d6b8d29201a1c576 │ │ │ ├── 7f36e364ecc1d45c5fa7224e8f0f211dbae8a65b │ │ │ ├── 7f707284d767bdd0b7cf172fd1caa7140a22edf7 │ │ │ ├── 7f9a957a9f54daa7d07b5a3923133b822de52969 │ │ │ ├── 7fe81dbefc9458636fa54624faf9b60a8a0e47d7 │ │ │ ├── 7ff4957e1341c870d117314edc23c6277eded944 │ │ │ ├── 801122b26cdb8156d49c69e9dc31a89c43bf2b17 │ │ │ ├── 80251fd28174a930a556ffa7c9605cb8c103c401 │ │ │ ├── 8078357c89a4b73daa4a47279f653069594e444e │ │ │ ├── 80792173dd0a8b41c8f480b47d0263bd116f98a6 │ │ │ ├── 808b005dca02288d15da9ab5832aa5ebbea57769 │ │ │ ├── 81729bb73314953b2e73d8b6019fa666c24ed85d │ │ │ ├── 818a038b030208a3fc21ef5f56006a6ca8612b29 │ │ │ ├── 81c21d85020b739976924eaae35fcecaa72d3de0 │ │ │ ├── 8247ef8e1c2a358bf28ea2dded2be9e22d608ac2 │ │ │ ├── 82a27f77da235ef81b4bcbdc280f48800c8e4d51 │ │ │ ├── 82d56cf4268b4a56d754f3367952a67affe8b2c5 │ │ │ ├── 83cb5c39d8007726a56ba32f9bd27c381248f740 │ │ │ ├── 845ac4b86ef308619c8f07d708f5d088637af518 │ │ │ ├── 846a70ef37c9eb7a15b941f44f97d05e478a58f6 │ │ │ ├── 848fcf4e8d3e73762493a47fc8b4f0048b5bdf31 │ │ │ ├── 8531700b71c562543bd59b43ad97f1b29f17b9ac │ │ │ ├── 858a92229701675a4313998a46b65420d2a0442b │ │ │ ├── 860e9ffc3ffb0c28085c0036f6fb3e8a16e9bef7 │ │ │ ├── 8646499170a605243417b2052b0dc2f0169a5092 │ │ │ ├── 871017ded52a93edf8cbd0c721235faa0b3698b9 │ │ │ ├── 8711badf1844adfdaac4ea3c8d268e617797514f │ │ │ ├── 871fafbafb7b83e4530add2a56ab2fa5c98e956e │ │ │ ├── 8768a53e1d4c182907306300f9ca90cfd8018383 │ │ │ ├── 88be9e7ac0b4667d80f25783b7cd8ff860050104 │ │ │ ├── 88d995ea8f120f497a9812a4c424472cf14de37e │ │ │ ├── 88ecf51c2f2fd51c4e80cdee745732dda4e853d8 │ │ │ ├── 88ef9c0ce17f42f58304519c7220d1c4874497e8 │ │ │ ├── 88fa28c86e37004eff702379366a79790a264c26 │ │ │ ├── 8926834c42fee62d025b964a2d9d0656cd0fbcf3 │ │ │ ├── 893cec21e14c2a3a31fd86f666106fba0584f1cd │ │ │ ├── 89578146c9e6f9bc32c2bc30b8468d11d818f37d │ │ │ ├── 8a49f494640cb8001c0a4302ff28d3fd64dfc684 │ │ │ ├── 8a4bf18b45a29efeeffaf8c420945d240b3bd933 │ │ │ ├── 8aae5bfc545ebf221b657fe2213e44a11091c675 │ │ │ ├── 8ab2ec83c1a57318709138c760ce78764e87d457 │ │ │ ├── 8acca8f6b6f553d2ef3856c22e6c9719ab332fc0 │ │ │ ├── 8ae41529a1cab4b67fd77c1f89e3633a35b4de17 │ │ │ ├── 8af417bcc6afb78f8f51088fa5ec00782c21b26c │ │ │ ├── 8b42ff9138d6a3c652ff0aaae08020ead4e4ffad │ │ │ ├── 8b73bce904784c6aabd849733f8f5e4545e21409 │ │ │ ├── 8c457b391748ce869e3ca1d14680a29a9a1dec7d │ │ │ ├── 8cad82cfe541767a5a5325e35fb777c353d60bfd │ │ │ ├── 8d6838570eebfba7389a58cf7a5e7eb0e78e288c │ │ │ ├── 8e3e6bc865b123db4db59167b331d8cb312a514e │ │ │ ├── 8e58dbc6f55df52a48fb86f2849478fa49409233 │ │ │ ├── 8efe14a1475978dc0f122607a8e841e451586410 │ │ │ ├── 8efe18d9978a21295476444e54638c3e21843b8c │ │ │ ├── 8f6e97070547a42ba76a246f2d80bd8edc22c248 │ │ │ ├── 90171e0e94743e0d854a7e73e91092f599a74996 │ │ │ ├── 90defd3531ca106fa23229e1d74c8f1e6e2c2ccc │ │ │ ├── 911dc1fd971127d2e507446ec750c5289eef89da │ │ │ ├── 911e2568d9ccecc7634e8556626a8cb0946e07dc │ │ │ ├── 913898af38a601fdb6f7acbc276c4c044f2a6037 │ │ │ ├── 915ea958fb1950dbf9dbb4caba5ca5cd2ca9c2ca │ │ │ ├── 9163eb9fdc76719b5c32b2d03f8bf5abfe1f27bd │ │ │ ├── 91df44a834f16ee62ea64fbe398d0c6ee3667d99 │ │ │ ├── 92919e169d8a41b411c028c446ae64ef5e81d5be │ │ │ ├── 93036d667a833e0451ae44dbb1f965c1d02b40d4 │ │ │ ├── 9340d9f87d36f69937c44083ffb23c725eb3cb70 │ │ │ ├── 9394479082d41438df0234499e6980fcd4fef992 │ │ │ ├── 94243dd744565959830f0f390587a8f8275095aa │ │ │ ├── 945ececfb1c68730de5910166cbef13ac054fbbc │ │ │ ├── 94ba2bad9960add40777e0dd556c7d8eb9b4a9f8 │ │ │ ├── 94bc913b55bce81ba6e6f491344b22be46d79664 │ │ │ ├── 94d052640fa123d8d92f592b4d8745c8c2c2e259 │ │ │ ├── 94e5699ebfebdb75dfa8d91893810ecde6d3b8e9 │ │ │ ├── 94ecb285d8cd8c0e43bf468acb6bd08d08407af6 │ │ │ ├── 94f13c48521eab30f174ad5a12056c78733b2148 │ │ │ ├── 951c2eb02c89e8c71fb3a177d0de35ff86209bee │ │ │ ├── 95bc3b918b4e72fa6dbefa3fefc01de9c85da000 │ │ │ ├── 95bec684c8baf6cb1196a03116e9fc2eb0bc85df │ │ │ ├── 95cb0bfd2977c761298d9624e4b4d4c72a39974a │ │ │ ├── 95d6163db91feb13f4cdced008f6ac1f1d1b0d4f │ │ │ ├── 9634e20224b0278bf95d9df919ea5964ce7552a4 │ │ │ ├── 96380950089507947213d8c6d2e8246ab00a6003 │ │ │ ├── 965421f70b39b6113a55a7de55e8ccba16d729d1 │ │ │ ├── 967ce70de5dc6e75ba3c4b637e0c109b8fbefddf │ │ │ ├── 96d71ac7a2b8482d1f3d1cfaca61eef35bf08bb6 │ │ │ ├── 96db7efaad3d6092a029e17d6299d1e38f03bbe7 │ │ │ ├── 96fa481014da7f1ff81e8d2346281eaa92833b5a │ │ │ ├── 983d260a5ca039b64b239411457d0a99e9cd3107 │ │ │ ├── 9861494b6b15ae24ab7f1bb8affc96df39b5083c │ │ │ ├── 987787ec9fbdff0644ad6d5da1c9aa1509dcfaa3 │ │ │ ├── 988c38594c6423a9f9c54ddd1c0bbbab21d12939 │ │ │ ├── 98c563b7601691892fc9832a0f248a288cb04959 │ │ │ ├── 98f7620e6543aa94f208c6e97c3815c7fd86f570 │ │ │ ├── 9904fd5702cd2c9b095511a6a0c9688bb6c6a993 │ │ │ ├── 9983296698d4e2736faf1c529e8d27f8071d7939 │ │ │ ├── 99cc698c6c23bd84ce3ba39e02f0140724bd0a56 │ │ │ ├── 9a56fc47311289c77cf6067700e5d826d249702f │ │ │ ├── 9a7c2365214b23849cd432503740af87c86dfe52 │ │ │ ├── 9a82b175cda8e16024b5e074e2c768776deeec46 │ │ │ ├── 9a865a6f505b21ab22db31503fea5f48964ce042 │ │ │ ├── 9aae7dae05593a8a1554bfa6f09cd45d1f632253 │ │ │ ├── 9ae3e9c2791139c11525444432277a40fae6132d │ │ │ ├── 9af20251e31f563588a4c4a674a397350b2191e3 │ │ │ ├── 9af9ec6a45ef367c4f2dcfb60ed5e50bda6b73fe │ │ │ ├── 9b136639dc7846e6eba553c02fa2fa588305f603 │ │ │ ├── 9b469eb035cb51bfcffa59c409d7b73bccb6ab56 │ │ │ ├── 9b4eb939e2fba6ce08c6bd6d9e2fb27e72ef9f4b │ │ │ ├── 9b5d4d9db18331570de6bf86b4ad34ee675ae166 │ │ │ ├── 9b5f00b22439b743090f7598a40a9d2d6c2717e8 │ │ │ ├── 9b9edf171341a9e0a3c27b4bfa12dd1985c13061 │ │ │ ├── 9ba792b9b27507df00aadf5520304a305272ea69 │ │ │ ├── 9be310eee2dd5cf068364f60ca82af4558cd3c7b │ │ │ ├── 9be634de724f9cb59484aab622aab17c8f029c78 │ │ │ ├── 9be957bde2156e846892371f1b1413bfe3a11153 │ │ │ ├── 9bef2f1cf3764fc3815cc87f33f2b36edabfcf03 │ │ │ ├── 9c8e945fbafdf7f552db32e1a4b77fba6bbba2c9 │ │ │ ├── 9ca833dc5a0b15a71f4871bca6e45460a6fc8942 │ │ │ ├── 9ce974ca7185dfb1644858eddb583f95e9da075e │ │ │ ├── 9d4660628fbb46b899f81787c1f6657e3f7cf379 │ │ │ ├── 9d623e86b2e2cf7bb473f26630d55e33a56b199a │ │ │ ├── 9decb51592ad4f6ac8d102683e6759d19c450c1d │ │ │ ├── 9e5175008751d08f361488c9927086b276b965fa │ │ │ ├── 9eb3f4c33ba34a1551dd307b8ab44872e1e55983 │ │ │ ├── 9f5727523e9f8f6ba5c79829cfc2c46dffcd88df │ │ │ ├── 9fa946d32d6dd0568dcfa3c883533062faf00458 │ │ │ ├── a0377c42434e96230b734b20fe1216c71597304a │ │ │ ├── a0f69bdd41a75644d4262f296cdd4252de49268c │ │ │ ├── a1382136c62b87a3fdf1e489c88591d27e2a588c │ │ │ ├── a22ea44accf25c74d072ed9773051e3903bbe6ba │ │ │ ├── a2a50be41d4f0558fa4ebf42eb0e9871049f9932 │ │ │ ├── a30e11632d4b1886989c7f4f69e6f19c46bf9c0e │ │ │ ├── a332984f6412988aa0d43dd36dbb78ba5a82934d │ │ │ ├── a37445e0910a8fa6625cffcb935b5042826146e7 │ │ │ ├── a3f294235fe5422005ae9bc3a0d1bffe12cfe353 │ │ │ ├── a43d1101d0ec91dd13e7f5b428a2d5798eee2080 │ │ │ ├── a445a84afc4b7307891a68be4a16dfc7c1070d51 │ │ │ ├── a4c349dae79b8269e539a76e958a44967039dd28 │ │ │ ├── a4cd993c3192b955219b46db14b7b305f17fe7f7 │ │ │ ├── a4ea04a2ae797155d059aed1ce0c64bdfeb0d409 │ │ │ ├── a503abea9b52b941b10cfe0eb32edc170a5b9b98 │ │ │ ├── a5a61e4f8bee8a85103870be26de42bb376a79ef │ │ │ ├── a5be7752a0e4a50f56e5aa2368c44df6aece65e5 │ │ │ ├── a5e1657c54b694b81c9794bff32162a06b372b30 │ │ │ ├── a6087b0e353ad8f843fb24a70a55fe9b35b72c91 │ │ │ ├── a6178c525a0d5f1233c6fdb6103036d292bf056a │ │ │ ├── a6a15995f02334f1a2e8729d13a9b1ab940737ce │ │ │ ├── a6ba1a36c77df4e1518f6e6177b2cf1b7c5cdb58 │ │ │ ├── a6edaedbc811cad3ebf7d28d7a021faa08213584 │ │ │ ├── a71e93389c33f07be6d06ca54a6e6e2019c5e2ca │ │ │ ├── a72cb121e71a6cd8eb68018c04d7df7e992070c9 │ │ │ ├── a771e987294426159899c3c4caa2649d2762581a │ │ │ ├── a78b62806214767e4d1b701942cc89ba03a07bee │ │ │ ├── a795951776be50b4733f56269367b1ad1186daca │ │ │ ├── a802770bd5d6b4e350e5a332264849a6b339602c │ │ │ ├── a843ffa82d4d62ece19280bbdd36c6ee7eec323f │ │ │ ├── a89668781c51bae30fab3ee98fbbbcebb49fdf6c │ │ │ ├── a8a051f84e5caf52ec925c4f4ff36d0e9d18a63d │ │ │ ├── a8e04079e5222372698e5f2c224bfb381673e12d │ │ │ ├── a90e97abc6f2630b54123ff2f0f4b170cf6cdb65 │ │ │ ├── a91d32ef0fa29332ce9c0e4f8a0e3778520f0f80 │ │ │ ├── a9342d37b3336c28a89f7784d615c2c6e8ec96aa │ │ │ ├── a93fa356fc03cd2a652f5b5c097e007ce29cf3f0 │ │ │ ├── a9633cd66e712103ff3911756d3116d93e9ab574 │ │ │ ├── a9d3c9cd54b1a392b21ea14904d9a318f74636b7 │ │ │ ├── a9e7a834e8d462ad2ad2d4514c17eeb60f5ebe2c │ │ │ ├── aa9c42171cba2010f559ed5b8e939f09268d0e7c │ │ │ ├── aafe48a0a2158b70d6beef766c5082980cad280d │ │ │ ├── ab2a88fd5797362861c9012fa3fa8c9bd6448c10 │ │ │ ├── ab4808695e40195f169254a9457fddd7807db26c │ │ │ ├── ab5fafd027b915e9ec22f4188efcd7389176e051 │ │ │ ├── abe3bfb6b0e050673057f3b52d9979570b8cca6e │ │ │ ├── abede5d1dff1fc2b18a7407755cd83536f82dca8 │ │ │ ├── ac3478d69a3c81fa62e60f5c3696165a4e5e6ac4 │ │ │ ├── ac8c286f55b0e70bdde2bc1fe88d89f7761b3e68 │ │ │ ├── aca57618175388f574c341e8a91cdcae48249d9a │ │ │ ├── ad09b84dedf3adda1b1de05dc97f7146283f7457 │ │ │ ├── ad5308f67d0f51ddc1dae4d5aac34f229d7c06ed │ │ │ ├── ad921af94443eb1dceea47912c4c26fcc3c601f7 │ │ │ ├── adcea7b08c2d7e939b6f17504db70fd5fb2c079d │ │ │ ├── ae1a69c6360b8c0d190de8d0fb0866825ff7d5fa │ │ │ ├── ae24f0c5c7894a8b0642e92225eca01106ad3c01 │ │ │ ├── ae9c42b35173aa6d9d7da052de085df2b6f97def │ │ │ ├── af5ce1d542ec2d0ddc4a7c71bf1d3d0ee3d650bd │ │ │ ├── afaa4b7dc6162ac721fa4f2d5f5699b1e6a940e2 │ │ │ ├── afb0ee88d32780016f20409c776b642b5ea562dd │ │ │ ├── aff024fe4ab0fece4091de044c58c9ae4233383a │ │ │ ├── b0d6e2d172591b15ba9915db4865c72cae238827 │ │ │ ├── b0f3cf3b7e192c4b4d8dec6baf209a7751a616e0 │ │ │ ├── b0f666f3249be1408d8c2e731d3c085645a22e55 │ │ │ ├── b160cee187812df27f4a1142016acdbf3939cebf │ │ │ ├── b1727bf232efdcdfd11bc5eda84e1aefc0c692ce │ │ │ ├── b179ae57b81d5f918a8a31ce9bb447a1e9a80878 │ │ │ ├── b1af887551baefb05e65647cfd983a34e2bbce62 │ │ │ ├── b2135ac062b44668d7d08886226fd0fd56aa8a8a │ │ │ ├── b217c869ca42dd8cb2902e2db5c34ec3fc1f917f │ │ │ ├── b232437635e04345fd6d6481bce8ba826659d755 │ │ │ ├── b23a638874613125a90fd1b38c2ca544c2888dee │ │ │ ├── b245a5a802669525a759992af206058aaefcdd8b │ │ │ ├── b24e4ea1e1a844b74eebe2a3dc7c6767c6905996 │ │ │ ├── b2add99799e0047c7cc1aabdbf7a6db438fea252 │ │ │ ├── b2f2bd252d74e1af7269c8761f8b1125dc365a0a │ │ │ ├── b34798ce122757aa0db3f944704df05cb2fc232e │ │ │ ├── b34db2b72d63f33dbef80fb30e094cc0a91d6322 │ │ │ ├── b3566834bf5d8578fcd7b57623cd0e9fad3fb9f4 │ │ │ ├── b37e5d71841ed0da1291f08603b1678900fc1a44 │ │ │ ├── b3bcdb2861b40368d1cbc19d46b58cf2e2fa7212 │ │ │ ├── b3fb5bd379e175bf6ce41c119533b6836757002a │ │ │ ├── b40538e714218b8fdf6989b33d2dc87074085469 │ │ │ ├── b42ed0e2a129d397340db124e123e519ee2c367b │ │ │ ├── b4c5c18fbc1c3c72eaae399d0b72e5125e12790e │ │ │ ├── b4e26981c63724efa249486be776ca25783bbb18 │ │ │ ├── b509e5f98bc0b9c79e978ad8ac3bfb541f31bf7a │ │ │ ├── b51c27e3b298394ecced27d36b1089e682bb6d2f │ │ │ ├── b522c13d014ad3594dee8611b06111967a8988a4 │ │ │ ├── b54664965911c6fe91e18cd01b68a75c8183b530 │ │ │ ├── b55bbdec977b9240b210509e5a7ced90c662f15b │ │ │ ├── b5a2bfe52eba2b9298f363eecf5a61b75bf88189 │ │ │ ├── b5dbcf8deef36be6d22ed04351e82923cb1a644c │ │ │ ├── b6498471a279e2fb5804045c52e7c58925e45b60 │ │ │ ├── b6e7701cae42a34d01d674004b80a7abf4cefe27 │ │ │ ├── b7103ca278a75cad8f7d065acda0c2e80da0b7dc │ │ │ ├── b721f555e45d1b81b254031a7312fe40bf50fac9 │ │ │ ├── b7244326405a9b961b553a4910425154e6140990 │ │ │ ├── b76280787a3acbe25139022cc3f29b2d6952516c │ │ │ ├── b7a9b323073ccaffd02cf09f031fdbab128fd772 │ │ │ ├── b7b3e7ffe98be57c67c16657015c98e4512dad86 │ │ │ ├── b7b4e06ffc64fbb2c8974fd39541a1ef1b7493b4 │ │ │ ├── b7f371902c06ae5cef0b1f08c8f50fd753ccc1b7 │ │ │ ├── b858cb282617fb0956d960215c8e84d1ccf909c6 │ │ │ ├── b8a185e28a598a75271c5060e2c2dd2084259d40 │ │ │ ├── b8b2d8a44d14f9bb43a8127db9705876a44a4bd5 │ │ │ ├── b8cd2003a6b041ff4334fa6adbdfe0b2d7c6a64c │ │ │ ├── b8d75431cd752808b1f0d7db3d2a4154ad88b225 │ │ │ ├── ba53b44ecd4c26c9fed9f39b2f251c0f3a4dd334 │ │ │ ├── ba6e31c9e02c1bf15255adcbfecb1ed9fb6c0604 │ │ │ ├── bac33b1db9d92d1966155e77c3e6a5685f621000 │ │ │ ├── bb1321ba3a0bc52877446171426fa56195dfdeda │ │ │ ├── bb3efb394040aba3ba885f3cc39310259a66874c │ │ │ ├── bb9e7fbe541104d0e48df7b135d4d1029fb970d4 │ │ │ ├── bc0ed4c151e55956ebbb5fe1a800da2c72208556 │ │ │ ├── bc350bf2e238c6991f2d731c94cf782399d83092 │ │ │ ├── bc3bcf931b2009aead75643f490d7203e59af675 │ │ │ ├── bcd4253b31b369deda0686fdf4b9c3ac1095296f │ │ │ ├── bd01b2b8ecf539ba80150cfcb005a78bce318b37 │ │ │ ├── bd17c794150dfdf02e8195eb7f8179bb5fc676f6 │ │ │ ├── bd3033846a4fda4e30bc60c2a15ee548b8d773bf │ │ │ ├── bd36a0a53fbca85587899bbe52df6d8e63a6c9f1 │ │ │ ├── bd5a2e127b0b32f1ec036c687163a9b1ce2f9147 │ │ │ ├── bd757161d9d2070c617ad6f04a9178b0a4766dd0 │ │ │ ├── be424a3a8ef7d7cfb302f20a91d257ecdd6d39a3 │ │ │ ├── be673e8a56eaa9d8c1d35064866701c11ef8e089 │ │ │ ├── be83d6506a299551f382e4c68035411335e81165 │ │ │ ├── beb6a28c0258fe5aec210824f5a67240cc7d626e │ │ │ ├── bf0394c4f2d4da81d778408bdeb3c325d5df0878 │ │ │ ├── bf1ef6e761cf22271db7060f2ea056fc190ee7ec │ │ │ ├── bf4d13c7ee2607d3cefa3671e90ae41914a3817e │ │ │ ├── bfb4ffdd3fd207aabecf313bdbacfdd031ad81db │ │ │ ├── bfcfc9362b3254672541754db83757288ec820d9 │ │ │ ├── bfe00f0ac1515cbb892081336ef1b93a54cf6a4f │ │ │ ├── bff4ac2c64b5835a393084078283af506d50bf12 │ │ │ ├── c0854b0fed89e07787eec1b33590e18d7692ee40 │ │ │ ├── c09177510e0229346a56631706d7377c73e12bcb │ │ │ ├── c104dd3362571a31811694413dc6bb64ecf6bb72 │ │ │ ├── c1110ee9726a66d35985ecfaeea540472485ac27 │ │ │ ├── c17279286591601085dc2598f9d6de6150844bb8 │ │ │ ├── c1f7c22dcf16e82343cb4d6abb51946262a541f1 │ │ │ ├── c22dc45865f46b79cc65ee052943f0faf4dd14ee │ │ │ ├── c25809109fd49997fe000c39a752a5138041a820 │ │ │ ├── c2b7df6201fdd3362399091f0a29550df3505b6a │ │ │ ├── c2b832af7af8f5bea8c74e0be7d548b5e740d440 │ │ │ ├── c2c97f6dfd59e292061f12f0da4ac310ffd259c2 │ │ │ ├── c2f0bf3ee5d37212c10eb8a3abb0c72709562b28 │ │ │ ├── c2f861adbed86a1592f1c886b6bd387ae5450282 │ │ │ ├── c3168bb2545284441fc1f4ae99e405fe7b428f8f │ │ │ ├── c3530edba5d047021144005759bb79c00f4314b9 │ │ │ ├── c36798242bd7e4dc9048538850ffeeea77567e31 │ │ │ ├── c3a1b55c533a1c8fb606d74ef42b2a8544dca360 │ │ │ ├── c3cfe617accbde6ab0714d17994b41e796ac73a9 │ │ │ ├── c3f2329de2a6bd99836a038a4e25947e861b00d7 │ │ │ ├── c4addb5be9525b184e73f17ee52ad8f8f8009501 │ │ │ ├── c4b009b1bff54bd3285fd4a3b467baf4e4c583d2 │ │ │ ├── c4c9334633793e65d1f05d6573567f49aad390cf │ │ │ ├── c4f87a6290aee1acfc1f26083974ce94621fca64 │ │ │ ├── c5104adc316c26e59548768f3ff370d8353d2414 │ │ │ ├── c516dab2945328e0902a93f10b81cd32156ef03b │ │ │ ├── c5a584811f77f467a5762a9653a5c1cb16a6d36f │ │ │ ├── c5b526d5efae9388ad0f3fc69b87d0002da18de7 │ │ │ ├── c6206ac8170abb5c4ae278808a1d6403d4d9027b │ │ │ ├── c649a50d41b5f58dd322ca4ce0c9bc3378a87d69 │ │ │ ├── c67895c92574c3f47ad3c9749c2c6187ae1a2103 │ │ │ ├── c716b33612cad4cc09f77051fcc6f5719e92bc20 │ │ │ ├── c71dcd1f3f3a34bd104e853a10a7bd3e9f6b4895 │ │ │ ├── c7255dc48b42d44f6c0676d6009051b7e1aa885b │ │ │ ├── c728bf4435205fb479287b019daefbbebbe60c14 │ │ │ ├── c736f23cbb42a26ce6bb61bdc41b1d6b289c9141 │ │ │ ├── c78bfd7a1e5f37cf8180b3eae94b11330d70e663 │ │ │ ├── c7ba5074bc6de556600cbdb4da502cfc3a15c6fb │ │ │ ├── c7c475f1a602244c22949affaf34ebce40af7db8 │ │ │ ├── c80419e10f1cc629620314b9cb7741d82c03253c │ │ │ ├── c82c074e1061a2c09b35eb6273fc464ac7da4055 │ │ │ ├── c85488a14efb3cd93838a2136d398912793fc8b5 │ │ │ ├── c8634b277545ab85d1f39e99d34dcb2173c078a0 │ │ │ ├── c88b6a583c25a4dde4aaa687118fa6068f1626c4 │ │ │ ├── c88f6e4eb092d89c3aca7d541852f6424dcf4bb7 │ │ │ ├── c969f051a790397977fea3d97a71c6c34ddecb94 │ │ │ ├── c98eaa8f7a14f9882e6211d40cf37c5c10010fb9 │ │ │ ├── c99e9810663faa10213fa78a26b15c43282c4303 │ │ │ ├── c99f816b9bf94aaa3aee4cc1b80bc73dfe0baa27 │ │ │ ├── c9a49192deea22092da64946d18bed149b2a29fa │ │ │ ├── c9c9699668662ac0d4c21cafd4b2e86f4b3db945 │ │ │ ├── c9ebdce65cff341acc5206d97c899b8198fef38b │ │ │ ├── ca73ab65568cd125c2d27a22bbd9e863c10b675d │ │ │ ├── ca9afb0a362173525e7d4e8f87035bd1754ea13e │ │ │ ├── cad92d0c2345b092555410714d7bcbbfa58aa2c1 │ │ │ ├── caee88cd2cc239b54cd1511c6fdd946362b01bd0 │ │ │ ├── cb17bd1fc11b47f644bee4eb87716c30813ec66a │ │ │ ├── cb3066f6bf547d30ae6f3fd35a35c0d3d8308950 │ │ │ ├── cb7046b25744a4e261cf7a18f15acd3417230a29 │ │ │ ├── cb8c1d5d06de24aedecb846f45f4f01a45857cb7 │ │ │ ├── cb97c217a45c78cf38f3d2833b2d3e941fb1d4ab │ │ │ ├── cbd2fdaa2768045f13367930cdfaac9058bd16fa │ │ │ ├── cc4cb0939776bc975e19fd00013d0fec48516c08 │ │ │ ├── cc998f3e5d8a6fd014d81544cb7b6b3cf555456e │ │ │ ├── cd0bff0bac8e5587fe5835e6f6b8831671bb8cb0 │ │ │ ├── cd2f50e8b8e1c215e1740271ba5ca1d83534da93 │ │ │ ├── cd988c4f5fc873f9edf30b81f93482a17406cdd6 │ │ │ ├── cdbebb288783b7afbfea18f41d74282a5a760baa │ │ │ ├── cddcc38a1fe0b0ff2463e2871e89fb4cde5f5097 │ │ │ ├── ce547c1571410a433155945e3c8efd6608a8cd55 │ │ │ ├── ce9e270e2cb131c45c7559209d777f38556b3629 │ │ │ ├── ceb2c8152bc522864414431b2226686ca4a9e7f9 │ │ │ ├── cef5ad6766ef846402c076504a171f41f6a186e9 │ │ │ ├── cf7e5390f4bb57d186e18c533273c233d6e3b2f6 │ │ │ ├── d009f102bb88c0a6d200f80bfa098ed937b4a58f │ │ │ ├── d03654c8c9019db42669b364d17516e00dc5db5b │ │ │ ├── d039ed793c277d0378f3f27af4df0ed2dc26c560 │ │ │ ├── d0539bb3ea6bca668ee552870977d250e33b96b6 │ │ │ ├── d05dc6ccf0263f230068dcff5cfa76e18b400493 │ │ │ ├── d09396127da6714e99f1f18d881939e19749c627 │ │ │ ├── d125981fe853357e70d8637dc1d611e8f9a7ed3e │ │ │ ├── d12c7ab5d38b22f69fd8a449c659a9aaa6afe20c │ │ │ ├── d20af86f9fae125b48df9a8ec037f3bdef2d9db6 │ │ │ ├── d27a61090e50ab4e8843cbbf0c10620d5faed18f │ │ │ ├── d2cd83b299a8b86293335172c5379b825b07c9fc │ │ │ ├── d317b75d9ce316cdc1cdd4b6b860ff50bc8ce592 │ │ │ ├── d3a3111d45c40a13667a5112f7842cfef03fb8a0 │ │ │ ├── d4652f0fcff76ac592075adefbb61358b1774719 │ │ │ ├── d4a60bbac8c212e95a413df14e7d71700ea83cde │ │ │ ├── d50eceb1c4d77914ed739e9bb671ab60824872c4 │ │ │ ├── d50f33a8354868a2dcee3333387a2f07c1c38574 │ │ │ ├── d57f2f5f73a1cbf6e2c895af929788af9811f682 │ │ │ ├── d5a5c50a846afb5b032042217a9e277e4823ae17 │ │ │ ├── d62f1806de56aed27a3782f7c390ba2937b34a34 │ │ │ ├── d66df0b21dcae3406f12493a0d6e0c7b96d0e042 │ │ │ ├── d6b1905cf07f1591fa0788185c36fd76e0d620b0 │ │ │ ├── d6bc653b9b6c18bc6f7a7a53add6d0900123f9d3 │ │ │ ├── d6fa25abac65705b15b8087b8afeb09e4c603f8a │ │ │ ├── d6fa2dfb1d64dc99d4fcf361587c8663f7f470b2 │ │ │ ├── d737cc854c045af9b97a7e22fa50775561e15c06 │ │ │ ├── d77c1e70c3b958e8d27cdbd80bbf67bbfc5dbdb6 │ │ │ ├── d77f60034ef15b1741a3350ee378c5dbe9cbbba7 │ │ │ ├── d7b50f6ff23e61d761bc173c67f7a2cf7036c0fa │ │ │ ├── d7bf4a9a873fceafe0554577e8c80be7d7f4fa33 │ │ │ ├── d7d68e3e67962c53fb46d8f7833c79ce341b0b72 │ │ │ ├── d8283c7e37191040498984d3a5b266182c6805e6 │ │ │ ├── d83a92a606057f0ad9c6f21e76db1681fdbca83f │ │ │ ├── d882623deb24ba35cb7b2dc30c4aedbc09ea1221 │ │ │ ├── d8a8cbf71739ccc54125b7894f184828ad1da4fa │ │ │ ├── d8bd56f67b94695c5f9c0428bf38dfa145008475 │ │ │ ├── d8d3087e63e3adc279793a2775ba47f91b597150 │ │ │ ├── d8df6bb79f54944774f1ca9f1de9736c25e8d020 │ │ │ ├── d8ef76e6e84621f1bc9a9639c1954f96d05d1de9 │ │ │ ├── d960cf9c25801a7f1d2221c0e7ac1f8ae3081a93 │ │ │ ├── d96a166471a5306632b934fb7d1717784a7fa07f │ │ │ ├── d998b182c9f43337706ec5c9f97615ca67269968 │ │ │ ├── da231eaebaa412b5bdcf552bb72bedbce1f08e48 │ │ │ ├── da4b9237bacccdf19c0760cab7aec4a8359010b0 │ │ │ ├── da646d13e4fcf0b6ad77d8ac50e72feebe8225a9 │ │ │ ├── da863b276cb74ba89d02cf2643b80a4eb4d8da9b │ │ │ ├── db54ec243fb50bd7e8cc9c2e29c4af3e57574be2 │ │ │ ├── db7949e914d804216f190259bae93aff4315b148 │ │ │ ├── dbf95825e0d69c4229851fcbf75bf65cd7e43f25 │ │ │ ├── dc779ad5dce0086c2fb7c4a780c8fcc3b17c0299 │ │ │ ├── dc7a5e00961ec0fe72c384c139efc500f58e58ae │ │ │ ├── dcd80dfd1c3a2f7c81b943692a5529a34716c7bb │ │ │ ├── dcdb8e76157dbc488dcfb7413c3b74aa10b19130 │ │ │ ├── dcf5bf6c63ba8e32483f75660b3a6a0f5d764483 │ │ │ ├── dd32c244ea620a434ab9c103e382b253b83c6bf2 │ │ │ ├── dd437f1f7722b78753f592be75a47806c741726d │ │ │ ├── dd7ce85cf8606ab2766b5a75b2a437fc535e4bff │ │ │ ├── ddabab7c7cbd063342f2f1729ced79eadfe3da13 │ │ │ ├── ddaf8cbab5f20f759bf16f6c9d919d74cf1011eb │ │ │ ├── de4677c78c06d5e6dd45891e7f64eab9f9cbe9dd │ │ │ ├── de774929a38ab4d6da648144409b3eba5c05f14d │ │ │ ├── dece53d8ad788926c648a24988910fb72c3fac0d │ │ │ ├── def5720e6378d275f66d35f2c3435ac975199339 │ │ │ ├── df024435cd642539d6c1478c585cdf3b3fbb0938 │ │ │ ├── df1149c3e7f609ec27ca8ab4e3042352aa1a028a │ │ │ ├── df1eef64e5f2c568a6c0b20236ddb22053607fac │ │ │ ├── df5c6ecf528e94dd76d02c7b55de3bc9327a2ee6 │ │ │ ├── df77f4f8c395eea8b3eb53549fb9a51e4329eb68 │ │ │ ├── dff78747e8e0e915068abee959dcc3f6b6bbc37b │ │ │ ├── e00fcc422b44f5796d2665d4a3c6e8e09d4bf9e7 │ │ │ ├── e029b52234a3a277e366cf535b8ad02b3daed65d │ │ │ ├── e0426b63457293690e598c5ffd0cdeecb89bf4f7 │ │ │ ├── e094f8bc8989a22ce5c0e83d006e53f49c1061bb │ │ │ ├── e0a491d4d08319017ad03b7a3534fccf3d48d1db │ │ │ ├── e0c996c288be66c5ec6556b93f626f48915c0c00 │ │ │ ├── e0eb473d04e391632367c82eae68e3fc03b27fd6 │ │ │ ├── e1522f5fc75291d4461162a84e63643e86848e1e │ │ │ ├── e1d92bdd3de51e2583b7ceac106b19e8d7f4f17c │ │ │ ├── e1da415635e72bcca404f248ee108f27b837fa1d │ │ │ ├── e2604c773cabbf5a61f83f9ed8de88d0374d4212 │ │ │ ├── e2eb748e33e74dcfeb890b0ad810294886cc7c0e │ │ │ ├── e2f2726b641739cb2c3f5a6d1d73f74daf52f1f8 │ │ │ ├── e3766c6bc52e4f14adfac9d56bd9eb54158b1982 │ │ │ ├── e39ad0f58b31b442b28ea85e597001394e76eaea │ │ │ ├── e3a2f15dc1f7d7756fda6c6d50942d1e4b8561c4 │ │ │ ├── e3d60af14759bc12077995a0dbc74ea3aa35a28a │ │ │ ├── e3fb1a87e9bb52527f20da6d73e5d0d9335b15f8 │ │ │ ├── e42afa8385099b74e7b5caf69400399f980544e2 │ │ │ ├── e48855e3e722f360d49a4d99e3ac2c25679f168f │ │ │ ├── e5486aa467c80e54494e23136b3751aa188d8acc │ │ │ ├── e55f25d5e403b3f9b7be4ea2365e028e68956c21 │ │ │ ├── e56023775b73945f8b1c0925433a38c5a5f26426 │ │ │ ├── e573c1e57431b2d466c8c41408eb764892321bdd │ │ │ ├── e59289de2f9d98110c8d9debab97a56ca2835e2c │ │ │ ├── e63a119492d56193db5b359a99819f46cfd3164f │ │ │ ├── e7ced98574acccad2a1c34b2e79a9c660b28f97d │ │ │ ├── e7d67b5165dc458d64e26abad39ce929c909d310 │ │ │ ├── e7da895e32ab3444590465cdc12ac7b5b6b1bb8b │ │ │ ├── e820d69d9f23d9d9e723757cbaf89d949ee07350 │ │ │ ├── e85eaeaded499559e885c61cc8e06f190f6ae1a9 │ │ │ ├── e85f3f6aba1599331143459f2a48ecfcff491661 │ │ │ ├── e94bfa2f1bbdf28b4018f3403f8e1cac36fd0111 │ │ │ ├── ea17d05f7b60de81c533371c1fe3e24f23d32d21 │ │ │ ├── ea2e49089fabc8c14e8585611ed5591b0667482c │ │ │ ├── ea509291ed632a0ff1e005c11ff7a5a7c8c7c782 │ │ │ ├── ea602310ae83e245a51971758a86e97f203d6095 │ │ │ ├── ea856127a75fa77479bf1c24bb44578fa5a29c52 │ │ │ ├── eada2adf04ebb959f115ee2fd57ed97fee76ca14 │ │ │ ├── eb415454f6d1723ef0bcc3f3008ac2aab6311b32 │ │ │ ├── eb4655bd9ed1636ef5f1147378cf5a69ba31b6d5 │ │ │ ├── eb487de4e5b68bc61fa54da5140481e7a07f11c8 │ │ │ ├── ebc5a9947efd1a23d1adb89b58dd6c26064319f4 │ │ │ ├── ebda4954151e1f3f38dee803bda4dd47184d87d0 │ │ │ ├── ebea8324a22b6d8d5c03f8a291139be5eebbd18c │ │ │ ├── ec274089f1bf05edb5e735b1828de9d2c4827107 │ │ │ ├── ec7cf417c50d03a3f5bcc5ab721386dc403d1a47 │ │ │ ├── ecb28e8af825d6632880188c0ea19e15569a63f9 │ │ │ ├── ecc3dfce4f52d78913077520b013cada378698a1 │ │ │ ├── ed1af2892651b5845178e31796f12d004e84a392 │ │ │ ├── ed48a22956d28029b6cb51a2053532ae030f0dde │ │ │ ├── edacb189fcb0a6cdacd6eb6b467a68cedfdc9b1c │ │ │ ├── ede92ddf95577dffa3709639d1359ea771eb6efd │ │ │ ├── ee1db5311bc9c881e92f8d78316f06e491190e0f │ │ │ ├── ee292cb81ed36de2ac8c3c4e07f3e61f881ea9e7 │ │ │ ├── eec98a55da0559c955246d29de0e4b0c2fb64502 │ │ │ ├── eef006bdc01564989b914c2d32f878475ed09c3d │ │ │ ├── ef69c537879f853ef2efb7f9c4a1eaf06a047977 │ │ │ ├── eff8ada279ecd85e7c78cbfbf89386c69f4698b3 │ │ │ ├── effad3fc71e37d44a33f502b9f5ef6e8e9241632 │ │ │ ├── f003743c11e5edadc31b032ba54c506de0af4f4f │ │ │ ├── f04ef961a2d4400b54ddb12b20e0f0a28b9db46f │ │ │ ├── f070cbad551ef8134422dead3084049c24c2ef21 │ │ │ ├── f0987dcad609b3268cf07feb297be77040ac041e │ │ │ ├── f0d56c773f1eb509f9bea04662f40f5e4791ffef │ │ │ ├── f0e15617870fed62e4a2e34533d3cde0255ac72f │ │ │ ├── f101048f0087796cb1c5225be9707d0cbf05dc68 │ │ │ ├── f121c7c81b8a962b8d31c9c8710c0371cf0a6452 │ │ │ ├── f1a4e22d83ec5d78ed16490265d6c2c9dcecf37a │ │ │ ├── f2ad7ed0113f604c1d02c96f47f53390bfc353de │ │ │ ├── f3000cd7eaf4b8b96d266fa83852e3c538be29b6 │ │ │ ├── f3a3e91ead339309af864f4fe0a884db456d42ba │ │ │ ├── f3a446dc2603faa944de1cf8a73a575cc6ae8c80 │ │ │ ├── f42c7ca0281dc6a300c0663fb90fc4e77d22d653 │ │ │ ├── f44fe052b6bae5efcb693c23071b0f6d3a4e1955 │ │ │ ├── f463d1512a21608f3dd67f3ad5b3f1bb19bd0d69 │ │ │ ├── f496931d5a661cd72f326ef49f7c6d7e3112c4f2 │ │ │ ├── f50cf928272863ab7100c2f911ff49f1943c3c30 │ │ │ ├── f5131c62ec188dbc950017f19dace4fcc50532d6 │ │ │ ├── f5fbe5dbe8f8eeef9b8c9a0eca89016917767b62 │ │ │ ├── f6a93cdf876262ecb6428a420c3e19319b941fb4 │ │ │ ├── f6cf2f5993beffa7bfcbd39f2666b65d2762bbfd │ │ │ ├── f770e04dfd1dbc59d54a991c908eb72fd349a6be │ │ │ ├── f781c77433ebecf59e21e4a9deb7de7733be2ad7 │ │ │ ├── f7a838aaf270be964543bb08459c19d9f31c6d49 │ │ │ ├── f7a8c5a504a4bccc0d1ae94fb7ec6e79b440446d │ │ │ ├── f7a9b8989f7848e68a0a464c1371636413ea9529 │ │ │ ├── f7ee00669be35cad3d4587a45cafcffb7b3397dd │ │ │ ├── f8092499f0f6c4851946c310bdddb2a00f625ee1 │ │ │ ├── f876d9d46a17d9dce9434c6986d1b04d61d2e99c │ │ │ ├── f8ca2fde2281ab28f40091fb8083e9eef068e01c │ │ │ ├── f8fd548dba02bfd14d0b116065a89b02452c739e │ │ │ ├── f901dcc5a580568e8d48737605b954cc3c8b92a4 │ │ │ ├── f902b09c1517d1b3f72e066866ff47cecb071ee6 │ │ │ ├── f929f5ac24a9b9b9cbc93762a5a410987688306d │ │ │ ├── f94040b81ce80f186c266294f1c22494968126f6 │ │ │ ├── f980d42579c4d61abd613873c0f3cce2730b18e2 │ │ │ ├── f98cdedc6fbf42753dc16e4d5c8de1eb5b26218f │ │ │ ├── f9a883daacce0016f64692ff3f842eb6a1cf68f1 │ │ │ ├── f9e9bca7ab2ea7ce1bda9af86e0bb973e5958e78 │ │ │ ├── fa135ab282508a62cc872742ce992d3a32a91435 │ │ │ ├── fa17d64ffea22c48a2c3a9c099983b506fafeb95 │ │ │ ├── fa26a854b9137bb84181a27c9e7b371a5268fe12 │ │ │ ├── fa9da89bc6aee4decd1dabd8117e9e154a00ae54 │ │ │ ├── faf52007ad9aec2381851be60b2b1bbccc43780c │ │ │ ├── fb1de5fcfbb2519dded0b4507f916377a73d91a9 │ │ │ ├── fb9f5b5982e34dae5ce360bf15881e3df23f7575 │ │ │ ├── fbd95a967069a2577d9de54b0e0dba0c11c87aaf │ │ │ ├── fbe6182f7b1e2909527f077f714cfc2c340c4753 │ │ │ ├── fbf33f7014606514a8228e15fa2edd271a26e936 │ │ │ ├── fbf5cab304acb0fea69dafe91afb3c849741c319 │ │ │ ├── fc9534fb53110f5b85d0541c9e91b5868df234af │ │ │ ├── fcbf7e6853bea4a06bd87308d639ab6782502c4d │ │ │ ├── fcc24029e1b5a9619972852b4e0b1cf889ddc77d │ │ │ ├── fd04f77309b4c46d1eda62ecf8dc7d51ec95bb36 │ │ │ ├── fd62c7b111a1e1e3f526f7e91407d043af7abfa9 │ │ │ ├── fd835958194041f325074a5e1bbd063f44c75075 │ │ │ ├── fdeeb02ad36e89b018b71dea53e5faaee2081ca0 │ │ │ ├── fee2601ee02aecaebecb33750f63a5dc1fac1f66 │ │ │ ├── ff17ea90e2e3d2b61b28478ac71132a790b86929 │ │ │ ├── ff8f5cf1bd4e69edf4cda252a13889d38b069e85 │ │ │ ├── ffc48c4d125ddb5dc487c13a87e513ffaded1f30 │ │ │ └── fff98d030474bbffce74952c92b88132748aa726 │ │ │ ├── insert_erase │ │ │ ├── 02865f10b6f9045822d84318ce257b0cd55a2fa1 │ │ │ ├── 03381900027163f18bdf79ea1afe50590192117d │ │ │ ├── 0535e91ec9fae8b7a73a42b3d67c56b9efba338f │ │ │ ├── 05d24c42edc17e9c7a4836fbca6bd6c475709846 │ │ │ ├── 06e1a1e69b4ef20c94feed2393a23c3d4de716a7 │ │ │ ├── 07c67a4a08d3e7c4d38f1379f26550529b49b080 │ │ │ ├── 085a52bcae1dbaba7d71c944657de16cbfa93f86 │ │ │ ├── 0975c924d39150acb5c6c664fdabfb835f621069 │ │ │ ├── 0be97320e360e92aff3bea623aff7a71b437e982 │ │ │ ├── 0d43e4114ccf18f9e42d03760fdf885035e0ec7c │ │ │ ├── 0e30ccfd3a7db7ab01bcff12ec96c0492961719c │ │ │ ├── 0fc8204c128460ef4796b9689313fa5d42c3df3f │ │ │ ├── 115549312d3c5a45d105fdc21c71312b8abe26d0 │ │ │ ├── 12f112b439d386749865db19c0abdd25ffe946eb │ │ │ ├── 130521254981a92eee13cc66c0095b9b1f51670c │ │ │ ├── 136a68e1120bce4b76998646be3217d5fd944ce1 │ │ │ ├── 143613e6d23fc7940ed189f44dc846b267b3b490 │ │ │ ├── 144a5ccbf6f17986997def4b608341f78eaf5726 │ │ │ ├── 14aafbee4be9a971514572acf27c8c8edb16cd7f │ │ │ ├── 14dd186690d24168b27516def539345df2b81ea9 │ │ │ ├── 15aff8233d7da96f6bf9a7d8246d86af84dd6d1f │ │ │ ├── 15d84341815672ea605d1cb7d6a874455dd438b0 │ │ │ ├── 16123a3c3c4a4c91f879cce0e7209ed6be4f5450 │ │ │ ├── 16d16d2258b463e14ca3cb68ccab5cb5c0da96bb │ │ │ ├── 17804538b39ab0940cc42dc119ae8fd8b27ab29d │ │ │ ├── 178a259128f9884dc1e45e9708073b5f54777ab7 │ │ │ ├── 17a10e1d54bf132da807c8b5a1a23f35a93f250c │ │ │ ├── 18078c341f94ea9ae2a338f10198e3de388c1f71 │ │ │ ├── 18130881290d4090534a2f3c62e7c1a0968992b6 │ │ │ ├── 18bb313696fd8cf0b7b14ebe6f1cc7ffb40193d7 │ │ │ ├── 18f4899b126b97eae6a0a7778b0ba2cd660185c4 │ │ │ ├── 18f85f489136cbac72c257d660441d101549a519 │ │ │ ├── 19fd3f9c1a15b7e5e1f42ee0857662971c383eb1 │ │ │ ├── 1b28bf243e0a317e505fb84ffeb1bec9e6de4ac5 │ │ │ ├── 1b6c924f88d728410fd54b59cfa54d31b1d1bc11 │ │ │ ├── 1cd0c017415a02cd6dcda5993f683916d7b85d68 │ │ │ ├── 1e4df7789ce4700c351d773f0cb4d31d3371cc54 │ │ │ ├── 1e5c2f367f02e47a8c160cda1cd9d91decbac441 │ │ │ ├── 201b752c3968814809b4055e81c0c3b7eb5f8847 │ │ │ ├── 21bb584ee87a4e3678a2c28b4bdf8f975c90cf2b │ │ │ ├── 21cb1b3e2955ccd29e8516fdf455c5e088c1cc9a │ │ │ ├── 2331132e2ae3c98938e44e08bdad2fb4ad73525c │ │ │ ├── 249182e16cecc5bf403ece1772c10e136520ab7f │ │ │ ├── 24f2d3155db146be627ac9caf0b029b4dfe770ed │ │ │ ├── 25a6e3c0bed5ebffaa26be06551690fd140843cf │ │ │ ├── 269324e16f425ddff58b70b110ae249cbb3554d4 │ │ │ ├── 27918588f57a87eb6f8b245526eb83d02a473362 │ │ │ ├── 27c3392ecdb931735eedef861ebe71251e995879 │ │ │ ├── 2880f846fbe16b63ab9d10d552f30ead84bf7d16 │ │ │ ├── 28f944204a99ff28ecd5141d0f85fc5b31196ea1 │ │ │ ├── 2c07d91178dd84d30adf9a601cf92b8602046814 │ │ │ ├── 2c2991534a5af9cbbb03170df48dd513c4a686af │ │ │ ├── 2c5b1ace6ab33c07b07b8fbae2de7e4edf9b9345 │ │ │ ├── 2c5daee26b9e3d64ad0c6b6f4095f89ea2257b5c │ │ │ ├── 2ce2623550bf0710ca92bad7769ea4a64c32f31b │ │ │ ├── 2db46d153901e8768974ad4787dc1831ef0f9541 │ │ │ ├── 2db65949b3b8b9f2ec83a7aebda1d4379c17391e │ │ │ ├── 2dda39b74a10092724105968228b1c4a574ca31d │ │ │ ├── 2e1cd63160d30423b04fe736d0b64dc337c42a4b │ │ │ ├── 306a0a7b9fa324671866d2c5581012ba35f50e68 │ │ │ ├── 3111f859b8fa78c44c91fb1224dcb01946635944 │ │ │ ├── 31bbdfa2c5a1d50d5a8be6c622c9f5a5da01842f │ │ │ ├── 328c9fe67afb95c2a0c04f97d46eeca07484eaf4 │ │ │ ├── 330da0e9c6b3d3e7f42d6cf9549e954d60895bd0 │ │ │ ├── 34345c7489398f992c5e537ad3d1507cbf0a6c31 │ │ │ ├── 357926bb4d0ea99d2d0bfd43fdff8f397ffc0963 │ │ │ ├── 366fec51db9d0a7fab4783316cbe8f20e6a82a0f │ │ │ ├── 36cc95613ddcf89f5a061a331364360b1e3d3604 │ │ │ ├── 37abecfd874c1e0115bc3ac389b7c15cd377cae0 │ │ │ ├── 37d5c791dadf7af0f72f95f59bcf8a01ea855282 │ │ │ ├── 38ae073306659e65075388cd6288f612349b66c0 │ │ │ ├── 39a907959332590d05e70e53b5650986484b3e27 │ │ │ ├── 3a06c0f46c89c580bdfa27e8aae079d997cb4ac6 │ │ │ ├── 3a2012655a0aea8a10b5b2a22f153a6a606a183b │ │ │ ├── 3a62c6e43da82c490fc68da9b05feb87469e2c92 │ │ │ ├── 3ad09b1dbc4d227aafc74e51cf60c86764deea5e │ │ │ ├── 3ce7e8bab25a15ae4f2b3f471a17252ebc2c34be │ │ │ ├── 3d42b522ca1afc7a3f2d2272c0793efe1f2bd8ae │ │ │ ├── 3e7437382908ca515d525899ec3dd6fe5328ae09 │ │ │ ├── 3e7d4ae714bfce1654f4be245d9e38d8b462111b │ │ │ ├── 3f4ce649c92cb9655b639a5c39f39cd732fb2019 │ │ │ ├── 3f778e059a09b9b2960af6082a37a5a5c96e1f9c │ │ │ ├── 41f2a872437c0899f51042ea789f04ba5d7927e3 │ │ │ ├── 41ffb1fdca992a9bf727ec88a63e0288976a1d71 │ │ │ ├── 421abd2384f3030f1dc558e416f1b70b71d4dc96 │ │ │ ├── 422cdcd18e508a66458fe8b50468872c355b62ee │ │ │ ├── 4295ee2be04d8c478f6ef7727da37f77ec1a36bf │ │ │ ├── 429b0db5fd0ccb8950f6e32558d2172a1ddef89b │ │ │ ├── 434c3cf4c00b8eac01c58c391d19c7748c6890bb │ │ │ ├── 446d54b32e6a159144526a74b4679a342f683871 │ │ │ ├── 44ab4de7f149e6c1b202d810b7fdcb49834046c3 │ │ │ ├── 455678359a6f2387587dd97501440d204a1a2c92 │ │ │ ├── 4598973c3b4929f6ba565513bc20acab95fd08be │ │ │ ├── 46751c76f91eb109f56723a6c6c3a33ce30f1908 │ │ │ ├── 4841299fa996db35ae5d4028705f4f824e5733fb │ │ │ ├── 490b457f5f7d72b5b9fc70aadab64bee739e8c67 │ │ │ ├── 4964e6dff8abac3a7e757b70027520f0d7413a33 │ │ │ ├── 49dccb133a449056544805eefa7e4f893965910e │ │ │ ├── 4af21f93edef1d31e9b1d8484cee631e7f05bf82 │ │ │ ├── 4c45e2a0d13affb96351efd027b60985b3da58a8 │ │ │ ├── 4d2b6d3da17861ae406d309557995b7dc0a5a288 │ │ │ ├── 4e55ee2c9984c8608f37e1053181e8bf57372ed3 │ │ │ ├── 4e680c975c4c74bcc4dd47871b0d56c7c3606859 │ │ │ ├── 4fd7b4b1096b9da218165c1ec41b72e97c85ec77 │ │ │ ├── 52d42dedd370068fefc8d686b2e901cc18abc6d9 │ │ │ ├── 52e236eade702b00534585c58d257e32b66c9cbd │ │ │ ├── 5425a53733506eca985c7e74525d4180d5a50985 │ │ │ ├── 553f628798c9e47835821e61b81d6c35db3bfa24 │ │ │ ├── 55fda1548d646386abd0347161460a20728cc8df │ │ │ ├── 568cdfebbf655268a03aded14160ed985f0d3789 │ │ │ ├── 57e2f9bdad9f11cb7c1cd217cd98ff9687362490 │ │ │ ├── 584304d772b6eb1441a332c82c00d882a541389f │ │ │ ├── 585ede2193ec40665620318682a9f7913732dff4 │ │ │ ├── 5ba93c9db0cff93f52b521d7420e43f6eda2784f │ │ │ ├── 5c714b46b7493cf502c0a02ea1b0ad5d41a6431c │ │ │ ├── 5cb417c3ddfe67a0b9971e50d7a44b0f1b09e621 │ │ │ ├── 5d3371365fb18c1d0340eda29d13ca66fcfa3a58 │ │ │ ├── 5e026e9d49a5160aefb7e11f12c37b44e459287f │ │ │ ├── 5e4131c097a060bb291b1f253ccd019a19815430 │ │ │ ├── 5e5509d36bf351fdba212e8754c6a832e1113ab8 │ │ │ ├── 5e7af61de0024df7cda9147e585136cce9d6e5ef │ │ │ ├── 5ec54e19eca76d7407a067d36d9b7c1c98c26e98 │ │ │ ├── 5ee50d675c809fe59e4a7762c54b65837547eafb │ │ │ ├── 5f78fbf2a3a4191cd4dcb27b0af76b063c305c51 │ │ │ ├── 60dbc9b644d7d58f17aaca7a8ba4a87d5f146968 │ │ │ ├── 60fc5f58edf7f7f85e8c8f4a40083c556012bc4f │ │ │ ├── 61249d8ecaa530903ae2c58f0963b9a3a1a670e6 │ │ │ ├── 61c4f2dbee1b245f8076826f6af9dc116084e0b3 │ │ │ ├── 62b9a2f9c5d03a207a8b1505304b8761da2ee3df │ │ │ ├── 64b0ad9425e68efd6bc2d587cb6c00426c8b7dc1 │ │ │ ├── 64b1e45101e75327a7e552131d4d226975ecbe34 │ │ │ ├── 64d9b4e726d87ee7afc391136866515b91df8aca │ │ │ ├── 66994068d7dba8b238ce0810b9120deec75578bc │ │ │ ├── 69799ad9bd9cf9ce79f2aa5e5b7546ebc3b9cfc6 │ │ │ ├── 69a2756cc355acf51130bf93d82713471b9e74b2 │ │ │ ├── 69c15303c13fdc95369c89b6ddb6fbf7319f66ce │ │ │ ├── 6b23619aedf4fa0b43cd4d7d2e8a98942241ba14 │ │ │ ├── 6bfbebe235ceaee31ae51bd61703d9132047c9a1 │ │ │ ├── 6e4fd132980438428c8bfd3ad7bcff30cd6b7554 │ │ │ ├── 6eac32c2b7fb3f3a479315b59e3654ed540c5631 │ │ │ ├── 6edd19b59db8d9d46c13b8dc47fd46f223c408c5 │ │ │ ├── 708c1bfaffb143fe6c14c4c5d6d85b719395294b │ │ │ ├── 70ce4409bde043d624eb4bf87aab153511a37dd8 │ │ │ ├── 712a437d400c3d2a1a43c2c4627bcb8ea87ec119 │ │ │ ├── 71853c6197a6a7f222db0f1978c7cb232b87c5ee │ │ │ ├── 71bdf2f0a7342766bf3051adcc5643d5c89bd32a │ │ │ ├── 71f0264053104aada51a43562a6652fd913a7129 │ │ │ ├── 71fbbc03ac5f63b9a3dce0b6d9805328e627c009 │ │ │ ├── 71fc206975d09caf7d75a6f302a05daa12f4ed3d │ │ │ ├── 72f1c2d3f87ffa1e92255758a0b776fa52bea454 │ │ │ ├── 73652ba338581ca885ba1669848d0800a716d42d │ │ │ ├── 73d55c88b4cf5c5aa93e01068810d464443a1af8 │ │ │ ├── 753d9894034a68752df513c3ec1f75c32fe3bc27 │ │ │ ├── 761330c77d58a158728cdd0a4c44c511991f43f2 │ │ │ ├── 76d29c1d81040a7f343b0721de043c1919ab125f │ │ │ ├── 789e7a5fd1088b64e394dd8affb9ec6d4dcebdab │ │ │ ├── 791e959c6081d8f568226775f92ae36f4a668a91 │ │ │ ├── 79edbe59f4ead1116d3e9f43b733f8c195cb7c15 │ │ │ ├── 7c062eea406d2f33b35cc44061e44ad19e15f8d1 │ │ │ ├── 7ca1735908caf29506fede761f29da49d5f7a6bb │ │ │ ├── 7d4997bd56c416c724b69b4e95465a01c210c04e │ │ │ ├── 7d8ea4acea01db2dc23cbd4294155f591dd358cf │ │ │ ├── 80f4785a8d02c2028b008f9b92395a71fff928a0 │ │ │ ├── 8103ae0582e12e72732196deb0e0cfa03b3d2263 │ │ │ ├── 83d83ca3460ee3c168c9754d863704ab5fc82cfa │ │ │ ├── 83ed9fc715b736358555b1afd48962aee4e6fab4 │ │ │ ├── 84bbb7e2041331090a6c7940fde0bfed9014a875 │ │ │ ├── 84d58e883000a4578036a0ad8b8684cce00178c9 │ │ │ ├── 84f4476fa6daf0c157868f499d7decbf02cdc209 │ │ │ ├── 863d6e63448886b37590597ae5fcbb48766de216 │ │ │ ├── 866d9002675f77b4b719018d5e0216f8dd3e243b │ │ │ ├── 86fd2bc643a513fb4f7c95f2ed0e48d69c4ce497 │ │ │ ├── 87ca4eeb4b74763b3fe81eccf18a38cd71204982 │ │ │ ├── 87cae15f9e2c1e8b7cf7d1ccdd191ad2344b8f7b │ │ │ ├── 87d8f958ba0abcb61f8d18f339ef916657579001 │ │ │ ├── 8a4515dfc0a4f32b819a9ebfb8298fb9d3ecb5f9 │ │ │ ├── 8ad4af3b3f77445622b761cb825e9db2d6089bf8 │ │ │ ├── 8c26b776dd496ab70fa39051e5d5b9d817f03f4b │ │ │ ├── 8c503d0af8c7fd6019ec304d6f7e90e9a09147a2 │ │ │ ├── 8ce79edffb1831b7d69047e9ff1e7b5b01d329e7 │ │ │ ├── 8cefe6c5349537494a4f7d3a65f35673bbbcd374 │ │ │ ├── 8d49025ab1e49fbe311c43f0260739da27c79257 │ │ │ ├── 8e04f3d9dbdbb20617d649659f240e206659ba2d │ │ │ ├── 8e59dade684f5fc5ba4fb1366f2a9074bc495115 │ │ │ ├── 8ec6d8c29ddcf061a08bda0b11c6bc23130f6081 │ │ │ ├── 8f51e6b4a4635f639013111487e2457db3a99c93 │ │ │ ├── 8ff6b5b672ba637917c02a5fba1d6e6519b182b3 │ │ │ ├── 911d4e2fd1e0f1f70e29fced8cb5db0cf3e18a91 │ │ │ ├── 91b81f7134e405ac2dae0c6f6a48bdf3220b2200 │ │ │ ├── 92232dc88b489bb744f858611b5c6e747cc57daf │ │ │ ├── 92d7a5e1bf9eff9fc82814a5d191f553cdef9ba0 │ │ │ ├── 942d048713c120c9399df52ead954d60bc32b65f │ │ │ ├── 9450d6deccc418cff915902e6fc5d5fe226fadcc │ │ │ ├── 94f46d013674e3e6e974e92f9486bdfca75fe009 │ │ │ ├── 951878e31f54b6ac6d94bf2d1d5860fc6fe3eb4d │ │ │ ├── 9522b7eb1c1ff3625c2e89ae275b17d1d454c29a │ │ │ ├── 96aff67230b2054b6040d2cec850685d9124fa15 │ │ │ ├── 97436a3153944610a9793d39bfca6aea9aabd5fa │ │ │ ├── 98376873b2c1afc7e95fea86c960eed036d49537 │ │ │ ├── 989fbd16297ef75e5a9d5c63f7096c99b455563d │ │ │ ├── 9b6c946161c5e9ac63c4d0c7e601d14208e93805 │ │ │ ├── 9cf13128b07fa13233763573c40bf238a0ccb329 │ │ │ ├── 9d0ac37bb3ec8c95990fd37a962a17a95ce97aa0 │ │ │ ├── 9d52799cf593a24bdd1129342680b409694583dd │ │ │ ├── 9e5175008751d08f361488c9927086b276b965fa │ │ │ ├── 9e54a6c84f90bc6420134f03d9634f11f9b4c4b3 │ │ │ ├── 9ebccdac464194c085ef5d40ed953492d75f4264 │ │ │ ├── 9ecdc080ce74d4622c3786f95534560bfcdcc2a2 │ │ │ ├── 9f50d240e6565cc787faeb31063c70de6ddc6651 │ │ │ ├── 9fa1c63e3fb3f58fdcf8be89efcab13b268e41e2 │ │ │ ├── 9fbf19f540fd99137a8b8b91a1f869bb0d3ad7eb │ │ │ ├── a10250c5745eee5db4354e178b6d55f2c96a20b6 │ │ │ ├── a2a9996e9293bc98983eb54e5dc55bae15c95d94 │ │ │ ├── a3369a1ff234fb309a972d98431b2d635a885728 │ │ │ ├── a370ef5c79c8b6ba78bf2f37a0284572fe15ebd0 │ │ │ ├── a5f84708080f37aa34de5b9ad93f9b6aa7bbeba1 │ │ │ ├── a7523c549f82e3af341703f342a2c77f97e04f41 │ │ │ ├── a79c7e3f335d103dfaf4e54e08f61c9b248e57ec │ │ │ ├── a7a4fb4292a0b002f3faf0e8bcdcdb6502159b0a │ │ │ ├── a9b320ba9299bc78c31b127bbde7a24277c4f39c │ │ │ ├── acedaa658989463d6d52c821c6562166a5dd9fa3 │ │ │ ├── acf5e7bab4329273181ded87165a7d5b10566633 │ │ │ ├── acfcafb7cbb43bfba83e97407320f47cd49d3298 │ │ │ ├── ad2e5c298ca00cc238f76ec2e90eab77e2f2ad83 │ │ │ ├── adae5886f722bcc292d581483186cda383a470ca │ │ │ ├── adc83b19e793491b1c6ea0fd8b46cd9f32e592fc │ │ │ ├── add0e18d79fe2a964c67237f92c9162457e0f179 │ │ │ ├── add8392b5a0747807c2a22e0c90c65f07e9363e2 │ │ │ ├── ae81f48542eb694a6f0dd65f9bcf78a33f7e243c │ │ │ ├── ae893a8119f1496b8b254fd1c593f3772655ffeb │ │ │ ├── b00e18caac78d43f1b07b4d8df6e3e3944c3a046 │ │ │ ├── b0645aa8dcd2ebda9e537defe74df6b3d02cf95b │ │ │ ├── b1fb1a4bb3e95bd4aa821143194059bbe36ff16e │ │ │ ├── b32c1f875e4a92c49944dd10275d77ae4008d16f │ │ │ ├── b382f06f112f6ae0d048f81763671958fca2dfec │ │ │ ├── b3c9f5ef935b9ab04588ca99abe98def6c4bd7c9 │ │ │ ├── b42c7e6c3984cd23f62236c73a2d474f994bb22c │ │ │ ├── b64857b45d29866fbb6a82491b11895b6811fced │ │ │ ├── b64e843aa839302d956773fa58eaf4f7ee68f627 │ │ │ ├── b6c4beacc53fb88a62b92b6d37e10241334af2ec │ │ │ ├── b6e6cb97ab2d39fd8ec546a8c7343d97c3965a5b │ │ │ ├── b8236698672a7570ca19a398ac2596eee2cf13c5 │ │ │ ├── b88af8552f0cc8e923bc1f08b16cbd71a871f6aa │ │ │ ├── b8cfb1fee4ecba69c62b1c607cb54ab8a6465e8c │ │ │ ├── b9cafe1e5a4c65d58779785deadbb8ef236d9a7b │ │ │ ├── ba62b89c8cd98a678b9b93ee2a65fd2e70934ab4 │ │ │ ├── bd08f182b19cb368e81a548dfe905cc2cda4b46b │ │ │ ├── bd7f9d48c57211c7d78379f55e82a5732aff0f59 │ │ │ ├── be49a7e90a585ad1c654bf155bfd7a1c4854ed74 │ │ │ ├── c1915f94c1f458c210d46b75802f22f01330ea70 │ │ │ ├── c24af389beee91e5130a69ef57caad96e5072fdb │ │ │ ├── c2df9313f41236ac4d8db10edd205769805ce5f7 │ │ │ ├── c344289e0d88ce81e9707b05b5b1824a0dbc9339 │ │ │ ├── c3ba3d88547080c97191dcd37a6c2dc232f582c7 │ │ │ ├── c52422198608ae1fb3aa04f3bf5b9b7e4363e34b │ │ │ ├── c53b19a63aa587842ae65b3b9d03b2c65d3812c9 │ │ │ ├── c69b25bedd75a675fdc7622edfc026390c8f47cd │ │ │ ├── c744cac6af7621524fc3a2b0a9a135a32b33c81b │ │ │ ├── c761c3eabfde11f125d50c2ab7d822139aa028f1 │ │ │ ├── c7c578c485956d65f12524fc2ac1dc90a4c11386 │ │ │ ├── ca4410e92fe58e8e3d96b0a34a8eb44433f1b7f4 │ │ │ ├── cabfb803de7e32cf85959db974187f35c71af3c6 │ │ │ ├── cadd71fa8f4d9d63788a2d830f8fb8e95413ef89 │ │ │ ├── caec5e78871a9b28d545eb613df15b334fe5f66c │ │ │ ├── cb86a8ea406efc0181118a1dbb48f001450398a8 │ │ │ ├── cb88ba1e0d3925c2e0d5d3d0323af4d1d111c8cd │ │ │ ├── cbf4387df571fdba92d688323fda95f8bdf0f359 │ │ │ ├── cc9cf6811a0ff8a6bd012e674cc6e10b5ae243e1 │ │ │ ├── cd5bd20e9a0f22d7367cc169e2844a02751c7c91 │ │ │ ├── cd6b276109c10d58072bdf32ed5cb9f9914d15ea │ │ │ ├── ce9d1a4e6dc3c67efbf0bec1e69e8fda86a08797 │ │ │ ├── d098cb8e853b62197e0fbf3e4458a373a55a3abe │ │ │ ├── d09e7211b807b66db5549180b3a75408922c84da │ │ │ ├── d2d88a002926029499aaf1a23a44349b6ba64d4a │ │ │ ├── d3254e196d6960433359b349f4509441e76d7fdd │ │ │ ├── d3e9e46b85e6138f615471491fbf1dcead10be47 │ │ │ ├── d41924155bb521d3ce526f47132f84d44f2b0a3e │ │ │ ├── d55baa42184138eb6ea15ef5603f1c8fd304bd9c │ │ │ ├── d56edf7f1e97e408cb137a1e6a4ffbfcb0ecc2c0 │ │ │ ├── d6d137517bd2649e22bb354ff92774910fbb93fa │ │ │ ├── d75ce4d15553b901a7a50dadf5033e6555448b0b │ │ │ ├── d8787633c82d1f8d6558622bd89935d7fd66d12c │ │ │ ├── da341d7fbd95b144870c8df0b84394141fc4e1fc │ │ │ ├── da8353d82f679dad43017610e71021d0277c6ee1 │ │ │ ├── de38aa8b3542eda86046f7d2051ef231a0e4fa1a │ │ │ ├── dfc40b39578a8589bcf13a6a8dc4a2a8cbaaf984 │ │ │ ├── dummy │ │ │ ├── e0bc41d059f7ed1b458b69f4d9a0a91b978004cc │ │ │ ├── e0e94c3744c89e91d1aad22df532ca5e2b0d935d │ │ │ ├── e0f1cf37af1760e76c4369b10c5b9ec5c4b17156 │ │ │ ├── e2e3a3a316fcc341759398613eac25a623acc129 │ │ │ ├── e430f2aeb285923518e53144e0db9b57f498fd9d │ │ │ ├── e466fc529b2bcf9233d720438f2fc0016bf536f0 │ │ │ ├── e4a05dcf5923b63a0dccf6ba691c8d493aadb6ae │ │ │ ├── e4b37e91851d95faa5894ce4dffb1304cb2814f1 │ │ │ ├── e4e68825327633ba02cc0791cbc1a3e95a82f653 │ │ │ ├── e54f5ed537ba130e21abb2cf5b836201d0a5bead │ │ │ ├── e5741d6ea0486abdc4112ac76c40d09a2b57450f │ │ │ ├── e66bde527912b5b6584f18bc8fe1600bece202c6 │ │ │ ├── e7062df96cac136b6f3ff556e20ac55e794f9d5c │ │ │ ├── e981b6b7a3a0da1b7cf463920c0799979695e757 │ │ │ ├── e9f0cd03f2cf3fea874ead01a825f43febbe989e │ │ │ ├── eca43e727410a7d9a0d194fae1116ca7bc36582a │ │ │ ├── ed6966f774f351b047b386bf27a9e29427bd2465 │ │ │ ├── eedb5cba8a20f49f637f832cf20fc7c08fe445f9 │ │ │ ├── ef34a7a33ab6a23823ccaa4336fc465ac91280d0 │ │ │ ├── ef4e2687bd26ed5c1ad44e637911d6283a95cd03 │ │ │ ├── ef5f58cdcd13cc04afe6916b609ab2743d5a7f50 │ │ │ ├── ef86651f85d192092352efb0481ec27c41aaa699 │ │ │ ├── efdaf62e21c1e8b8fa3c514bacfe6061291ba7bd │ │ │ ├── efef4c61fa6e2f9293d929d901e4136c329e3df7 │ │ │ ├── f046dad405638c2474fd18fc63736336f8c52dd0 │ │ │ ├── f16acd929b52b77b7dad02dbceff25992f4ba95e │ │ │ ├── f1ffc7ab8ddc293dab5594b272a4cb5303e37d99 │ │ │ ├── f2d122fd587298ab5170873f5212bc15547f70dc │ │ │ ├── f58b3daf7a73c96c612da081473759d035193db1 │ │ │ ├── f5a79af2bfe95985edc180b1dabc229d849d1829 │ │ │ ├── f63ce4c7fbf878513c3f9026da1b3621a4048d82 │ │ │ ├── f6aa33aaa9107d04c1d753dda81838aac96c9d52 │ │ │ ├── f723a7719a1e2c92161a90165e72d25f8578112c │ │ │ ├── fa299cbacfde91f35036f0ac16026464fac5ce1c │ │ │ ├── fabfbb25f4804fefda4dc34fa178e216c558639b │ │ │ ├── fb3bb1ab11fb3ba1e5b816876a0b43bb0c83c216 │ │ │ ├── fb49fe0090da49f9eae18a12da22d5b2a9c96de0 │ │ │ ├── fc0e65ab1c044f8fb2aaf004a9eaea8d1b0849b2 │ │ │ ├── fcd34e58c0d96036c1d06c3c208d0c35693adf4a │ │ │ ├── fce7fad2389fa90d2368286771ec42e2926471c5 │ │ │ ├── fef922ddc295c2dc2c9453588263b3ceb823e3da │ │ │ ├── ff0086680cbe4434fbf9fb7e0e9745fc016c241a │ │ │ └── fff429e2145e0203a12de25659449b1499a83b26 │ │ │ ├── replace │ │ │ ├── 01dd32f42c6c3ff56d10b7fc3dd82e690749be6b │ │ │ ├── 01fb9bd1e6c399514a4e7fbb29c1765105bae07f │ │ │ ├── 0374122e3ce280568c8ed41f46a22a26cba53338 │ │ │ ├── 03f405ec803faa59306f074d3824fcd040dbfbbe │ │ │ ├── 040e5ac904de86328cca053a15596e118fc5da24 │ │ │ ├── 052ab788f1646b958e0ea2c0ef47d00141fc1004 │ │ │ ├── 053b0791e062db00594283e16e6673872596a2ed │ │ │ ├── 05cda787f4d57c0ecbb214cc48d9768f53a1ea8f │ │ │ ├── 062e39f3c9fcee3faa396c764271aa970a27f428 │ │ │ ├── 073540f1f1f48d2f0b9e11547831ea89a54cb889 │ │ │ ├── 0881e645dbfc1bba29947ce353e8484f0772bc99 │ │ │ ├── 08dbbf42caba6501b69b1cea7a9b84e358e66ddb │ │ │ ├── 09b9d71af1e142272bd6a0fc2054b64a438b99d9 │ │ │ ├── 09c21ec8cd64594f85f58977b0e926829630411e │ │ │ ├── 09e0b378c5b135d7aa81418536b5da91a1ab6d55 │ │ │ ├── 0a80baa1797615faddb0ccfaa6d46382a6b3e0e2 │ │ │ ├── 0ade7c2cf97f75d009975f4d720d1fa6c19f4897 │ │ │ ├── 0b30ec1eef0904f48d3797ee13dd515b06c482f5 │ │ │ ├── 0bcdefa24d77e35b524a9ece21552575a934eaa4 │ │ │ ├── 0d87af67cc37fed4ba608dba87c561a3ff2b1e31 │ │ │ ├── 0db2a00e53ccf8ef330179835091f6b070c1ef52 │ │ │ ├── 0de2a6cb79184a423a18c705ec5c796943a43f4b │ │ │ ├── 0deb9e2a6e3621464ce59ec5b83af083508151fd │ │ │ ├── 0eb34fb70c5cc8bec3bd9746d4c0f51848c07599 │ │ │ ├── 10cf3df2d3d09ae47fb5eb2aa32f045a7e6377e0 │ │ │ ├── 11362f492ccdf1419ef6ea987d41121620864a66 │ │ │ ├── 11f6ad8ec52a2984abaafd7c3b516503785c2072 │ │ │ ├── 133f26e45c15971da555fa342a996fa4ecf33a32 │ │ │ ├── 13fbd79c3d390e5d6585a21e11ff5ec1970cff0c │ │ │ ├── 1599e9fa41ec68c80230491902786bee889f5bcb │ │ │ ├── 165e29e56c97e5f4b1c7452d69724329c992c975 │ │ │ ├── 16d1d534393d37a68a59c1231bbbab8550839046 │ │ │ ├── 17ada2900d14cae808b76f484a73a2b599b90bce │ │ │ ├── 1a6dbaa717f8837c4bd4332121e92bd73bbec049 │ │ │ ├── 1cff906cb64d3600dfcaac3a0280ab999b7de49d │ │ │ ├── 1dcc0c704303ccc1729abd618f490073331e8b22 │ │ │ ├── 1e5c2f367f02e47a8c160cda1cd9d91decbac441 │ │ │ ├── 20716a557dfffcaf1782fc244cf548ce14a36fc5 │ │ │ ├── 21013749b62bbfde87e4424c51724252be99566a │ │ │ ├── 21606782c65e44cac7afbb90977d8b6f82140e76 │ │ │ ├── 21a923ffde933d250075e181d06df1b363c2ad87 │ │ │ ├── 23772d668f8c023da1c6a6d00c73e463150691ac │ │ │ ├── 238bbc48e815415afb9877d89279e721c5ba6536 │ │ │ ├── 23a84f8c38d47199a41d9e3eef4ac794aa10ca11 │ │ │ ├── 23b0ee55a5999ef842c87782bdb40fe527ee7d5c │ │ │ ├── 23b54dec02fdd05a55e66e047d0fc93c8d58afd4 │ │ │ ├── 2699e643651c83a9926385fe042df0ee147f59f9 │ │ │ ├── 27d5482eebd075de44389774fce28c69f45c8a75 │ │ │ ├── 2c69128e7d7b6103540d60d6f5c345f4c643d757 │ │ │ ├── 2d14ab97cc3dc294c51c0d6814f4ea45f4b4e312 │ │ │ ├── 2f1f169a732a6a2631b27d082f31e151075939db │ │ │ ├── 2f546abff1744e1ffa4c06ed3d7bb1e7795157d0 │ │ │ ├── 2fec74062a3d12bab6c473583225dd62435240af │ │ │ ├── 30140397fe38ee61f01eff44b5cfa48285e47889 │ │ │ ├── 304f1febad9d6064d06da66df224af85fdefa4e2 │ │ │ ├── 3173532552077d0d796c3628ac35c76343dc3a04 │ │ │ ├── 32096c2e0eff33d844ee6d675407ace18289357d │ │ │ ├── 32c559a18ec3f786972a8c308adf2cbc86a24441 │ │ │ ├── 33156466b62882aca589674dbc593e356efe0cb3 │ │ │ ├── 351d86f5fba2ea4f88f3abdf01d0c6f59c28debe │ │ │ ├── 3639690e233f2274fe9624bdeb20e026e9a5b16f │ │ │ ├── 36955aa4221158b2b4199a31f6db236664d8259e │ │ │ ├── 36bf7da6bf79be1a6248e715e61aad704b3b3a78 │ │ │ ├── 36d44fd006f9a5a6df9c82ef818d0274b5d57326 │ │ │ ├── 387ed9746de74f701d1af5f5d4e36ad7b9fd19ef │ │ │ ├── 38d4e6275e92eb330bd9a2bfd25812b1443fde85 │ │ │ ├── 393017d7afb3b4d4c34540baa571864a7eb9bf87 │ │ │ ├── 395df8f7c51f007019cb30201c49e884b46b92fa │ │ │ ├── 3b1b828760b23270984a47c893506f2bc8912d04 │ │ │ ├── 3c363836cf4e16666669a25da280a1865c2d2874 │ │ │ ├── 3c89586d99f2567d21410f29b1b2606574892aa7 │ │ │ ├── 3c9d36c05871d857bf45c387025e42319415bf32 │ │ │ ├── 3cca182946e9fbc4a21fcfa83c21f163a6b549a1 │ │ │ ├── 3d854b217fa938bf1c66059f9771e6eef967df59 │ │ │ ├── 3e08e20df22d3237cd2c904c192b716783fa863e │ │ │ ├── 3e3a0fe606230588bbcd34206150d39b70753985 │ │ │ ├── 3e63346f640f72156e6fd76c00483293c3bfd94f │ │ │ ├── 3ef176fc2093618c094e73acd348f31bf1a6e990 │ │ │ ├── 3fa5bfd93317ad25772680071d5ac3259cd2384f │ │ │ ├── 3ff902b52311c3db8e6b6aef51126873bf993f0b │ │ │ ├── 408c170de2a4310ae7d9544be9fd24f6c28e7f60 │ │ │ ├── 40d907e2a65b848d1175cb99be5384bcd01e8027 │ │ │ ├── 41f12c7896e0da705a03db554ff64ca975fdb8eb │ │ │ ├── 4368df0175f01cd0870a72b906d6c5280d3ccc3d │ │ │ ├── 45a65193e30784b0124f4fed659eb7e46552c2d0 │ │ │ ├── 46f0c38dfd2392d65f53f10d7dcf0d55f3478099 │ │ │ ├── 47138e343ceb97ee9a47fc38ec166429b6785265 │ │ │ ├── 475ab5d3c4271be23fe0a2e0322da804d1b4e7e6 │ │ │ ├── 47dd1db8c37b3f9ce1bca0e302e77ffa25ac58e9 │ │ │ ├── 48e03317628504909ae82f021e5d84e0294c95c8 │ │ │ ├── 4a0a19218e082a343a1b17e5333409af9d98f0f5 │ │ │ ├── 4a1e92004fe2336b478d2a26adf69dab9c8f20f3 │ │ │ ├── 4ac3c912ed618bfef8a511c6b65cccffa96547e5 │ │ │ ├── 4b56a916e4fd9f579143bdc1d1721f46edc77d10 │ │ │ ├── 4b6a19f42d9a725e35a9bd70ab5bc0dae2d0f938 │ │ │ ├── 50b45911eb839e398e3f72f53d152ce65106b5c8 │ │ │ ├── 523c87e010a287823cc1db4ef40fb431f086303d │ │ │ ├── 52538a80094f7b62948fd31e68fd17a315d8dc91 │ │ │ ├── 53195a43aebbd757609c1987a3e5fb80a48a1aea │ │ │ ├── 540cd14096978df7467136d56a3f91ad3bae1257 │ │ │ ├── 544a5d52682bfcba1eba578772019acc3ed7be9c │ │ │ ├── 54774c0a9a5e30b1a59c909b565be9171cc63c5a │ │ │ ├── 54fd1711209fb1c0781092374132c66e79e2241b │ │ │ ├── 55c9aacf45de57b5e52c906e62807f7f636acc13 │ │ │ ├── 55df2a59ed6a888ee2f0cdfdcc8582696702de7a │ │ │ ├── 568aa2f8222d96d2f5bff18f465296aeaf404d83 │ │ │ ├── 56b29b394374ac90810feafe97badb8d5f79ec5d │ │ │ ├── 57ea2fd4cfdbebdec4b57d1bcf93543db7a94149 │ │ │ ├── 59665cb6048d1fdf29408cfc1588e7e96fcef599 │ │ │ ├── 59efd7ad86d0e129fcd3170f570d3fe20faf5778 │ │ │ ├── 5abb0ecb12a5a97ee4ad2311241fe9fd2c50788c │ │ │ ├── 5ac60cdebe9e938c45fe0c0a14bd616999d22aa7 │ │ │ ├── 5b55ec37559bb110228a6591713076b7fa2ce5e8 │ │ │ ├── 5c10b5b2cd673a0616d529aa5234b12ee7153808 │ │ │ ├── 5c28095bf32b9e84fb436f4d5db56337dfd6ced1 │ │ │ ├── 5c8d691ca4df25ca1a28f7095f13c06123d6f908 │ │ │ ├── 5ca9632fb3da20ae29d185c83ea8a0e89966a4b5 │ │ │ ├── 5d45a50bfe5e9b6ecad8ee68f17e71a69869d335 │ │ │ ├── 5ddbcf4566f672923de00124be202355eee8250a │ │ │ ├── 5e0f27faa111f57a3856462210545f2737b119a8 │ │ │ ├── 5fb9a0ba37519b7fd51909c778ee3b48502de7c1 │ │ │ ├── 61c735e167c0ecb1d63b5707040855a246b148ab │ │ │ ├── 620da84186b56a3ac7084bbb997f7fbaaffd8d26 │ │ │ ├── 629214148a45ecb1f5f7c855734e7b7d114bde82 │ │ │ ├── 62a19b87093a83cbde29386085cb3afae512048e │ │ │ ├── 62bdf4f429db7bb60f0f4e2011548c0768bb6a6e │ │ │ ├── 68fe510098e9425166948125b7fd8559db564275 │ │ │ ├── 69cff411c57a6017bf8da6f8f6dc68f8677203e7 │ │ │ ├── 6aa5340b504631ff785ada9d4ca37ed1cb99d385 │ │ │ ├── 6b05c630ac987132c97c3bb31b4e6dc48c94ef66 │ │ │ ├── 6b74c7492defa6cce51e53e6490a526931ab814b │ │ │ ├── 6da6923ff27d3e93f3276f87399c5d2cd460efed │ │ │ ├── 6de2451516b557ea942df244c8586addd2d445a5 │ │ │ ├── 6e69f716ccc373de0d346e23ba5b0a1456e835f4 │ │ │ ├── 6ee4064118b38c4982e15de75ef780821fbb53d4 │ │ │ ├── 707daa653480a4afc737aa7925cad4bc7b4e2cf2 │ │ │ ├── 707efc314ec536abed535cdb1b2414aba4713577 │ │ │ ├── 708c303c200161d9ce9c5bd05acff0086c007621 │ │ │ ├── 71472949233610cbdd8e9db74002807bcce57b32 │ │ │ ├── 716f7b5b75fe0616d104b52a64fb6e3f82a4220c │ │ │ ├── 73944cf322f0e9ffff319e0769eba53b78e4bb89 │ │ │ ├── 73b74736664ad85828ce1be2e29fb4a68d24402b │ │ │ ├── 74e6388b381fedc1d7e3e2eb8c3290d46cbc2268 │ │ │ ├── 7740726ccd92a81e0ecd771a419c1eaf4151af01 │ │ │ ├── 77d28696448c009290aa19e27b4f5026cfa34fd5 │ │ │ ├── 79135152a053f257355122db90b254e844838dce │ │ │ ├── 793755a45f4b6ad7b34dfd52d98f82096d4a2702 │ │ │ ├── 7a86be4489672a86c76e3e6dc6ba8b3e37393de3 │ │ │ ├── 7b4ec4636103d641ec664e761370c016fd7e1f57 │ │ │ ├── 7d076c7938872bcc62468804a1111eb718aceeba │ │ │ ├── 7d0ce0aab184a4177d62e7a5f4aa090094543fc7 │ │ │ ├── 8039cffc073eae8c6869c7621ffd4db44ea9ec0b │ │ │ ├── 823cd15fc2befcd6eb603ddc8eaf446ea3839306 │ │ │ ├── 824a8e2187c37ef3108c6a283f4167f6bf39e6ed │ │ │ ├── 82a164ffab0440fdc7a2c40de70c2b3619e17b92 │ │ │ ├── 82b55f30ef9e2b65ef59c5ae40f624b64335eb79 │ │ │ ├── 82bb3eab86d4063ea4a3cb97821feb07cecf7b72 │ │ │ ├── 8449e3ee695c8bbca682409532026c4821d8ae09 │ │ │ ├── 84593d24fb3511c48598d8963e1f261ea4ea1aa8 │ │ │ ├── 84821530ae4ca65f7cd43d594500dc3cb8f2f25b │ │ │ ├── 84c55d902f7f7191893295c4ab425f80b9986473 │ │ │ ├── 851f99c354086150f158dea8b19fd994dbfb6d15 │ │ │ ├── 8525d8948f1ec5b27808d9e3befbab65b6f8cb33 │ │ │ ├── 8585fe89e21563547d44e4cda355d6dd8bf0d01f │ │ │ ├── 8687e81c89fd859f915437acb2abab5377adfbb6 │ │ │ ├── 86f09dc02bb4fa501cd13135eb1b555e644aa33f │ │ │ ├── 875113851cd0008165382504306366149a2238d5 │ │ │ ├── 88b26516dc4e0ed8c2d20140f6fb87e2d74dfb35 │ │ │ ├── 88d79b44fca04917b0b0fb8b0592cc6f7b482d64 │ │ │ ├── 8948eb98b4b4588ecce8505c6b56cea7fce4e2e2 │ │ │ ├── 89abef683225b5c0f2b58455113205d3d9e28ac4 │ │ │ ├── 8b97bf81fdbba39e6e612ca61df0ab599b59a998 │ │ │ ├── 8e1cae8122781833e8a686dd378254c44a59dfcc │ │ │ ├── 8e48c94d116520ecf26ecd247275295a3a7cbb08 │ │ │ ├── 8f1d519f81c5f1b13c457134f7c0d65d61e6236f │ │ │ ├── 924fa067583d076468b74452f7f7dbdc1e73ef95 │ │ │ ├── 92c96352b085c551a3a0f7f336b1f06373a88c17 │ │ │ ├── 93cc3c5f09e7f9f67e24c9de2bb2a4f700d34be0 │ │ │ ├── 948982d481af3333158f9761a369042b7bf4dda1 │ │ │ ├── 94af45793beb027bd38b2f6fbbb52ef101110747 │ │ │ ├── 951618ceb9b5bf6c3506382d6f7b2a6c8b9b24fd │ │ │ ├── 9aef6d55eaa1d795b7d1004c8b53c3c22356eaae │ │ │ ├── 9b16668f4e16c0e9932661855b7bcb5bad8b0f72 │ │ │ ├── 9be40a800622e5271be8305414c3215a2c55a16d │ │ │ ├── 9c4a7c5a828b025087f720caa56aac88b86a0d4b │ │ │ ├── 9cfb7f608003684c175573d379bb773468f953e3 │ │ │ ├── 9eddb6860ecf7699015ffff67e3b375820a48cad │ │ │ ├── 9f7d7adcfa65c18c229c3797b93b3c97c0040ccd │ │ │ ├── 9fb276ce7989bf9a42a1ca627bfd5e013ce15c16 │ │ │ ├── a1f2e15911248097b5865f5e25d980a738cea953 │ │ │ ├── a668a7cb1cab42083c5648e47582ac67f2e8e22c │ │ │ ├── a70fb6a9415d3c34a9ea5510ba7e3a055d88aef9 │ │ │ ├── a8abd012eb59b862bf9bc1ea443d2f35a1a2e222 │ │ │ ├── a94b24fd1c9072a299db036f97909171b97b2db6 │ │ │ ├── a980071b2ea741503dac452e75beabf49e780351 │ │ │ ├── a99760d97c4f7d9b29f75f70625addd929b5359d │ │ │ ├── acc1e5246317edda19ce281ace83464dc3a2efba │ │ │ ├── ad4aac4fce5fa23ca40aa021ca8688dae8818601 │ │ │ ├── ad979d350a6110711c5a98a1767972026d73f2c9 │ │ │ ├── aeedb41d39b34ba9edff61bbe4227cd3a18728f7 │ │ │ ├── b05bcf1bcaf0cacb35bb787e755d7f9343e18e41 │ │ │ ├── b1219b72016074f7016f7f53f16ac65e74743167 │ │ │ ├── b15ccc495599bec2d70e0ff3aa8b1c20ebe6a857 │ │ │ ├── b17ba7635ddae8a54ec968c83b2ae5ea04e92a34 │ │ │ ├── b2966192532eaecd9b7b5fc374f5d0f3d7a44a1b │ │ │ ├── b357b23c338634aefb5b57d1c1c16e38a7a312d4 │ │ │ ├── b362679aad99fa34afa4ba27ce9ecb0ffa03ea9e │ │ │ ├── b434fdccf889e0d77a9d5692ee34dc2147a28d7f │ │ │ ├── b4869749fb834afbe2880320d6df5fa522126d5e │ │ │ ├── b51a60734da64be0e618bacbea2865a8a7dcd669 │ │ │ ├── b5ec4eda6ea1f1a8cbc53d26ef2935d9192f9ae7 │ │ │ ├── b6bb5293c03de4327b8dfb9d4b503b217e92b90c │ │ │ ├── b72c98167e6b2d7910ddb024c599281cb6b668b4 │ │ │ ├── b7471e724dfba20b71265eb8f8315ff5add6ccad │ │ │ ├── b80749b0ad483c4010e69909ae70a9d5c450120c │ │ │ ├── b849015605174c4e858690fb696964be52fdc429 │ │ │ ├── b858cb282617fb0956d960215c8e84d1ccf909c6 │ │ │ ├── b88df911ab6298f339cb3a5c9485d6688680a6a7 │ │ │ ├── b97c5032e9b451dab4f9229321eb66e1103ed281 │ │ │ ├── bb38767e3ae6accc9999bc9df1e8410dec0f1ae0 │ │ │ ├── bb589d0621e5472f470fa3425a234c74b1e202e8 │ │ │ ├── bd222aef2f5d2a134b202abedcd94433267a4ecb │ │ │ ├── bd6f533fbcfbf5f9755921f58424a23ea5a8e547 │ │ │ ├── bea99bad6644a572ae2b88e85b633be893f40161 │ │ │ ├── bf8b4530d8d246dd74ac53a13471bba17941dff7 │ │ │ ├── bf94a8942d41166d7a918cfd4a2bea3a8e558acc │ │ │ ├── c032adc1ff629c9b66f22749ad667e6beadf144b │ │ │ ├── c314f8c1fa13e1afa11c8716c7bce6dbf02d09aa │ │ │ ├── c346ef826ce668137d937df03f792da946fa029e │ │ │ ├── c36485e4e83e34ad1c2614969ee8941079a9b96b │ │ │ ├── c395a8749d8344707f39fe21b8d8ee305f650a16 │ │ │ ├── c3f21e3cce0dda1f9fdc3312d4a9498085348195 │ │ │ ├── c425a8fdb02518ae33c3a8443649a2d1c23a6998 │ │ │ ├── c4488af0c158e8c2832cb927cfb3ce534104cd1e │ │ │ ├── c4bbc81c5e4e355bb0518737686319c1f312521c │ │ │ ├── c5a56270c673ae22b41bf94d625daa90388c127e │ │ │ ├── c62d980ee57c3707d3eb51912138646787174c5d │ │ │ ├── c6c1b4ca3f1094a011684a81a09a7955e91e30e3 │ │ │ ├── c78ebd3c85a39a596d9f5cfd2b8d240bc1b9c125 │ │ │ ├── c8a0dffc0656a0f261ba81ab12800496b5f24dbe │ │ │ ├── c8bd35648e19d1d1db94000a86597c85080e66d1 │ │ │ ├── c8ceb1af5c8179deb449f2e080afbae592a5cefc │ │ │ ├── c93175c7811429253c8dced2d1310a4932943019 │ │ │ ├── ca3e49ab8b234f636c1dfaec06a6b07bdef56590 │ │ │ ├── ca73ab65568cd125c2d27a22bbd9e863c10b675d │ │ │ ├── cac40b3f566ca32e09221d5079f3e0194a1b4d98 │ │ │ ├── cb6682b6aec38bdd05377b0e98110033b9b314db │ │ │ ├── ccd5b80dc9bd371bcb6b2d218c725997e4073dea │ │ │ ├── cf849a762e186d4dfd7090919e20df1280251194 │ │ │ ├── cf8f3c323baf839f8ba163fedb77aa3e36b9eeb3 │ │ │ ├── d14fd5e026399bf28fec49eb4468fe0c2d36b760 │ │ │ ├── d15b9da5296c0e144a7fc1fb1770216630ca8507 │ │ │ ├── d1b5dea1e0e6bf3711c78da56b83bcd8a4f71201 │ │ │ ├── d24f3db0ff0936e95a1c54e6c45973859837ff2a │ │ │ ├── d3a2b4fdfbea3ee43829d069bcb028a5546f3d94 │ │ │ ├── d3ea2cafae39849166aa24695c19fee21887b454 │ │ │ ├── d3f10d833b42d485ae9d679a7d4e89b02a6e395d │ │ │ ├── d40c092ddab89b9d3f48694d609d20ddeecf6cbb │ │ │ ├── d4748037a1c586e996e0160a85182dab672726b5 │ │ │ ├── d5edf0bb3040a83900480720544ceb74da3db266 │ │ │ ├── d7ca77cd1f675f8b3755effffc00b40073b25329 │ │ │ ├── d806edb38517460d2d146df863df1012819c76d8 │ │ │ ├── d8072da619f219ccc993b090a17ea67cbc8f2ca4 │ │ │ ├── d8765e1e8a907e51451570c9bab8ec6d9b502d38 │ │ │ ├── dcd935ea068d2decb49f4105e323c43f0a45aea6 │ │ │ ├── df58248c414f342c81e056b40bee12d17a08bf61 │ │ │ ├── e0184adedf913b076626646d3f52c3b49c39ad6d │ │ │ ├── e17ff091c5ba42b0ba98635160206755ace4eceb │ │ │ ├── e230784e55fca09f77620d4159243836b4712d46 │ │ │ ├── e447bf6ef2b3387e23d16e891293132919de80b4 │ │ │ ├── e4ac13757b69a1c383e8a280e3de90b0578f145a │ │ │ ├── e662b9902fb4f30ec68b2d2a511666743227c495 │ │ │ ├── e6670b43892cef6995bb6865998e4d2169f57e04 │ │ │ ├── e67cb59b3168e12ea787b84372ab07560f8304d5 │ │ │ ├── e7064f0b80f61dbc65915311032d27baa569ae2a │ │ │ ├── e79114bec155f9033da333dce86409019d7bfc88 │ │ │ ├── e848cdc157c62cd7d4d58214e7780fe7c73714c4 │ │ │ ├── e951a82ef46ee767c41bb859f2a393660e5249ca │ │ │ ├── e9ee43e2da47ac1083771e9578e36bc19068123b │ │ │ ├── eb1390ac146171dee0fad4d6393721f2a512bfe3 │ │ │ ├── eb9919b13ba4195d22f8d0746389bc6fb0672143 │ │ │ ├── ec9a81e4cdf4ff0accd7dc68a81c4f505e571800 │ │ │ ├── ee9131310edc2eb14928946611fb22f143ef3735 │ │ │ ├── eebd8e0976a59117a707e3a062825e2efd5d57f4 │ │ │ ├── ef54ee157fa3074d78000bf9fe4421e37ceaa2be │ │ │ ├── efa42c6ae0259c758097eb060a4b112abc9621ee │ │ │ ├── efdd02477ba5da245453eb10fbf017c58578aac3 │ │ │ ├── efe43def97eb295fe99c3753f2d740d7b36df689 │ │ │ ├── f03cf81f2735705fa986bff3966da3bb3ab50086 │ │ │ ├── f05ce45a8cad76bdc70bfa22822ee25b5512a1a1 │ │ │ ├── f4a61a9b343b5887db9c7f6abe125c53b6d04f30 │ │ │ ├── f56424c18e2ba1049912e2d1e70526a68284b4de │ │ │ ├── f5cd31de8548ae136839ccafb8a9904977065152 │ │ │ ├── f5e74fb44e95b95f74f1a4dde18dd2354e939874 │ │ │ ├── f622a45e51b6a2699ad5b291cf4cd755eba41baf │ │ │ ├── f75b1bbb2b08943c29d686f3d65c4f70dfd6fee2 │ │ │ ├── f7c0f473e0b9f3961e7a6a3fe959a820d29fca2f │ │ │ ├── f85be444915cf688937828dcdd2a962376220890 │ │ │ ├── fac4bb6832f5c1eb3d500af48bcf7af8b47a9e21 │ │ │ ├── fb584624568cf14d792f9e61b27e8618745bb7fb │ │ │ ├── fbb5b1b132d7fa74f8a46ee0472d79eb4e08c15f │ │ │ ├── fbd27dbd2d03d4a96066f0bade47b73b5350e035 │ │ │ ├── fd45e8d6614e80a12a7a83095fa651b5951517ef │ │ │ ├── fe0fbcee48108789770892b76def3db7402e8f2c │ │ │ ├── feb99e5638964a3cbf021401c8aeb40c1a950c75 │ │ │ └── fff0fbe7e0c2939a42e1e1d448ac57101c7c9b2d │ │ │ └── string │ │ │ ├── 002c887e655420b82161cbf16828f50826483c93 │ │ │ ├── 005148b5f67f712eaa517467d291b02072cbdf49 │ │ │ ├── 00e87cd9bea05c78dbb3aff05f527658e0ce2bea │ │ │ ├── 010e85481fa86304d1d31397a7f8b242749e0fc3 │ │ │ ├── 015ca0d896bd084dca660563b44dfe1b50e69209 │ │ │ ├── 01a1d23249813af6302dfa89ad88889f8df46224 │ │ │ ├── 01a72cf95ff66892be90e012b6d381f026249579 │ │ │ ├── 01d2506a7deaed81be81a1e6ef3198b307060bd5 │ │ │ ├── 01df93a54737ba741e829249d9d9b94e15b9404f │ │ │ ├── 0203c1576da952418ef66e0d883a35dbf5fa6de5 │ │ │ ├── 023f4c83be160f409c8e7a57c24161c57c1e3124 │ │ │ ├── 024c42dd27c4d0e9c6b7cd96593133365201c71f │ │ │ ├── 0280ab18bdd5c331aac835d43ab3670aaa03d323 │ │ │ ├── 02de1ac001ef94bfc90d90b41f983304bddd97b9 │ │ │ ├── 02ea03fd5d5997b0fe9ddefc3541a3f16da3161d │ │ │ ├── 03215c9939a9f89eb1ade1093ea6e3e45324a74d │ │ │ ├── 040eeedb695bf048a7c35b371c32438a42e01d0e │ │ │ ├── 04301880784cfa904198a17af37a893676273b6f │ │ │ ├── 04a8a80b3b69654e30c5e314c86333cf5fa1c03b │ │ │ ├── 04d9350dcb7c5a33e25e9e3440dc90a789c4178c │ │ │ ├── 0501652d034c9999ad65fb7a3e3621a0811d56af │ │ │ ├── 0530768f057e67039486d33b2657d22ceeb6da5d │ │ │ ├── 0557f7ef419429c231d87fa5fe40be033ba9bc6c │ │ │ ├── 056a5405ec423042cda52a229196632d29d9ab90 │ │ │ ├── 05847784e1bdd3eda533e018fe04e9a50d713bc3 │ │ │ ├── 058e95b84ea32864271a24cffb285ad543054c9f │ │ │ ├── 059bc2413150b02fb5d65c60931fbc3f537d7e2c │ │ │ ├── 05f8d79a0d2c9378fa803b122f5a33832e7a2783 │ │ │ ├── 062ae43d9945d62aff71e5f23d28e772d6fcbe1a │ │ │ ├── 0630badc0ca13e40aae337e1dfd27cce1aa45883 │ │ │ ├── 063191630a0ee17eb0a6ccc7ef31441d1423ec78 │ │ │ ├── 06467c3989b767625c18ccfff14df2bedf7602f9 │ │ │ ├── 06a6ab44c69d63179d356bd5833f8b18bf1f2655 │ │ │ ├── 0706c31a539d0198fc880a933a006270ba19bce4 │ │ │ ├── 07a5f7b05b842701cab6fe26788cca690429005b │ │ │ ├── 081da520366ff8619cdea3ba99ceef513f070fff │ │ │ ├── 082c99a49268db2d83f8cbd6b17ccafbbc2e07d7 │ │ │ ├── 082ce49d794eb67118341921c654300903b2a026 │ │ │ ├── 08501b4dfff0780dc4e5265b17249d86b285e36d │ │ │ ├── 08534f33c201a45017b502e90a800f1b708ebcb3 │ │ │ ├── 09e0220dd0f58a90b4c26d5168fc07db823bc34b │ │ │ ├── 0a20de535db7bc9de07a1b2e8069db0fa5c8aa36 │ │ │ ├── 0a323f4b1ce55e0ce0d21d93cbb8ca5dd31b9113 │ │ │ ├── 0a3488bd1edf8cd59420f645453b1d2e300567fb │ │ │ ├── 0aada136bbd0d868d9d0c4c9c1f8c9bb6e45ce40 │ │ │ ├── 0abaa57797f1a2b357a46191e3c3a6ebc6d37337 │ │ │ ├── 0b261a3083c385bc00a44db4c6d4d4b2deade0d1 │ │ │ ├── 0b51ad2856b5a65403a44570999adf92075a88a3 │ │ │ ├── 0be098ef7e47b4ec42ef0179ca3de6c520d00a7d │ │ │ ├── 0bf23944ac8704800a18dbee70e55c37cba1cc0e │ │ │ ├── 0c2f57328011eb61a06880b81ca3fd6cf90b8b6c │ │ │ ├── 0c5f103d4bd1617cd870f94dc9526f3d3816f0ec │ │ │ ├── 0c6a0b4a25d63873b350685733f07b53b9052412 │ │ │ ├── 0c73f0caad13a0c83ad6a3e2503d4edc938c2bc4 │ │ │ ├── 0cd6d6bed21e122787c91345bb16589bd4b922d8 │ │ │ ├── 0d64a71a307358b7e1a36c8f1be9991ca439b959 │ │ │ ├── 0e199c9becc579984daf0602c744a2e2eda08f9f │ │ │ ├── 0e1a56780012ef811a6ba205a82b35317f5201c9 │ │ │ ├── 0ec0c02a1c6098fe4be807887f34ca6bc4ec80af │ │ │ ├── 0ed6da2aadb1a97ddb606b68a5b56bd292519ead │ │ │ ├── 0f29f160d24c2dece74ceaa5c387250dd3ac1a8e │ │ │ ├── 0f5228d38a35ddad2b33033bf19f5b793aa0bf80 │ │ │ ├── 10d358b116d8bb9df2dd71384577b136191d05a2 │ │ │ ├── 12f460db703178e545508367de6ebe2d747e19d5 │ │ │ ├── 13801f9cac171505ecbacd480b1d077ee2dac35b │ │ │ ├── 13aa805ab0f2270408109cb9a342c78bd6bbda34 │ │ │ ├── 141078ed2b25278ef96ae6673f47b9574e3ef2aa │ │ │ ├── 14350055a767acfa807e298658993d4782fe6775 │ │ │ ├── 14aa72e436036faa60bb4da8c139a85bf5a6b149 │ │ │ ├── 14c5b2aafbff8ede31833cfcab73678341c2ff5c │ │ │ ├── 14d7954692fe30a68b5e049ea83f1a414cb3ac49 │ │ │ ├── 152265812a84fca9a9e1c36c9189081fa4447455 │ │ │ ├── 156cb4e10ddedcbf0847b26dad6149bb6d4a2985 │ │ │ ├── 15cb06f91b3e4944d23f8ebd55395ccfc2211e6c │ │ │ ├── 15e584f863cb02973fb525583e9ef778f1ad067d │ │ │ ├── 160077dbcb1501c65a5a23a73edd025553bbccf2 │ │ │ ├── 160e58f2a9ed8281c0428f7da9383206f3aaf77f │ │ │ ├── 167deea9712f46d40057d0f33b906363e1e41bfe │ │ │ ├── 169aa0778fb277fbeed2edb2725c303dba0608af │ │ │ ├── 16b4cb5ab7cea3b4d563deb4d193b7551582c533 │ │ │ ├── 174af8a831886fd90e0cee8a7dddda3c50663b36 │ │ │ ├── 17b9a18446c578c8bdfaef505e99112ec9767ae7 │ │ │ ├── 17e05cadcaaa45d448753f5a5ab299b50389e043 │ │ │ ├── 1883c797f3d3715a4cfd9195c923b95ff77ca04a │ │ │ ├── 18cc84aad7953b6cb612d023b31519512355b672 │ │ │ ├── 191ddc290ea2926d99a705bf0e31dd9026ebf577 │ │ │ ├── 192e7c75996949a233cbabcadb1092784dfad2db │ │ │ ├── 195bb3dd91d7285dad8a048974007f49ac3d5e63 │ │ │ ├── 1a9a0a1dd97949d5e93b449759d959202b943d1f │ │ │ ├── 1b12413b26b4b7ff8d18145cb15200977d340224 │ │ │ ├── 1b15df51f38d77544f26adf60499636746a99887 │ │ │ ├── 1b509dd93fa24c5a7ad7e1d20d12324786585700 │ │ │ ├── 1bad72ee5d0a9f27c6f40fcf2e8b21f2d3b14817 │ │ │ ├── 1bd0c4b2023217281f20f1fa1efe9974b6e68b5d │ │ │ ├── 1c45a30ec69586d09458db747ac12b9794366086 │ │ │ ├── 1cda906e66fd050bda7a6aaf9307a6ccb8902fd4 │ │ │ ├── 1d111c6600154f3619ed762b2ae3703a5b6c7908 │ │ │ ├── 1d71039c7522e476f9d6033b8532e26afaa459d1 │ │ │ ├── 1da3cf367edbf56c4c00630489ba9bde0a55ee4d │ │ │ ├── 1dd37926380e4e5ed3f744f2a5178305f56dea2c │ │ │ ├── 1dd56d38e1b9bd1eb396a6fd8b71d727b8bec12d │ │ │ ├── 1de2c674b0e2b6ed09853bee851762daf72b013b │ │ │ ├── 1e9a2ea28fbd54fa28e89005ae4c588a82547520 │ │ │ ├── 1f0c24b7ff332bdd63eeed0fd57d122eabce272d │ │ │ ├── 1f2ef8317cd8d78260d4fc39ee3ba1554e9085f2 │ │ │ ├── 1f5969c1b9c894ca2131e36aedebacc543ba8981 │ │ │ ├── 1fd3537dc53b6a61fad3922081a429980a0350ce │ │ │ ├── 2067edd4226862f2102d76d08a3ec0977520452d │ │ │ ├── 209f1fe8ef118e7fcde1eeea8f2f2dbaa7e413f7 │ │ │ ├── 2133e54a8a493a34543f123a12efba18ee28067b │ │ │ ├── 215a59c08a019d8a6563000a004a1d62f6523779 │ │ │ ├── 2188eec598a45f75821896406b2b1dfffb8d84ee │ │ │ ├── 21d04e98864510bc0f4d22702524e0ac7b4ed961 │ │ │ ├── 21d3aed527960b0301be650ca1d0970b7a137caf │ │ │ ├── 225712d0f5a28dcbf9411aaa36281bc61a2354d6 │ │ │ ├── 22be8ff853f7d152e56afe14a5b9cd3130bdcc22 │ │ │ ├── 237eee94ff97b1f69d99e245530b1ef00c7323ec │ │ │ ├── 23c452f83c37a40a3e06961a710589b0ea7fba39 │ │ │ ├── 24a52f83ba1da1bb0ceac345a511ec8c5f71a443 │ │ │ ├── 24ec5a1ae7681ee6c44567fee1e459b2c71e718f │ │ │ ├── 2527f3f3956d86e3836e81b196d21d5c43c8d4e5 │ │ │ ├── 254db0dd7025d88e215050feb3b1ff72480e4337 │ │ │ ├── 266074136e9156b458efa7fc8d7b26548ddcb5ba │ │ │ ├── 2679192e501c939a6c74d6cbd19cecfacb2549de │ │ │ ├── 267e0747409a85dc757084c5f5b21316cc7e9778 │ │ │ ├── 26dd9bf08d0d1eaebc883670cad382f9ffdeff43 │ │ │ ├── 26fe1614cee5473bc93435bd961ed6449dd9a103 │ │ │ ├── 27524f15da3667efb9f801fbea8d534b17b2fe45 │ │ │ ├── 276f926ff7db50cea50ae30ace803803188261a1 │ │ │ ├── 2789e4db468325aa33fb907721807a2f56b97fb1 │ │ │ ├── 27f225bea710b29c93aba1a3878411ca0e7c01e4 │ │ │ ├── 2846647be142e3a351bfd552487fb1a1056b309e │ │ │ ├── 28968f4f71fb991bd22a763f1c662741e992403b │ │ │ ├── 290dc3b8f09b589af0e947f105b2e72f20da395c │ │ │ ├── 2962cf23f50949abfabff222fc008dd3ebdb5e6c │ │ │ ├── 29cc1d2091c702fa2b4000a2e86a64194c1131a1 │ │ │ ├── 29f7b8b4e9fa5e6954143b34a28d54c92ef734c5 │ │ │ ├── 2a43d7a2e122cec89addb979d45854f9066df538 │ │ │ ├── 2a64ac16a7c1ae4d797e58d27da5502eee627ea3 │ │ │ ├── 2add48e101f9e921eac4892ef88dd1f50ffa2f16 │ │ │ ├── 2b95f307e0f18c3d48f6a9a953ba4a9facc51986 │ │ │ ├── 2c15ee7ab17767cd42fcba90510b820e26e675cc │ │ │ ├── 2c187c639978924fe5e04a3ebd7a12e862df6354 │ │ │ ├── 2c2c2fe60313c788d1f369d809927c51ad0a4022 │ │ │ ├── 2c44258e9df1c6170041522157c11af9775de5a9 │ │ │ ├── 2cc2f0d4bf97597335d84e7b1467ef4c1dbe2cb9 │ │ │ ├── 2cf5a02ee2c58d6fb89a7b9c3d6c719e68a52b9e │ │ │ ├── 2db938be568072a7803c8f38a82aa2120142845c │ │ │ ├── 2e080dee8828bbc569c03b67dda83f1cc13afba4 │ │ │ ├── 2e1785d4ecdb78509d4fbd62716415886db5e690 │ │ │ ├── 2e38c7a3cdad3db89d321464fa1cc0e671073cc9 │ │ │ ├── 2e883bebc308221c2c95ade643e5ade2e312bf35 │ │ │ ├── 2ed718b4b758acdce521abfa2dee7e54e1bf336d │ │ │ ├── 2fbae6959970f337799fc4eefc8e7c63cd2a58b0 │ │ │ ├── 3091ac9b5620fb857f33bf118ea24515ec2d6f5f │ │ │ ├── 31a9957ef128e2cba9bfd01503ba87ddcd9f187b │ │ │ ├── 31c6981188a0794a5ba397f96d0385625c6f7de7 │ │ │ ├── 31e32f5e6e7dced2fdf696c3eaccd5a6756c2123 │ │ │ ├── 31f7156f25f7a3f93df3950623f148592e19d2c6 │ │ │ ├── 326129304feef80aeba628b143da31290570d1a5 │ │ │ ├── 32f4f2ff65cdd4130a3e518823f13bc8ce32a1d2 │ │ │ ├── 32fba0e3e95a5b2cd5a35cdff3b8be5d5e8cf956 │ │ │ ├── 33118d1364a9f36f09487571d651b2163799a438 │ │ │ ├── 3343a4998e3cc2971eba02244ed339844140b8da │ │ │ ├── 3373f848262569c7b4c37de0823f3eeac96b0b1d │ │ │ ├── 33878f15e015e4d380c73816db799b69306704ce │ │ │ ├── 3445de81f1e801f125ca17f38bd7028fe14e4cbc │ │ │ ├── 344b6d529520b424b256fb2b45ce8f2740f8c2aa │ │ │ ├── 34ad962f3d055e2cd14e2ed8bca10b3b102bf5f0 │ │ │ ├── 357dd78948afa0add9a3e0cf34be5fb8f672d1ad │ │ │ ├── 3595fbe97865ded2ce748d002aaedd047a93c3fb │ │ │ ├── 35fcf73d1290f8cbd5c37d329add5094f51aab07 │ │ │ ├── 3693b7cd854904bf3b8f9dcd69f95a308eddc836 │ │ │ ├── 36cc229503e1422dfbc8c7a555e607a8057d403d │ │ │ ├── 36e20622c7af723670b91e4b8ab2e1095069ca6c │ │ │ ├── 3754c95735f8fed63c033dc5cae97e5bb2716062 │ │ │ ├── 380466aa7c8e61f733d0489c0208163ecaff44cb │ │ │ ├── 381ca0e2a2ac15a0bcb086f80fd6d3b1ecaa1fba │ │ │ ├── 388d6a24a88854aca4deef29763c9277af8fc3a5 │ │ │ ├── 38922cc3be559df8cd3cbd0944de0570e5a6d0d6 │ │ │ ├── 38ae7cf0a9fcd8a097507251bb3b10716b240fa5 │ │ │ ├── 38e499484a9687706b4d57822d82294ca9103748 │ │ │ ├── 38ff9f01dde1f570ea00882daa88d4f4c271822e │ │ │ ├── 39540b1aa7b67b39442c10833be2d702dccf158a │ │ │ ├── 39f4028d2f435c799decbbec5218e1d1a33e1cb3 │ │ │ ├── 3a03ca96e64d5bcde0ea494b9df0c7f63353fad1 │ │ │ ├── 3a6a4214cc393c89ad41eb7d0087f0b89618bc99 │ │ │ ├── 3aa31acc73652f1d71f67e256704ea29a2a40c9e │ │ │ ├── 3ace96529d512338de8aaf27f2da6c3b8af97c23 │ │ │ ├── 3ae30a7039b3909957358b9f006e86f96f61585b │ │ │ ├── 3af38e75eb8e5dffdcedfef18fa1944f3bf62807 │ │ │ ├── 3b8126a12de471cbe9f7489825f6826c73dd750c │ │ │ ├── 3ba741110081ed8e0a6935f5f5fd249211f5838e │ │ │ ├── 3c178cc55f6e087553ea9a159bbe36bca6569e5e │ │ │ ├── 3c6ac40c56d9ef8f3e5da85437c5a1a133a0ff86 │ │ │ ├── 3ca39156ad97cd38e82215c0c506e8616d578dc8 │ │ │ ├── 3cc09aff4b23d2ee99b4d7e4bd5840430b1c5bd2 │ │ │ ├── 3d9ede29661dd66a2fd60d6724ff2a3a5fe4d018 │ │ │ ├── 3da9586ed41ca19f5448f67e4817621dda066f74 │ │ │ ├── 3dc6e2ebbb6d8e45eaaf88de7592d86de892a47f │ │ │ ├── 3e14a47d95a9206feb1a79c7d77ab4e43a0d2409 │ │ │ ├── 3e597dd3113fb87ce721299dba689a02d6ede632 │ │ │ ├── 3e5bd47857f40d66fff8979c9b8c1a9817d120f2 │ │ │ ├── 3e5e0513c4c16d9f3ca9266c49ed7ccf88677013 │ │ │ ├── 3e613e43044647c78439ab7137fb51380a6b4d15 │ │ │ ├── 3e7a49edf420f4c98ac839248f64c9c0aa76668d │ │ │ ├── 3e8e44a2aee64bfd0bf91409e6999a5330487de4 │ │ │ ├── 3e93e6ff286fd340effbfb328b1e7ff46602dc73 │ │ │ ├── 3f093516853fdd571472c999160589786dcd7dbb │ │ │ ├── 40cf553747829534d839fc09eb5642e288df76ff │ │ │ ├── 41d766f872b34f8e164da958d8fde4570034ddaa │ │ │ ├── 41ea99e4023766a9589e42c5fba6edeb767683e3 │ │ │ ├── 42688956088a503a719a93378fa33200fc050874 │ │ │ ├── 4287af94004dfdd8e88a45c48609bcd72ad01653 │ │ │ ├── 430b81c3253b5a2b5436649e61d8e5a201419288 │ │ │ ├── 4320089a04af5d9afdcf09c40886fd6c1489a2bb │ │ │ ├── 43390493fd871f85c3ba0abc635443c9a917a449 │ │ │ ├── 4350d8006bf4af772815b90a5e9ba2fe832f9351 │ │ │ ├── 4354a815b67b724550a57670f7068d6806472cef │ │ │ ├── 455762072491c2308a0f8f3af861fbc9f601384f │ │ │ ├── 4565381c857b7ffd833dfc6f46aa94dc15a071fd │ │ │ ├── 4679799a79bd44145156a99742c36410dcb31a59 │ │ │ ├── 46919dbae814d7d4bc2c710f0c36549ba1153a63 │ │ │ ├── 46c1f3ced1a04a70ce9be258090be280f722f132 │ │ │ ├── 470d44337bd8b48b154d522217c262e192b544bb │ │ │ ├── 4763f90433491046a8a18f8c4daa0c23ccf07222 │ │ │ ├── 47ce4d3ced84384a09cb6e3a678d985ac28e8637 │ │ │ ├── 4843cd8ad5f948ed1ad72355d1f0f608755cdfef │ │ │ ├── 48d4b0bee38a3236666b564100ded7f9d67ff9d6 │ │ │ ├── 4919dcb3861a943c4263ad51eafea1bc2c02fe8d │ │ │ ├── 4958487457d366e1121b42ce68e8a345beabd5c5 │ │ │ ├── 49594bfbf3a97620aa5dea68d4440b39b6bede04 │ │ │ ├── 499814afec76c899ba6a8d268773b3640d722993 │ │ │ ├── 4a67c02130b7906078008a3c6f724cfd793444d8 │ │ │ ├── 4a93859bf459f1a09409506a5a36553d8d895f8f │ │ │ ├── 4aa8265ab52e57854de30fae6bccd38d0ea208fd │ │ │ ├── 4ab5d2247ff4a834a03c29663b913234c16a28c2 │ │ │ ├── 4ab6bf2039cb7d2ca35cba0298bfc9376f951edb │ │ │ ├── 4b444901c8daf56e5325520f0b5dea1e9dd81950 │ │ │ ├── 4b598f9601927a3420002ed63e4cd8180042d2eb │ │ │ ├── 4b6bfb55ac4c5e79e7dd5fad1d29b36c652f1204 │ │ │ ├── 4bca0575acb8232439e3f68ed171b625830392bb │ │ │ ├── 4c2bae31f1aedeae0b11556fd7ec87623b20ce70 │ │ │ ├── 4c4812531a55c7263c15857037575a9d21642a95 │ │ │ ├── 4c92b0b00721116b1722542befc710cb58fe8a6e │ │ │ ├── 4d46e708f1a961abb7b53fd73c71a13460ec24a2 │ │ │ ├── 4d8c2a4934ca40474db6fac30f10ec05e5414422 │ │ │ ├── 4db5f6a03e6cccbfbaf8c450259554bf2c045f5e │ │ │ ├── 4dc186424da0d0de5d3f3349c4e64479e846f11b │ │ │ ├── 4e4761be6ceb37875786b328df2ada33c00d5c63 │ │ │ ├── 4ebcab41aa7d4063e89de0bdeb9c60459b0a7247 │ │ │ ├── 4fa6117de4531f8ee0f775c881127bbb6c5505c1 │ │ │ ├── 502cff25e71d611ae2e138ff288fa9ca05fc6a81 │ │ │ ├── 507b1a836d906f44e6e82104dfaed1a373d918c9 │ │ │ ├── 50b0512544e8c325d5e43a92d6efebb65a6c22c5 │ │ │ ├── 50b55c9b79d90644a7f8160d899aea0c3a7fe578 │ │ │ ├── 51190892d23e4c1ef6ffec26a31c72c52fe1a289 │ │ │ ├── 513a4352d4b5c1ca031ef7eeae94242b0853657d │ │ │ ├── 51879d4a944a52e141ce4745fe6725365cbabc6f │ │ │ ├── 51b4df2d43854dd81faf3ddd5b8e68578cb9dc5a │ │ │ ├── 51ddaece6569e3be83131628745ea15be8f9250e │ │ │ ├── 51fff974449442ad2259e678bb6a9fa9a9a67ba3 │ │ │ ├── 522dd775b65587fb8e3d71c578028cd25f27c41f │ │ │ ├── 524edfe8b73f93f0725f2b33df1974ce37537206 │ │ │ ├── 52657c968ffb234be5db2665e509ea1e39aca8c4 │ │ │ ├── 52dc0b38a552a50dda72ed6c1f99f8cb16d716ea │ │ │ ├── 52f5dd3fbf18610540f2687c9f9a8a2672089587 │ │ │ ├── 535c2911ba3fefe272c2dff26740707805ec4ca7 │ │ │ ├── 5368997601a965f3da89fa52e4459c302eb4098e │ │ │ ├── 5408d881f88031bcd6a4a22ebd3597c9873eb4fa │ │ │ ├── 540e6b3936b3aae12734f64dfd188ab87331edcb │ │ │ ├── 545e3309a34f7b912d5ada7511b41729855b4354 │ │ │ ├── 5501e490177b69d61099cc8f1439b91320572584 │ │ │ ├── 55095ec5956145c4a0bd8323a724d92500d86933 │ │ │ ├── 55277a19ac2979949296e0dfdd45624597929261 │ │ │ ├── 55ec154b59505115b2bdad99b3f70e1380179019 │ │ │ ├── 562c0ee37f4d67795a21dff839c680f9f23231cf │ │ │ ├── 56357a096733c2e7118487af02597afbf06e0a64 │ │ │ ├── 56a030dfabe9af6ff425d783579f96694292151d │ │ │ ├── 572f266449814ca054308c59bcc0ef467d775e99 │ │ │ ├── 576b626760a60894640dbcb48fc5ce28f02c9a80 │ │ │ ├── 57e66f8001b4fe8eb402ab563ee38f975bc42fee │ │ │ ├── 5825808e45e5d97adb411e62d7c83c6007957d7e │ │ │ ├── 583f2e8e9b21399c9661f737ccfc9aeff03d1f75 │ │ │ ├── 584a0d5114ae3a3762cf0371fd8f3b38a03fb22c │ │ │ ├── 58a358246df6f928f076318624b89963355376b2 │ │ │ ├── 58f3091588e0e0d261caffbb890a74d8963b17fd │ │ │ ├── 592e04a0a17cb611be9ad93031b3bf31132814d3 │ │ │ ├── 593c147f06a4e5a97d1fd02dc32bfedffc6a11a1 │ │ │ ├── 59ab3796bdf1021cf5d1d1eda84a7409a26109e0 │ │ │ ├── 59f083f478e6c869635831bbcfd5e46a1a2b2faa │ │ │ ├── 5a277ae16a5437545ebf309e0dd279404e6bedb4 │ │ │ ├── 5aa061470abc52d78dd7a0f3ace6b61747249044 │ │ │ ├── 5ac68a2040bd61870cba2710dac4ea17ca1e75c3 │ │ │ ├── 5ae7789e3dc1d5785a1b5642b913f07a2aff50a1 │ │ │ ├── 5af8418ccea9f266e7a753407e8cc73d56aebff5 │ │ │ ├── 5b19d6a9a600629f3e94bb10c32ed3b8f7be7fe3 │ │ │ ├── 5b5dd21d5c9a2cd09cbe9ddf3872a93243ff2bfa │ │ │ ├── 5b7db3acb4f0e5a08ee316177ab86de5fd708192 │ │ │ ├── 5bc1b11034bb3163ff2467cc879b5c4e937ebfe9 │ │ │ ├── 5c63211128d58842b7bf53a0a088f565c97b9059 │ │ │ ├── 5c89af7c373491d6589c357c6685d1258e126992 │ │ │ ├── 5c8dbd58a0c71c38b5771baef154225c1a1d41c0 │ │ │ ├── 5caffb175a3d605dd824284c0ace60bf7c1570c8 │ │ │ ├── 5ccce68d94000b6b2e278f704ab85bbc706699f8 │ │ │ ├── 5d25e85e5ec3e6cd0d47aa604eed3a0934f381ec │ │ │ ├── 5d3be24791784f386d829bd214d561d3e6214e5a │ │ │ ├── 5d3cf6bfec1b5a9f34351dadb5c9d4d6632b9a51 │ │ │ ├── 5db6546fd16c451986508dde93ba78500aa61828 │ │ │ ├── 5de692fd56d7b7f607fbf13fb83688db3435997a │ │ │ ├── 5de999f040dd3ff191f6de19333ee70ed0b8baa4 │ │ │ ├── 5e1c1be3f1dff6d5c90a2bf6cd37b8f8dad9d2af │ │ │ ├── 5e8b86bf33134732b771d4e1eb4454c29b54e7cb │ │ │ ├── 5eb8b43de10b1ec8a5e298243043df38bdf35a2d │ │ │ ├── 5ec98c191653b4cb6060250e614a3f8a54bbf4ba │ │ │ ├── 5eee05b43876741098e7bd458c3522ccaf3b0c0c │ │ │ ├── 5ef43f9401fc1dbb4565a73fdf8379e9084e7aa2 │ │ │ ├── 5f6810375c99d0b1c7f8c691e3794f9bde74a15f │ │ │ ├── 5f9d4d17cf9e744f4ef482f2d3f8f4e3a24811b6 │ │ │ ├── 60e975366ba19a2c44778d9d6e42720071d41d5c │ │ │ ├── 611f2814a32543338f8f077294e41368cfb99cf4 │ │ │ ├── 61447c4f9574fee8dd7ff8ef79bb977cb98d284f │ │ │ ├── 61ad485444db431edb747d896ad58f6b2420cf99 │ │ │ ├── 61f7f4518d666cfa90a471afb43abbb969760ffd │ │ │ ├── 6224640d36a3f8e0db884fc57a5172866e812f54 │ │ │ ├── 622848524cf11750f23640ce4f946234361808b3 │ │ │ ├── 6248d6f07d7a5ec16098eb185ff115c9c2ddeec4 │ │ │ ├── 624c62525e32e3bb1dc904d9521abb1dc6764b35 │ │ │ ├── 6282965dfc6f303ce8c5910b79548cdabac5b2b4 │ │ │ ├── 6358cf9b2a060e82372d2b68c8583305ac74aec3 │ │ │ ├── 63e0b53aa600ff44878c7ea7718dd18f56a8cfe2 │ │ │ ├── 640facb01d58e22211f43ffae81204a2491fed7d │ │ │ ├── 642e1aa7be6a8f27f6e182100e62caf4ce7cd195 │ │ │ ├── 6475e7fd03931114e4590d64a35367d58bb03030 │ │ │ ├── 64f5792b4013e938e2659db1417551c897390ad1 │ │ │ ├── 65931b46fb50d890ac768b8e6d518e0c9193d3cb │ │ │ ├── 65da59fc805fc995b643f7490247a9327ccd387e │ │ │ ├── 66084be3c11a4eaf4e8bfbbd4f15a715f3ff0c58 │ │ │ ├── 667a2849c681c14c4800853c09ea4fb74c4a7304 │ │ │ ├── 669a5c78afbe0cbbbdf75a8ce49cd4510cc580ac │ │ │ ├── 66e164f1869ea7e7b20042e0530767f7909085b6 │ │ │ ├── 6815305f16709d59a4dcb3e57d544cc4ed3f5e4c │ │ │ ├── 68256a60903fed1d8d5665e900a147055094b185 │ │ │ ├── 6837033c519147b50dc7bd3c59759aa16363eb9d │ │ │ ├── 68444cbe1068053714e8500072fa9d3ea73c28fb │ │ │ ├── 6867c4d8a658207fde324455d1b4fee1db1ef89c │ │ │ ├── 68b129209eeef2e76354ea0e25fdd175a75314cf │ │ │ ├── 691487e5231cb7ae57058260aa9e7a57a5b9d517 │ │ │ ├── 692a1e0152d7d083a05851aef2715914a0dc252a │ │ │ ├── 6967a4c1ebcc29ce68abe7cfa64852d1937d5ee7 │ │ │ ├── 6976f8d2d7d8ea11a9927109c59db7d250e65bf3 │ │ │ ├── 69a3b085d7e6edf41cab25993ae7daf9d1dc5570 │ │ │ ├── 69af4e28bfa6dc3b09bd220f1e7f51ac4329e61e │ │ │ ├── 69bfdc9c31770e0746da877190d4dc2450f478cd │ │ │ ├── 69e1077e7cc37e4d121ff525e5eff2037f216d37 │ │ │ ├── 69fd89e1cc137672dc6e08808a584f0ac017487a │ │ │ ├── 6a6e684eb1a12c7d24a656445c83ae197e5cdcca │ │ │ ├── 6bdf06d48930e539d1df7515209bc92028fd5300 │ │ │ ├── 6c4ff4c8d0faaded9d6dc59082c8b8079168b111 │ │ │ ├── 6c75eb7d4123fab1c46ab96bc373568ae25f6273 │ │ │ ├── 6cbd82b8a10c504c4cd3b5dd1b899ac02d7e2b4c │ │ │ ├── 6ce7d1b542f4604b28812dd5f16963a69176a7d9 │ │ │ ├── 6cf45778df554e3e8747c89a12c9077cea230eb3 │ │ │ ├── 6cf98323b23c1e86f40f4762130e051c01dde7db │ │ │ ├── 6d4d10b68d1a48471237e73b09fc7050f9de8263 │ │ │ ├── 6d62473044922b21210325427b319c39737a7b0f │ │ │ ├── 6d690fc5b0c5d59a92cb2471cdfcda93b078a513 │ │ │ ├── 6ea441785c8f779bdead82f59574c2d59e459b80 │ │ │ ├── 6ec122d010742ed26ba32b7fe59ebfde8aba1f43 │ │ │ ├── 6ec1ffe275c5f1010bb0440ad25c0c8e169c19db │ │ │ ├── 6ed4d243dbe6e584f0fba7fcdac178f2544f660d │ │ │ ├── 6f5d153330e4407a0ce60773bfa24a22282e1e25 │ │ │ ├── 6fcb570014c886f7376a1aa7083e1d6fce43918f │ │ │ ├── 6fd80bc3d72da6b6261b2abeb5ae644203f75c68 │ │ │ ├── 6fe967e1f3b36b0c0e8e50aca679cd110c773697 │ │ │ ├── 6fec0850050e689a75fd136b82ea0d0197f027c2 │ │ │ ├── 6fffb7f6f47a7e70e31c7cd40acb0993101f3d5f │ │ │ ├── 706cd6243cd30b70bbfd9394e274740fbb544dec │ │ │ ├── 70ae7508a783d200064fb5bd89a0d4fc7f2c8706 │ │ │ ├── 70cd89dd09b138ab26cc8d1f5ff95fafb10a113e │ │ │ ├── 70db4e367b3f76ad54ef6967250efdb2114105ba │ │ │ ├── 71040be94a2e5aa8315415d6780dc0608c28157c │ │ │ ├── 71ca2386f0ac637e23891bab7145901385cedc48 │ │ │ ├── 74066d69f0706b7e161fafe26c4bb28db8ca1943 │ │ │ ├── 74d25d48b98bd5d63f2d4aa60a10f758c74d4d61 │ │ │ ├── 75841b7942b3c61d6e189b7156ae660bacc2a156 │ │ │ ├── 75ad82e8aa97461d5d1b4c2683849cfc2cf18570 │ │ │ ├── 75ae32c17b7a4ede45c7915fc193492776e5b2be │ │ │ ├── 75c3218e2a4a6208c11bb31c7d6e9a1445321a0d │ │ │ ├── 75e8a84cbd19dfed28768199654f85b01f303cbb │ │ │ ├── 760d77543632d2fe9dd23fa1f6e7568be5de92e0 │ │ │ ├── 761a2c983b917fefc02b6da9509038ec45c64af9 │ │ │ ├── 7634b73399ce03f3a7ce9656b54976173ed8191b │ │ │ ├── 7637796e24a301704daa6c4fbec75b40994a1040 │ │ │ ├── 766d70865c623075de90711dceee63f18438b68d │ │ │ ├── 773baeb77b0eabdef5fc33208de302aae832982c │ │ │ ├── 773d6a1990bfe3e2e8be0309f134d78a141f9590 │ │ │ ├── 776a5a29d600a1614429693343e30c49c08aa670 │ │ │ ├── 77c2a01619f83fe7828dcee248d29cf6452b3dee │ │ │ ├── 77e5dabe96c34391697d5e91cb12f170e4a57bd1 │ │ │ ├── 78bd655e6357e71f5c9b450f758ea4bf45fe6c56 │ │ │ ├── 79be6f9f020ac782ac3cabe1d2be73f40bdee1e4 │ │ │ ├── 79eed02f6306d04d40efb1938fcd338aed9d9d0a │ │ │ ├── 7a1ee81ae9a34832c7528013e8cb195ac139f13d │ │ │ ├── 7a4c2a0280094c3347b402657792d0d35666cace │ │ │ ├── 7a71f1e585d66eb90263cbff508995071b4c80e4 │ │ │ ├── 7ab950539708257ff1b96d31bc81a4fe86f2a1bf │ │ │ ├── 7b0c3c8dd45d4ddc70e6eaeff818f8264b91147a │ │ │ ├── 7b233dbec64c66a6f82767a0dc7703a83de62e78 │ │ │ ├── 7b9c22c7c8740f5b6ff0595800cab142fe94bfb1 │ │ │ ├── 7c1008d81bef16ff3a691e27e931e77baf57f116 │ │ │ ├── 7c357c28fe1e9a6db5a8611bf8b2cb8c86b91377 │ │ │ ├── 7c5af88979af13fb10f8c0f5de3b8c5c6a6f0d5a │ │ │ ├── 7cc76a9e64113c9c63dce6730808ab6d0e3af0e0 │ │ │ ├── 7ccc1f13c7203c2074e064e7f283b7fba4d2adaa │ │ │ ├── 7d681c0d3fe1a03cafbd69adb26ff22563f058cb │ │ │ ├── 7d97c70446f766db07ed8445b7e0890e0cb7e69a │ │ │ ├── 7d9ad4471f416b2fe74cbfd9758aebae3bced463 │ │ │ ├── 7ea65158ba7af82059fed19b5a3c41311fbccd0e │ │ │ ├── 7f6c7b46b06c01bee2dbeee1682337d8d705c3ca │ │ │ ├── 7f7e3c79624e0a7de8a4ee57f29fab92a48ca48a │ │ │ ├── 80bafdf7acd715f204ce08548073b440e81675f8 │ │ │ ├── 814ee6bd48d87014728a752b342f010bffe55872 │ │ │ ├── 817d2a071a67f4233b7e7c92e6327b72ea071d27 │ │ │ ├── 8201025f2874566a2e0c2bbe7801e0919a4ba38a │ │ │ ├── 8265d7463e2276df108a55785ab4e7d495fda389 │ │ │ ├── 829a78e2d5ead0105aad06bd348bc6f670f6fd89 │ │ │ ├── 829f0f4054c831b4684c52c0687293fcd0a25051 │ │ │ ├── 82a7eb32b5bad4384d64b32951bb3db84278b263 │ │ │ ├── 82c23f5b35e69a8f0afa51cc3d9ba9d2c7ac3a27 │ │ │ ├── 82c30d3b2c2e999a3725856f5ca11497c1c94ec8 │ │ │ ├── 82e91cb60388d328999d06e5a8962eed52a5ff0e │ │ │ ├── 82ff4d10e8cfe8e9cf1c464776769e345815b005 │ │ │ ├── 838e2a270ce248c0c3b6528172ff89e5c9695163 │ │ │ ├── 83dfb92dbb712a5f1c2908eadb222a86c3ddfebc │ │ │ ├── 842c15304e0a316587e1c2399815514cdea10e41 │ │ │ ├── 84ad3eeb41d943cfd33a35c2923d82b30830da14 │ │ │ ├── 855a494fe1c6738537ce5b6c710eb04f9abe8855 │ │ │ ├── 864ace7e6197aa11bd8564cc18a3dbbcd5b70a2f │ │ │ ├── 869263f01c773b00bab02995426e50fc00a62ce7 │ │ │ ├── 875f9a5631618e124b670d3c68f79c916d2a0646 │ │ │ ├── 87b1183600ad4a622284509127b75df2f18f2af2 │ │ │ ├── 882784d0295abc22541d7e9be5b73bd46aa4adde │ │ │ ├── 88c9c1004a183a4570f4ae8318ff8a131be94eba │ │ │ ├── 89792e6e5d0b97aeb9ba8cbdc2dd11a94af21ee8 │ │ │ ├── 8a2d95934ef34c139451792ac18ab05f16a0bcd6 │ │ │ ├── 8a7df359c0cd39773ca645945daff056076d76a9 │ │ │ ├── 8ab875dcdebfb026677a833f6df0fc193d697e66 │ │ │ ├── 8b149c04a8d6d440582e35b51ee7d34ccdb7ace5 │ │ │ ├── 8b65fd201935255ec9c18f25486b1e78bc2d1bc1 │ │ │ ├── 8c442121c9bfc864f925a22d6e59551633ab33fc │ │ │ ├── 8c46b99f5ad1979dfb78604a167616afceb902f9 │ │ │ ├── 8c663c6e34efb618630f858a8c1688e96551a5e6 │ │ │ ├── 8ca9cca24f49a3bd115dfe42632f2a6be545b8f2 │ │ │ ├── 8cc7dbb58b1b7d855fbd86a3628bbcdc890b87f9 │ │ │ ├── 8d345072b8a35ebff1d0dd980f68639ca5959d1b │ │ │ ├── 8da7405b77e1939da38b582f38d982589f3186b7 │ │ │ ├── 8dafedc7b6190449ad10255f5e3abc318c504f9f │ │ │ ├── 8e00833dc4d066964ee17e54c21a515361b6f853 │ │ │ ├── 8e457080fbc315581d9780b15d4477af539c4480 │ │ │ ├── 8ea8ceb340ff1001b87a277668a9a8ebbe4d686d │ │ │ ├── 8efd587a702688481a5931430ff0df706304b5e2 │ │ │ ├── 8f0d37ece56d41546bf9d2620e34342874ceea1f │ │ │ ├── 8f447219bb01658c528d94b89ce86d8f4f2febee │ │ │ ├── 8fccd228ddcccc253e149376f006eb63c9154aa8 │ │ │ ├── 8fdcc8280d8d0b8d14bc3d46a4aba7ca39e9619d │ │ │ ├── 8fee042ee73173318bd26909c6875231df962fa8 │ │ │ ├── 90176dba08a238eb02615613eec20145f26cf7ba │ │ │ ├── 909e09b536bf1bf87e9b6028bf047c727861ac06 │ │ │ ├── 91322581723d6a04b434d210bb36a15dbe3c41cf │ │ │ ├── 9195bacbc8db898ee94b0f1d268438db8d82c9b2 │ │ │ ├── 920ded7bf832c187a4604c1ec946ba3b5592e8ac │ │ │ ├── 92729cfe76f0b222c3c91c30b4bb031b96f60077 │ │ │ ├── 92907b167e7f3698f4c07f8c18b7ba2fc9d255b0 │ │ │ ├── 92e7bd29a453c452d38e8bbbedcb0e5e21436b97 │ │ │ ├── 9342ce7a96361e3fc82a800c9e525382a1da472d │ │ │ ├── 93f0acf13fe544b7f1095881261f382f4ea0627c │ │ │ ├── 94490e290593db462781f4df29e54f42e3f3c63a │ │ │ ├── 94aac316440b585242e84c5c4bf70d23d91239f0 │ │ │ ├── 94b4094472056b00c92ac46177da9919bfa70d0c │ │ │ ├── 94b94409b7b416f5851265166274ff95982b99d9 │ │ │ ├── 951bde053ad1769a6b2737ab35be349172587dcf │ │ │ ├── 953f9ed86428d1ea8a235128b9b80069ff5d1785 │ │ │ ├── 95a81b08fbd39f81747e99e8f2e6af16cc347a67 │ │ │ ├── 95deef45d0781ce99743041e233dfc07f1563966 │ │ │ ├── 962128d06a11ef9787cba8c8639488f28242de6d │ │ │ ├── 963df88a2bd2b951902c0a56d32ee405aacd1699 │ │ │ ├── 9734acf37e56be4d4fd60ff2d684b9dbe8b3387b │ │ │ ├── 9751d83923107c643e105a31551145286d352d07 │ │ │ ├── 977ccdf120793fcfdcc6d8eb53d81b47df7ff8e9 │ │ │ ├── 9789b25b6d9d92fe7c221214cb1abd7644a1c783 │ │ │ ├── 97b86e782fbdd7472e1ed56ac003c8a6a0acdd7b │ │ │ ├── 98121ee1b6b7f6fb30320535f66d23b479ca2a05 │ │ │ ├── 981d1f0f0060e0583c4183eca0c2bd51eb50c3dd │ │ │ ├── 98203fd9f231acbe38f387955ddec5cacaaef843 │ │ │ ├── 9820c6a3f32fc1407bbe2d606b63b5f165a4070e │ │ │ ├── 985a2b135fd4617f46fa52e546d4a27185f36d7a │ │ │ ├── 9877c0a9b6563e322aa0c64c4acbe3c111bd2ce4 │ │ │ ├── 98f21c20336cca2c0b767ff0739f85f55c0366e9 │ │ │ ├── 9906ac0e76f782aaddf7b8477c86794178d7d305 │ │ │ ├── 9907501b0209693511bcd5906a0e0eadab3cf4ca │ │ │ ├── 99233707738d17d54fc21e792f191cdb5fde67e0 │ │ │ ├── 9931388be6b1be9e0c2a765281a3e28ba458ef9b │ │ │ ├── 9a27c070f282f99f3a24d3066c269cee77c7d143 │ │ │ ├── 9a42bfc8dd3b6f6731e0a31df111a0be8025fbd1 │ │ │ ├── 9a5f76dd45556ca90ecdaf38504b3c8ae6ab72da │ │ │ ├── 9c7f647dc5cf4c2000f755f41e1bc9370c7ec521 │ │ │ ├── 9ce9b0a2af2e3107687b27c61986ec4acd676b6a │ │ │ ├── 9cf54fac0fe0a1dad350aa0b52a2b18115ccdc10 │ │ │ ├── 9d0ac37bb3ec8c95990fd37a962a17a95ce97aa0 │ │ │ ├── 9d52675fa0bcc85d3689112de54d211505398ff2 │ │ │ ├── 9e34a63aee2062a96e5b8bfe03f546c51184f461 │ │ │ ├── 9e94758983980504af303ef297fd2bf9d9cea063 │ │ │ ├── 9ecb3f49fd00cdf3a517fa9f8007f99ee14b5f3f │ │ │ ├── 9f4d459ed8d73abe96ecbdf72aafef4493377837 │ │ │ ├── a002ce495011227b0d85b938f80b878e85436b6a │ │ │ ├── a0637c4e55c3fabd211caba433dddd52e1d0350f │ │ │ ├── a06b5746a0df842648c58cdc9655e35d191c9b1f │ │ │ ├── a06d89a15ff505745c53e1200ac7224984bb5b4d │ │ │ ├── a0abf358f7c730abd5c3e127b81a0091070efacd │ │ │ ├── a12d91eac01803d2ac1dad5eef1d43b6f20e2d1b │ │ │ ├── a12ec8bd72ae9e947ca222567a578ce7a27bceb3 │ │ │ ├── a13489ed5ea3e058a900babaa09258dd36227fcf │ │ │ ├── a17b452524b8d9f6c763ce85c2a8f277f27f25da │ │ │ ├── a18836a2324bf7b244c8220cf1eca25e58d63f49 │ │ │ ├── a1905c23a16d829beb74a86f3301ee0d9fe4fdc4 │ │ │ ├── a192a20210c7d06f69acb5c3f98df9bf05daf43b │ │ │ ├── a1df56acd5da211b7b2420797a6a8e331fdb98a3 │ │ │ ├── a2260e197ebbf7e825977bc3f59270464f3e780e │ │ │ ├── a2571e5db42fb56614b9864f4c4984a6ed60f627 │ │ │ ├── a285684c838542143f5ff7d4c7e9f65f48f63229 │ │ │ ├── a499da95329563ae6416fdec13d8dc50875621ac │ │ │ ├── a4c2be1e60ca432a1d8c04f4e6e46c5fb326c009 │ │ │ ├── a5b5e0a4926f4aaba6f0eeac817b090c331afde9 │ │ │ ├── a6604e5d35aceae2783f4b3943436ca68c91ea04 │ │ │ ├── a66e9b268d3878e6b05a559f09d3423ec30a9dd3 │ │ │ ├── a6737943dd28dc68fa105dc7a407538eade2f739 │ │ │ ├── a720bea30450d461a20e263c12e1738fd375f3cb │ │ │ ├── a77578918eb76c9a1d798ad98aca1c23b0e51c16 │ │ │ ├── a7a41d8fc05ae5e4a16ff683d93435c9a507686b │ │ │ ├── a7b293cfc2456f8effa18d781db2661b71b50063 │ │ │ ├── a7ca1c96336011478503107cffba512611229bac │ │ │ ├── a849fbf8a9073b12da1e05416db900c1bf1f273e │ │ │ ├── a850ab9e202c76f0fb6ed4e399ec0ab041103c3e │ │ │ ├── a86b8706c67674dea7229c170836b32dabcea157 │ │ │ ├── a952cb7d165b02fcef9e1dc01d22009a4ca97466 │ │ │ ├── a9631a91783047c61c63f7bc0f4827722880c55a │ │ │ ├── a9759fd8eb248b9b9d2c3780aa7e39b2d472ca35 │ │ │ ├── a9a28d2d41ec8bf95370201b6d614e823ce15623 │ │ │ ├── a9eed692df97d40cee73ee3b3734a7071637e022 │ │ │ ├── aae9f9ebeb72989192db6d0068dbfc963b13a994 │ │ │ ├── ab4a47660dcfb4ae58ed92e7de9284e371c01542 │ │ │ ├── ab51606176f1d141ddf69256123af2f35da59669 │ │ │ ├── ab795e902023846ad41d1feee32821597af0b393 │ │ │ ├── abeb938751e4c388ac1a0b4d19defdf15e1a9e4e │ │ │ ├── abfe956676528b67c6e71b95a631dff92850727b │ │ │ ├── ac49aff14dee70dbd41e350606fbab6ba739c221 │ │ │ ├── acba7c2c0692c02222e143b8eb4b753073dc8cd2 │ │ │ ├── acc87a792d126c28464e41c18f33b73918a59570 │ │ │ ├── ace211691bc7869257eab6266de33514dcffdcd7 │ │ │ ├── ad7e5c0d6762e18e716fd0f488b83b6748180366 │ │ │ ├── adafd4745ca54ffa8d8cf25ab35b73306f1c835c │ │ │ ├── ae9e78d6befcf86ebd43d81871f4e0889d1f3a78 │ │ │ ├── af4c7d9058bc5f72cba0a45053166ee144e3139a │ │ │ ├── af6cfa7b46c2bd184198c94d6d1927bd3346f2eb │ │ │ ├── afadcb5c70514fd6e80134adf09e1102c1cd45d2 │ │ │ ├── aff5b324cd8a0497d2faffa25d9593b18f065a8a │ │ │ ├── b143b8af2731651c5031c2d307c2fec6b3d6d358 │ │ │ ├── b1517fae9eeca755f142cf9c5173079946180995 │ │ │ ├── b1c90945dc97e98fb9f7631a7d6d347febed0e25 │ │ │ ├── b1d04f2a3e5df0e7a26e601a9378d5631b9880e6 │ │ │ ├── b26ddf58457229059901cb2580a35ee035ab2935 │ │ │ ├── b3542305d704ef1b278864544929e3c48cef0dc4 │ │ │ ├── b3a14331e1a5eaf9122c560dab5aa9ee0cfcacfb │ │ │ ├── b3ad37af20aa99223a30ac905e24d4d4aefdb6b3 │ │ │ ├── b3d60f984576ffbe465187b2c394b744184d4fac │ │ │ ├── b3fde9ac5543666767bcfd3b66f7d50eda563e10 │ │ │ ├── b413a6e58f87145126e900164980c8ce48d65edd │ │ │ ├── b43becbb2489a947f2b453b6ab7c156c8a5d8ae3 │ │ │ ├── b497b9247a0d1fd881c0e88a2e33ab3ccb20988a │ │ │ ├── b4d58409e2b03309686677c168593b3cab197084 │ │ │ ├── b50357ea984659040a6de483239e6cd0430ca1ce │ │ │ ├── b592fdc59ca4aa57e21eb5138cb731fc15e075a5 │ │ │ ├── b5b6869a9d6302f9b6f24546ed4bc54df68b1ac6 │ │ │ ├── b684f811cc4bdb20f209f2bcc4895da06f513312 │ │ │ ├── b6e504e3295eeca7608e5b8df6ff30e80621e2e0 │ │ │ ├── b72a4ddea681494d5f2409d7d6089e3834c742ae │ │ │ ├── b7346fd5062d58d14a875845d21dbb3ffab2a83b │ │ │ ├── b7386a89ed08d544134388602a82b9c61802adcc │ │ │ ├── b74094a73a4e48ba74ffc6e74785e9635d8a7ac5 │ │ │ ├── b823c061c994bd711ebc60864a26a4ff731ce100 │ │ │ ├── b83901ca98af07e127708b05f832fa475dedf084 │ │ │ ├── b8a6b55e632f5bcb361d1371a55ca5a16a52954c │ │ │ ├── b8c385ad714a5772ea1c9a4a3cd30c69e7f4db26 │ │ │ ├── b8de4e14761811fc81add4392cdd28cf330ac61e │ │ │ ├── b8eb9bf35450af4aaf40b21f60e7f7faf9512d57 │ │ │ ├── b953206485ac96b54e801e8b952aaaeefa6d8b52 │ │ │ ├── b9d1b9ab92509961be409a55a843f9c649413419 │ │ │ ├── b9dbc4c3d32d3806c3b5bda0db08b59b2a5d634a │ │ │ ├── ba4c4b160ef93f0ff9674cdaaad6c7052a45ae35 │ │ │ ├── ba750b395383d1b8536c8290ef914a1266b0b225 │ │ │ ├── bad19668b8a7274ab0fdf49f345756001ff94cf2 │ │ │ ├── bb3b5fbf34e931a1ce8acfffd107ec608c8ab7da │ │ │ ├── bb66a4373f9b0f9570095915806a7e9e9e49212f │ │ │ ├── bb6753aff17ea9285045d2684a8e0fa325b1ce2b │ │ │ ├── bc16011277f98f64109196b28a9894a2dbfb7832 │ │ │ ├── bccc6ae5bedc68e7f734958adfdf68beabdffba5 │ │ │ ├── bcfeed1a7df308af217cd971f2c395eb668fd1f2 │ │ │ ├── bd071c31c16c0e96fab04834306eb9a270740956 │ │ │ ├── bd072e0688956c06607a12f5d573cc02f91a5e54 │ │ │ ├── bd9bec6606fed330144671c7fd5648883891c0a3 │ │ │ ├── be100f9c56ab13c597eb73b7fd8cdc568dcfc6b9 │ │ │ ├── be56b90b7a3e0b7efcb57f533a02ad77458f75c0 │ │ │ ├── bee7994e397405a783aceb4c232614ead90b47b6 │ │ │ ├── bf94f7ab8887b99a0009c8106c0ccf8cc18250bb │ │ │ ├── c00cf7ae36f9ee336082066e8e4955cf046e9d4f │ │ │ ├── c01a7d15d1d84baa4b503405af142eb6bd0b4dd8 │ │ │ ├── c04a12c6ce56f2977348102722d22a00df2d0388 │ │ │ ├── c11e360d10cbd2fa523a40d1b8211c1b635916c8 │ │ │ ├── c17c5f2370cddf1807d5afddd4a09728d2411d36 │ │ │ ├── c193066dfc35bf1baf0806a174237757b74c274d │ │ │ ├── c29a6734f43aa871c8c8df156e71a905e4b5e136 │ │ │ ├── c338b47706314ac57e5a615d1dfdf90dd6119e2c │ │ │ ├── c3fe918a8a103fe4f1b0383047d9f6f01b54867e │ │ │ ├── c412d81141022ed828c183164d1957b01ee15314 │ │ │ ├── c413f55943190ef4754bfb378423262c8dcf9232 │ │ │ ├── c42f0a7ce7aa27569ac82c50420888723ba7d012 │ │ │ ├── c4488af0c158e8c2832cb927cfb3ce534104cd1e │ │ │ ├── c47a39e6125afa62e7dd252575033882d9e5255b │ │ │ ├── c4f8923547429461f1d74703237675c09a4ef3bc │ │ │ ├── c5121f6ce6244590c0f89ef619f5540f277cd1a3 │ │ │ ├── c5328f18ca4feec03edcfdbcff6635ecc6f61366 │ │ │ ├── c5a018b7ae6c8a026e0af0462fd0bd87ab6a279a │ │ │ ├── c5bece0d2f891f8eeccb3baea9f90d2039e46e3a │ │ │ ├── c5cfbe362ee66759c30944e0ad9082da2c2a57b1 │ │ │ ├── c5f850e74cfcae25d5ffed8d60f550fb1fe7f586 │ │ │ ├── c676a2443e091020e5249f46c5813a13f382614a │ │ │ ├── c68267f6e6b553dbededa81bdf273d5885a5b39c │ │ │ ├── c73d70435387c5213e893cec906b31cfd200e833 │ │ │ ├── c79b5231d7523f76864d50ac375c572c7917bba8 │ │ │ ├── c7d97d1b36f6b672a7c05dfa096f867a47def718 │ │ │ ├── c7e0299692b6cfbabe59f012580be8224e2e05e4 │ │ │ ├── c7eb308ce870c2b987e290df1cd24cac19bf777e │ │ │ ├── c822739b8c0e01fe368fd975f505d4153803f447 │ │ │ ├── c83dc59cf3cb0332379177ba2a5462ae6aa4311d │ │ │ ├── c873ac50c388863c08234f144eaac0f88ad6b8d7 │ │ │ ├── c8eb2d6e73e0a81fae323e2394d5a26dd0a62201 │ │ │ ├── c938151fd2134e61e6f3656ed736441499771ab8 │ │ │ ├── c97c00b68f1a8a6c1da9242098e612268006eb12 │ │ │ ├── ca686e249eb13cb2668d09c1a408da2e09919d28 │ │ │ ├── ca77938dc372216ee9ea02d624f7deafda095554 │ │ │ ├── cad0dfc8c97fd611997a5e947def95d7106f3cbd │ │ │ ├── caf928dd9a9b7425204d1a1e7570948b9022b2d1 │ │ │ ├── cb02a4b12ad0e18d9bad63ab094dfdb1a181b0c6 │ │ │ ├── cb26c32f517eff0847eb6cae4f481cbf5a8dc0e1 │ │ │ ├── cb5ec14faa194fbd351dbc27cc29bf4d72ff2a6c │ │ │ ├── cbc9ef5c1257ebdb5b52aa3be986bfebd2ee01d8 │ │ │ ├── cc41ed28efb4f1a0336bf3f91cfd5122531c6269 │ │ │ ├── cc8af651c2dcd5992c3373b57577a6225ca43b75 │ │ │ ├── ccc0417b85de6b58a5d45065fbee38091b36cb74 │ │ │ ├── ccc92d738e34fac4d2bab54d63fb5d33af8c9fa2 │ │ │ ├── ccd801b367f0cb5a36f94ce31f1cfdafddb1488d │ │ │ ├── ccdb75dc93144bbb0fe3ee5e235bd2a4fd73db95 │ │ │ ├── cd6ac62c1f529cb365979a04a8c031b13a154e2a │ │ │ ├── cd6fa87020e12581bcdb4bc0fd5d70b18a6a263a │ │ │ ├── cdff3d66831c2d189251824e06af4fb28b6ec04d │ │ │ ├── ce31de52071ebe0a25d76ccb95203016d47f4b4b │ │ │ ├── ce5eee350c6aa97d3112528cd143c51ab9bc6e65 │ │ │ ├── ce87cf32355c8784e77db056ac9644ac32baf94f │ │ │ ├── ce9e43b9b3e4e702d306548b8356da8935de2f07 │ │ │ ├── cea00f8cebd024a1529410efb51548eab369a311 │ │ │ ├── cf1a471b2d165c39ad00c850bf3e6f2c0ad9dbc8 │ │ │ ├── cff34da47e2ced8db6525142ff15093629f5781e │ │ │ ├── d05dec92f7608dc45f04124a29269acfa301dd1c │ │ │ ├── d08f88df745fa7950b104e4a707a31cfce7b5841 │ │ │ ├── d0d0c9167082b96ca6c184ba46036e1c00eeb6e8 │ │ │ ├── d0d407fbb77c6c722897c1384fb7a365e7c16003 │ │ │ ├── d155aedc7d2b47536f602ea324011741241591d1 │ │ │ ├── d18634a40433e5c14a63bd85e998477c1701f1af │ │ │ ├── d199fe5d541f147e2a0fa7666937c4774dcbf811 │ │ │ ├── d28d5c3a877200183d22fb70ec89fb4db872d95c │ │ │ ├── d2a99ca84f46dd2e5b87cc1382838e2e850ed70a │ │ │ ├── d2e5dc1bacd366dae9156c48b7fabc81f1f3ca2c │ │ │ ├── d2f789c84dd2514a2cd43bbcbce83efcf07eb31d │ │ │ ├── d31d9efdbb4479df91c7497446caf652860cb2b3 │ │ │ ├── d38d22fac98f04019b4188fe7a638757cce94f6a │ │ │ ├── d3f8f6b5e4e0a504b6e323f0cd22c204f798917d │ │ │ ├── d3fdfeeda9dd8b3651e17f564cab0fee202c133d │ │ │ ├── d40de3873f6dc1154aed0abdc71252de1c18dda9 │ │ │ ├── d42d531d7b96babbcef058df03cc3058bda81569 │ │ │ ├── d490d51f263921af00b0587d1b41e2fc958d422e │ │ │ ├── d6446d0f36017d0c7e9ae8a9aaff972414606c60 │ │ │ ├── d713754a2f5429b28533071b75723dacd3ad9dc8 │ │ │ ├── d74749add0f78a8c00d1261f32e367b94f4a583d │ │ │ ├── d7c487d41de7c92d6a625e1446834bfb01078821 │ │ │ ├── d7fcc97d0bc5cebf82ce4f7c0c1d25e9abf41bd9 │ │ │ ├── d805e791ad1b4b7c5b0ba6bc523a3eccfd613ee8 │ │ │ ├── d8d5ab3cc6e969ffc49abe3efca3f2758612e5e4 │ │ │ ├── d8e3a106cb55b7fa23ac7a585797cf027d5d4552 │ │ │ ├── d93c9529b27eeb2698ba7d5b1f340d2a921b5d17 │ │ │ ├── d977f72335d721bc7d6cddfe4f7503bacfdbe255 │ │ │ ├── d9f6ebef676452f8dd8b219b4a389eb0a29c8887 │ │ │ ├── da17bdd78dd48fb400f2822a95276b297183f4a5 │ │ │ ├── da545563bcfff93d9b336be38faa1ff2bb7c9d40 │ │ │ ├── dac89ba966a3e7eaa864f3415552550b946e6317 │ │ │ ├── db0cec846933f9b3df6acb2066f12f54c387d9db │ │ │ ├── db8a44137bf6cf903dc2d5700543eaa91c172345 │ │ │ ├── dc7426311af874392fbd86b0824d873b12e5fb77 │ │ │ ├── dc7ed9a081a0160425d1ed438064f6dbf8eb00ef │ │ │ ├── dde272cfa6e920bd72cd49466746dcab684a13f7 │ │ │ ├── de138840e38068408a1374b717fc209131992c79 │ │ │ ├── de26259ca94b5fbc355cf83ee014447ed71e6b7d │ │ │ ├── de2bc0aff7aa741c74bd8a945e27a97880361f6a │ │ │ ├── de45103fe6162b098be15d36b7401f0653b92bb2 │ │ │ ├── de4b81f12185f97052283c3c1680ae1fdf9c407f │ │ │ ├── de6e0889cdb09197b226317bd4806c021682824e │ │ │ ├── de84b345c445226f68d7766cd40be926f7d937d1 │ │ │ ├── dedbfa1d69fcb70e7cbf481732fc6edac01a6456 │ │ │ ├── dee6f6651764b5c7605dc01bab8bfd6d105079a7 │ │ │ ├── df3d54f84d02008aeb7614222faea8982e74f039 │ │ │ ├── df597008470592c7d9ba7abb69a7b44db664ed64 │ │ │ ├── dfae7a46e5ee33db535b08ca8bc52656033854d1 │ │ │ ├── dfea65135f11e00b6d8fb62a8c1356cf1a70a031 │ │ │ ├── e0439612cc1acc4a0f735e1260764de604ad9753 │ │ │ ├── e05efb58e4413f182bd2be4bc19e41b237138a70 │ │ │ ├── e0b2ea0139ccee05f6faf6a6dcf8c74631a990c7 │ │ │ ├── e0dbafdfbea37d1a48de500621585e167eee82ec │ │ │ ├── e0e2a3088a6b999586fda730989c3ead81942888 │ │ │ ├── e0f3e3d6d29b28d81b6d374a4a9a509bd3d16a16 │ │ │ ├── e185db661cf9f31adeb5076b46f7841c585762e0 │ │ │ ├── e1953b26316a3fb595df4ad8fbd5f7c3c2a2de86 │ │ │ ├── e1dfe8896e23aeb9a90f31b72eb41a61dd69634b │ │ │ ├── e20a4cf57d685348d9e823a1cea7b62eb39a9715 │ │ │ ├── e210d93baea1d69d2f6f1756fd0209a3052edaab │ │ │ ├── e28f43721d0d82be0fdf8c87c53288872765cc92 │ │ │ ├── e2b56d293ce15bd83d458e209dcb6cc6b67c8464 │ │ │ ├── e3142a7312a234c993f82376238ffd3934298de0 │ │ │ ├── e35e566242351e392a99fd14394e2b53d035faab │ │ │ ├── e3ea45c8d66dd04f14d2d434957de876fba84c8a │ │ │ ├── e3f99505cdbe771c269611dde36df3ad8d9e5de6 │ │ │ ├── e4856d99a54426a4b0f37706740dbaffe2c0fd12 │ │ │ ├── e53db14b8a4063b4cea7ba5d146e82be3d9bb83f │ │ │ ├── e5afacbff5ac44dd61e7cad04201aa14a56503d8 │ │ │ ├── e5cca570e8699843f6ccb1a28efd3c6a50a65ebf │ │ │ ├── e5d3e160e2aaa99cd76cee90b279b7f8cb581d59 │ │ │ ├── e72a6640e4505619c76dcc8df567a99b6b7950ec │ │ │ ├── e74b59d5f274d82b1e4074745c6369f4c2813fd1 │ │ │ ├── e7f080c3ec11ea323fda9fb150915d521bda201b │ │ │ ├── e86ec5a1584265c4191bc245472bbd345d741854 │ │ │ ├── e8c79aec3c85cdb8a7535d2b53a1ca4114f50013 │ │ │ ├── e8ff30e42d043e96fba1b23de29671a3bc115734 │ │ │ ├── e9d8f5785571a82923390b0de32c03618b71befe │ │ │ ├── ea3900f747538cd1df2d9a23b144e63d447fc5cd │ │ │ ├── ea5a4cc79e5cfd0ad5466320d611acfa286cdcb1 │ │ │ ├── ea60bf60a4014d8fface1a0e34af3b41b09e898e │ │ │ ├── eb32bf16f04a8adb96a46bf78897f9b1e6aed9c0 │ │ │ ├── eb5c348fb7f29ea97ed88079b1462c144b023b31 │ │ │ ├── ebb140549254e5a2f8231e92e8c2dc1642735e16 │ │ │ ├── ec1874a73eb116419f8c4762fca890b1ad83c4bd │ │ │ ├── eca0a3169b97921cacaf060a068086e4e9fae164 │ │ │ ├── ecb7855134baf2642bfcd066d1dbfd44b9fcd174 │ │ │ ├── ecc33e30e53fe0613f6714ca6a9ee9f799036e97 │ │ │ ├── ece122899466857b94376706ea0b961267977e8c │ │ │ ├── ede5fbb642457fe078508c06302f7859a454ca72 │ │ │ ├── ee0563d7ceb3d58b9bdbb97567a1ae244f2f36f5 │ │ │ ├── ee16f620913d930287c3e77d1da3490fd80d406b │ │ │ ├── ee4e345848dbb99b91eb5e399bb817c6685c35a2 │ │ │ ├── eea89b364d224583ea0fe32ee9698374391ba16c │ │ │ ├── ef5659d5d1b450540fe1e40920965484b4035e90 │ │ │ ├── f036b88779f7a54ebe08a7a7502b0d732b763a1f │ │ │ ├── f048174a400e2aef6f6f0edcf8a78f68039748f6 │ │ │ ├── f0a143ab4e1a4c89b3b8925b7f001053b8f96b8b │ │ │ ├── f139313fc8514ea621661da5f7f26f7153e49da7 │ │ │ ├── f19ce0dd3e0e2c38c404d6dbf9569d8f4fbaa86f │ │ │ ├── f1ddd9f5658193abd5b9db964940a1cf08c1681d │ │ │ ├── f21fedd5e466029a004ab09930cbbc7dabc4176f │ │ │ ├── f25a7e39604457fa75f39acf52453466d0951bf0 │ │ │ ├── f28fe81c3534232e9718c7f965e62e52b6d7799c │ │ │ ├── f30e8acd9b00e14ac07282ca1e9bc10ae19d204b │ │ │ ├── f32b224c0fb4924daf4d41a8c36977ad53a99285 │ │ │ ├── f36092e1877d422219353d3dc8745f55be1c82a4 │ │ │ ├── f3bd78afd5e80b44e7cde84d3a10c72742475215 │ │ │ ├── f3ec167a57ae3604e331ee45b410adea6c7fbd6c │ │ │ ├── f4250a1b095e885ad406f35ca47ee2eaf6c57156 │ │ │ ├── f42514b44ee5ff2e3ae783bbb2e74a324a374db2 │ │ │ ├── f43f1b8d83e06430e8abd6c6d903b2a7928ccc99 │ │ │ ├── f48f0f8ddfb6263267686451d6a6c3c96f43770a │ │ │ ├── f4f0c74e1da9f724233fdbaa773e0536e028932a │ │ │ ├── f540c2edb8c5bcb032385eab7196883f98c9c0ff │ │ │ ├── f5851e9e5b21e47e26e644917c2966b8b6717eef │ │ │ ├── f5f0a933e698e232130ce730dfd7a9578e430df7 │ │ │ ├── f61b8ec57fd9e437568d224eeefb9825588bf6fd │ │ │ ├── f62dfe22da868aaa7b428d1118aa108439dc90a0 │ │ │ ├── f65f7b94de0905014c8c3b047101812a6e5975fb │ │ │ ├── f759d3a1112c8c4013decf71b1c0408a34f36877 │ │ │ ├── f7699591a2fec64161c2c4ae64ae1e45f661eb88 │ │ │ ├── f76bbda52bb35e69b4d86f7abb3e2527dea52d5d │ │ │ ├── f9256b263206ca88d7e27344bda81fde444b9381 │ │ │ ├── f9c19473eb4f3a75dae468ac473c44b457bd4691 │ │ │ ├── f9ef2c8d91e7c015b81bdec1aa0b7cd14e2e0a08 │ │ │ ├── fa0df4ce82bd77f1b176b82f71d3bd5401c43b43 │ │ │ ├── fa84b2d82c6ef09dbfd65ee69cc6b429e7116360 │ │ │ ├── fad6875bf192970cb09197e01028f3aa50225151 │ │ │ ├── faf16e15e8cc456ba2c4fc8e1f5c32bd82595042 │ │ │ ├── fb1a4241c23927af9542bfa992d9af5d236b3571 │ │ │ ├── fc200ca81c5d7012a267b612212350638d06eecb │ │ │ ├── fcfc681fda2d5bb271ae6465945cbab28c6de43f │ │ │ ├── fd54584a89dd0cdd6a0149a6ae13e99b97bd6952 │ │ │ ├── fd5bb3de80b386ea87971023c7c5dfaeb4fa3c77 │ │ │ ├── fd65f10deb73059088d479ab25a725460e8a5c54 │ │ │ ├── fe15f98c5e404e8803d10d07f950f66c5f3e4c4e │ │ │ ├── fe5bf9f88a162e03f59f269bc60fdab2e7531e84 │ │ │ ├── fe83f217d464f6fdfa5b2b1f87fe3a1a47371196 │ │ │ ├── fe9c7577a156194be22d398fd7342ec3eb3375b5 │ │ │ ├── fea03055d825ec9a5d78469b33fed1c75b2f907a │ │ │ ├── ff15d25c53b41a0625ebdde0991728bd2c69278f │ │ │ ├── ff368775a7b289843c0096262b79bde2c64bab29 │ │ │ ├── ffbcf825a8a315fb770f1bfdec6eaf23b97ea8a0 │ │ │ └── ffbef128ff0e0971fc895cdf21e82204f0d2d450 │ ├── doc │ │ ├── allocated_memory.gnuplot │ │ └── allocated_memory.png │ ├── example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── main.cpp │ ├── include │ │ └── ankerl │ │ │ └── unordered_dense.h │ ├── meson.build │ ├── scripts │ │ ├── build.py │ │ ├── fuzz_merge.sh │ │ ├── fuzz_run.sh │ │ └── lint │ │ │ ├── lint-all.py │ │ │ ├── lint-clang-format.py │ │ │ └── lint-version.py │ ├── src │ │ └── ankerl.unordered_dense.cpp │ ├── subprojects │ │ ├── abseil-cpp.wrap │ │ ├── doctest.wrap │ │ └── fmt.wrap │ └── test │ │ ├── app │ │ ├── checksum.h │ │ ├── counter.cpp │ │ ├── counter.h │ │ ├── counting_allocator.h │ │ ├── doctest.cpp │ │ ├── doctest.h │ │ ├── geomean.h │ │ ├── name_of_type.h │ │ ├── nanobench.cpp │ │ ├── print.h │ │ ├── stacktrace.cpp │ │ ├── ui │ │ │ ├── periodic.cpp │ │ │ ├── periodic.h │ │ │ ├── progress_bar.cpp │ │ │ └── progress_bar.h │ │ └── unordered_dense.cpp │ │ ├── bench │ │ ├── copy.cpp │ │ ├── find_random.cpp │ │ ├── game_of_life.cpp │ │ ├── quick_overall_map.cpp │ │ ├── show_allocations.cpp │ │ └── swap.cpp │ │ ├── fuzz │ │ ├── api.cpp │ │ ├── api.h │ │ ├── insert_erase.cpp │ │ ├── insert_erase.h │ │ ├── provider.h │ │ ├── replace.cpp │ │ ├── replace.h │ │ ├── string.cpp │ │ └── string.h │ │ ├── meson.build │ │ ├── modules │ │ ├── module_test.cpp │ │ └── test.sh │ │ ├── third-party │ │ ├── .clang-tidy │ │ ├── FuzzedDataProvider.h │ │ ├── nanobench.h │ │ └── robin_hood.h │ │ └── unit │ │ ├── assign_to_move.cpp │ │ ├── assignment_combinations.cpp │ │ ├── at.cpp │ │ ├── bucket.cpp │ │ ├── contains.cpp │ │ ├── copy_and_assign_maps.cpp │ │ ├── copyassignment.cpp │ │ ├── count.cpp │ │ ├── ctors.cpp │ │ ├── custom_container.cpp │ │ ├── custom_container_boost.cpp │ │ ├── custom_hash.cpp │ │ ├── deduction_guides.cpp │ │ ├── diamond.cpp │ │ ├── empty.cpp │ │ ├── equal_range.cpp │ │ ├── erase.cpp │ │ ├── erase_if.cpp │ │ ├── erase_range.cpp │ │ ├── explicit.cpp │ │ ├── extract.cpp │ │ ├── fuzz_corpus.cpp │ │ ├── hash.cpp │ │ ├── hash_char_types.cpp │ │ ├── hash_smart_ptr.cpp │ │ ├── hash_string_view.cpp │ │ ├── include_only.cpp │ │ ├── initializer_list.cpp │ │ ├── insert.cpp │ │ ├── insert_or_assign.cpp │ │ ├── iterators_empty.cpp │ │ ├── iterators_erase.cpp │ │ ├── iterators_insert.cpp │ │ ├── load_factor.cpp │ │ ├── maps_of_maps.cpp │ │ ├── max.cpp │ │ ├── move_to_moved.cpp │ │ ├── multiple_apis.cpp │ │ ├── namespace.cpp │ │ ├── not_copyable.cpp │ │ ├── not_moveable.cpp │ │ ├── pmr.cpp │ │ ├── pmr_move_with_allocators.cpp │ │ ├── rehash.cpp │ │ ├── replace.cpp │ │ ├── reserve.cpp │ │ ├── reserve_and_assign.cpp │ │ ├── segmented_vector.cpp │ │ ├── set.cpp │ │ ├── set_or_map_types.cpp │ │ ├── std_hash.cpp │ │ ├── swap.cpp │ │ ├── transparent.cpp │ │ ├── try_emplace.cpp │ │ ├── unique_ptr.cpp │ │ ├── unordered_set.cpp │ │ ├── vectorofmaps.cpp │ │ └── windows_include.cpp ├── vk-bootstrap │ ├── .clang-format │ ├── .github │ │ └── workflows │ │ │ ├── ci_build.yml │ │ │ └── run_autogen.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── docs │ │ └── getting_started.md │ ├── example │ │ ├── CMakeLists.txt │ │ ├── example_config.h.in │ │ ├── shaders │ │ │ ├── frag.glsl │ │ │ ├── frag.spv │ │ │ ├── vert.glsl │ │ │ └── vert.spv │ │ └── triangle.cpp │ ├── ext │ │ └── CMakeLists.txt │ ├── gen │ │ └── CurrentBuildVulkanVersion.cmake │ ├── script │ │ └── generate_dispatch.py │ ├── src │ │ ├── VkBootstrap.cpp │ │ ├── VkBootstrap.h │ │ └── VkBootstrapDispatch.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── bootstrap_tests.cpp │ │ ├── common.h │ │ ├── error_code_tests.cpp │ │ ├── main.cpp │ │ └── unit_tests.cpp ├── volk │ ├── .github │ │ └── workflows │ │ │ ├── build.yml │ │ │ └── update.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── cmake │ │ └── volkConfig.cmake.in │ ├── generate.py │ ├── test │ │ ├── cmake_using_installed_headers │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── cmake_using_source_directly │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── cmake_using_subdir_headers │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── cmake_using_subdir_static │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ └── run_tests.sh │ ├── volk.c │ └── volk.h └── winpixeventruntime.1.0.230302001 │ ├── .signature.p7s │ ├── CMakeLists.txt │ ├── Include │ └── WinPixEventRuntime │ │ ├── PIXEvents.h │ │ ├── PIXEventsCommon.h │ │ ├── pix3.h │ │ └── pix3_win.h │ ├── ThirdPartyNotices.txt │ ├── WinPixEventRuntime.nuspec │ ├── WinPixEventRuntimeIcon.png │ ├── [Content_Types].xml │ ├── _rels │ └── .rels │ ├── bin │ └── x64 │ │ ├── WinPixEventRuntime.dll │ │ └── WinPixEventRuntime.lib │ ├── build │ └── WinPixEventRuntime.targets │ ├── license.txt │ └── package │ └── services │ └── metadata │ └── core-properties │ └── 56ce5c482e2a41ee909974c3fa77f6b9.psmdcp ├── LICENSE ├── README.md ├── Samples ├── 01.TexturedQuad │ ├── Main.cpp │ └── Quad.shader ├── 02.ComputeShader │ ├── Compute.shader │ └── Main.cpp ├── 03.BindlessTexture │ ├── Bindless.shader │ └── Main.cpp ├── 04.RayTracingTriangle │ ├── Main.cpp │ └── RayTracingTriangle.shader ├── 05.PathTracing │ ├── InitRng.shader │ ├── Main.cpp │ ├── PathTracing.shader │ └── Random.hlsl ├── 06.DistortionFreeDisplacementMap │ ├── Grid.shader │ └── Main.cpp ├── 07.Gizmo │ └── Main.cpp ├── 08.FADM │ ├── Common.h │ ├── FADM.shader │ ├── GridAlignment.cpp │ ├── GridAlignment.h │ ├── Main.cpp │ ├── Mesh.cpp │ ├── Mesh.h │ ├── SeamEnergy.cpp │ ├── SeamEnergy.h │ ├── VDMBake.cpp │ └── VDMBake.h ├── 09.MeshShader │ ├── Main.cpp │ └── UniformGrid.shader ├── 10.FastMarchingMethod │ ├── Main.cpp │ └── Visualize.shader ├── 11.GeodesicDistance │ ├── Main.cpp │ └── Visualize.shader ├── 12.ShaderDSL │ └── Main.cpp ├── 13.HorizonShadowMap │ ├── Bake.shader │ ├── Main.cpp │ └── Render.shader ├── 14.HalfedgeMesh │ ├── DrawMesh.shader │ └── Main.cpp ├── 15.HeatMethod │ ├── Main.cpp │ └── Visualize.shader ├── 16.MeshCorefinement │ └── Main.cpp ├── 17.WorkGraph │ ├── Main.cpp │ └── WorkGraph.shader ├── 18.ShortestGeodesicPath │ └── Main.cpp ├── 19.Archive │ └── Main.cpp ├── 20.MultiLayerOIT │ ├── Main.cpp │ └── OIT.shader ├── 21.HeightMapDownsampling │ ├── Common.h │ ├── Downsampler.cpp │ └── Main.cpp ├── 22.DynamicDiscreteDistribution │ └── Main.cpp ├── CMakeLists.txt ├── Test.LIP │ ├── Main.cpp │ └── Shader.shader └── Test.OT2D │ └── Main.cpp ├── SetupDependencies.bat ├── Source └── Rtrc │ ├── Core │ ├── Archive │ │ ├── Archive.h │ │ ├── ArchiveInterface.h │ │ ├── BinaryArchiveReader.h │ │ ├── BinaryArchiveWriter.h │ │ ├── JSONArchiveReader.cpp │ │ ├── JSONArchiveReader.h │ │ ├── JSONArchiveWritter.cpp │ │ ├── JSONArchiveWritter.h │ │ ├── JSONFileArchiveReader.h │ │ └── JSONFileArchiveWritter.h │ ├── Base64.h │ ├── Bit.h │ ├── Bool.h │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── Common.h │ ├── Container │ │ ├── BitVector.h │ │ ├── Cache │ │ │ ├── ObjectRecycleBin.h │ │ │ └── SharedObjectCache.h │ │ ├── ConcurrentQueue.h │ │ ├── IntrusiveList.h │ │ ├── LRUCache.h │ │ ├── QuadTreeAllocator.h │ │ ├── RangeSet.h │ │ ├── SlotVector.h │ │ ├── Span.h │ │ ├── Span.natvis │ │ ├── SparseArray.h │ │ ├── StaticVector.h │ │ └── moodycamel │ │ │ ├── LICENSE.md │ │ │ ├── blockingconcurrentqueue.h │ │ │ ├── concurrentqueue.h │ │ │ └── lightweightsemaphore.h │ ├── EnumFlags.h │ ├── Enumerate.h │ ├── Event.h │ ├── Filesystem │ │ ├── DirectoryFilter.cpp │ │ ├── DirectoryFilter.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── TemporalFile.cpp │ │ └── TemporalFile.h │ ├── Hash.h │ ├── LazyCell.h │ ├── Macro │ │ ├── AnonymousName.h │ │ ├── MacroForEach.h │ │ └── MacroOverloading.h │ ├── Math │ │ ├── AABB.h │ │ ├── AliasTable.h │ │ ├── Angle.h │ │ ├── Common.h │ │ ├── DistributionTransform.h │ │ ├── DynamicDiscreteDistribution.h │ │ ├── Exact │ │ │ ├── Expansion.cpp │ │ │ ├── Expansion.h │ │ │ ├── Intersection.cpp │ │ │ ├── Intersection.h │ │ │ ├── Predicates.cpp │ │ │ ├── Predicates.h │ │ │ └── Vector.h │ │ ├── FastHash.h │ │ ├── Frame.h │ │ ├── Intersection.h │ │ ├── LowDiscrepancy.cpp │ │ ├── LowDiscrepancy.h │ │ ├── Matrix3x3.h │ │ ├── Matrix4x4.h │ │ ├── Quaternion.h │ │ ├── Transform.h │ │ └── Vector.h │ ├── Memory │ │ ├── Arena.h │ │ ├── Malloc.cpp │ │ ├── Malloc.h │ │ └── StackAllocation.h │ ├── Parallel.h │ ├── Parser │ │ └── ShaderTokenStream.h │ ├── PrivateBackdoor.h │ ├── Profile.h │ ├── Resource │ │ ├── GenerateMipmap.cpp │ │ ├── GenerateMipmap.h │ │ ├── Image.cpp │ │ ├── Image.h │ │ ├── ImageND.h │ │ ├── ImageSampler.h │ │ ├── MeshData.cpp │ │ └── MeshData.h │ ├── ScopeGuard.h │ ├── SelfType.h │ ├── Serialization │ │ ├── Serialize.h │ │ ├── SerializeEigen.cpp │ │ ├── SerializeEigen.h │ │ └── TextSerializer.h │ ├── SignalSlot.h │ ├── SmartPointer │ │ ├── CopyOnWritePtr.h │ │ ├── ObserverPtr.h │ │ ├── ReferenceCounted.h │ │ └── UniquePointer.h │ ├── SourceWriter.h │ ├── String.cpp │ ├── String.h │ ├── StringPool.h │ ├── Struct.h │ ├── Swap.h │ ├── TemplateStringParameter.h │ ├── TimelineSemaphore.h │ ├── Timer.cpp │ ├── Timer.h │ ├── TypeIndex.h │ ├── TypeList.h │ ├── Uncopyable.h │ ├── Unreachable.h │ └── Variant.h │ ├── Geometry │ ├── BVH.cpp │ ├── BVH.h │ ├── CMakeLists.txt │ ├── ConstrainedTriangulation.cpp │ ├── ConstrainedTriangulation.h │ ├── DiscreteCurve.cpp │ ├── DiscreteCurve.h │ ├── DiscreteOperators.cpp │ ├── DiscreteOperators.h │ ├── DistanceField.h │ ├── GWN3D.cpp │ ├── GWN3D.h │ ├── GenerateMesh.cpp │ ├── GenerateMesh.h │ ├── GeodesicPath.cpp │ ├── GeodesicPath.h │ ├── HalfedgeMesh.cpp │ ├── HalfedgeMesh.h │ ├── Manifold.cpp │ ├── Manifold.h │ ├── MeshCleaner.cpp │ ├── MeshCleaner.h │ ├── MeshCorefinement.cpp │ ├── MeshCorefinement.h │ ├── RawMesh.cpp │ ├── RawMesh.h │ ├── SignpostsMesh.cpp │ ├── SignpostsMesh.h │ ├── TriangleTriangleIntersection.cpp │ ├── TriangleTriangleIntersection.h │ ├── Utility.cpp │ ├── Utility.h │ └── Utility.inl │ ├── Graphics │ ├── CMakeLists.txt │ ├── Device │ │ ├── AccelerationStructure.cpp │ │ ├── AccelerationStructure.h │ │ ├── BindingGroup.cpp │ │ ├── BindingGroup.h │ │ ├── Buffer.h │ │ ├── Buffer │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── BufferView.h │ │ │ ├── CBufferStruct.h │ │ │ ├── DynamicBuffer.cpp │ │ │ ├── DynamicBuffer.h │ │ │ ├── PooledBuffer.cpp │ │ │ ├── PooledBuffer.h │ │ │ └── StatefulBuffer.h │ │ ├── CommandBuffer.cpp │ │ ├── CommandBuffer.h │ │ ├── CopyContext │ │ │ ├── Downloader.cpp │ │ │ ├── Downloader.h │ │ │ ├── Uploader.cpp │ │ │ └── Uploader.h │ │ ├── Device.cpp │ │ ├── Device.h │ │ ├── DeviceSynchronizer.cpp │ │ ├── DeviceSynchronizer.h │ │ ├── GeneralGPUObject.h │ │ ├── LocalBindingGroupLayoutCache.h │ │ ├── MeshLayout.cpp │ │ ├── MeshLayout.h │ │ ├── Pipeline.cpp │ │ ├── Pipeline.h │ │ ├── PipelineCache.h │ │ ├── PipelineDesc.h │ │ ├── PipelineDescKey.h │ │ ├── Queue.h │ │ ├── Sampler.cpp │ │ ├── Sampler.h │ │ ├── ShaderBindingTableBuilder.cpp │ │ ├── ShaderBindingTableBuilder.h │ │ ├── Texture.h │ │ ├── Texture │ │ │ ├── PooledTexture.cpp │ │ │ ├── PooledTexture.h │ │ │ ├── StatefulTexture.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureSubrscMap.h │ │ │ └── TextureView.h │ │ └── Utility │ │ │ ├── ClearBufferUtils.cpp │ │ │ ├── ClearBufferUtils.h │ │ │ ├── ClearTextureUtils.cpp │ │ │ ├── ClearTextureUtils.h │ │ │ ├── CopyTextureUtils.cpp │ │ │ └── CopyTextureUtils.h │ ├── RenderGraph │ │ ├── Compiler.cpp │ │ ├── Compiler.h │ │ ├── Executable.cpp │ │ ├── Executable.h │ │ ├── Graph.cpp │ │ ├── Graph.h │ │ ├── GraphUtility.inl │ │ ├── Label.h │ │ ├── Pass.cpp │ │ ├── Pass.h │ │ ├── Resource.cpp │ │ ├── Resource.h │ │ └── UseInfo.h │ └── Shader │ │ ├── Compiler.cpp │ │ ├── Compiler.h │ │ ├── DSL │ │ ├── BindingGroup.h │ │ ├── BindingGroup │ │ │ ├── BindingGroupBuilder_eDSL.h │ │ │ ├── BindingGroupDefinition.h │ │ │ ├── BindingGroupHelpers.h │ │ │ └── ResourceProxy.h │ │ ├── Entry.h │ │ ├── Entry │ │ │ ├── ArgumentTrait.h │ │ │ ├── ArgumentWrapper.h │ │ │ ├── ComputeEntry.cpp │ │ │ ├── ComputeEntry.h │ │ │ ├── ComputeEntry.inl │ │ │ └── RenderGraphUtility.h │ │ ├── eDSL.h │ │ └── eDSL │ │ │ ├── Common.h │ │ │ ├── ControlFlow │ │ │ ├── If.h │ │ │ ├── If.inl │ │ │ ├── While.h │ │ │ └── While.inl │ │ │ ├── NativeTypeMapping.h │ │ │ ├── RecordContext.cpp │ │ │ ├── RecordContext.h │ │ │ ├── Resource │ │ │ ├── eBuffer.h │ │ │ ├── eBuffer.inl │ │ │ ├── eConstantBuffer.h │ │ │ ├── eConstantBuffer.inl │ │ │ ├── eRaytracingAccelerationStructure.h │ │ │ ├── eSamplerState.h │ │ │ ├── eTexture.h │ │ │ └── eTexture.inl │ │ │ ├── Value │ │ │ ├── Struct.h │ │ │ ├── Struct.inl │ │ │ ├── StructTypeSet.h │ │ │ ├── StructTypeSet.inl │ │ │ ├── eMatrix4x4.h │ │ │ ├── eMatrix4x4.inl │ │ │ ├── eNumber.h │ │ │ ├── eNumber.inl │ │ │ ├── eVector2.h │ │ │ ├── eVector2.inl │ │ │ ├── eVector3.h │ │ │ ├── eVector3.inl │ │ │ ├── eVector4.h │ │ │ ├── eVector4.inl │ │ │ ├── eVectorSwizzle.h │ │ │ ├── eVectorSwizzle.inl │ │ │ ├── eVectorSwizzlePermutation.py │ │ │ └── eVectorSwizzlePermutation.txt │ │ │ ├── eVariable.cpp │ │ │ ├── eVariable.h │ │ │ └── eVariable.inl │ │ ├── Keyword.h │ │ ├── LocalShaderCache.cpp │ │ ├── LocalShaderCache.h │ │ ├── RegisterAllPreprocessedShaders.inl │ │ ├── Shader.h │ │ ├── ShaderBuilder.cpp │ │ ├── ShaderBuilder.h │ │ ├── ShaderDatabase.cpp │ │ ├── ShaderDatabase.h │ │ ├── ShaderInfo.h │ │ ├── ShaderManager.cpp │ │ ├── ShaderManager.h │ │ ├── StandaloneCompiler.cpp │ │ └── StandaloneCompiler.h │ ├── RHI │ ├── CMakeLists.txt │ ├── Capture │ │ ├── GPUCapturer.h │ │ └── PIXCapturer.cpp │ ├── DirectX12 │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── Context │ │ │ ├── BackBufferSemaphore.h │ │ │ ├── CPUDescriptorHandleManager.cpp │ │ │ ├── CPUDescriptorHandleManager.h │ │ │ ├── DescriptorHeap.cpp │ │ │ ├── DescriptorHeap.h │ │ │ ├── Device.cpp │ │ │ ├── Device.h │ │ │ ├── Instance.cpp │ │ │ ├── Instance.h │ │ │ ├── Surface.h │ │ │ ├── Swapchain.cpp │ │ │ └── Swapchain.h │ │ ├── Pipeline │ │ │ ├── BindingGroup.cpp │ │ │ ├── BindingGroup.h │ │ │ ├── BindingGroupLayout.h │ │ │ ├── BindingLayout.cpp │ │ │ ├── BindingLayout.h │ │ │ ├── ComputePipeline.h │ │ │ ├── GraphicsPipeline.h │ │ │ ├── RayTracingLibrary.h │ │ │ ├── RayTracingPipeline.cpp │ │ │ ├── RayTracingPipeline.h │ │ │ ├── Shader.h │ │ │ ├── WorkGraphPipeline.cpp │ │ │ └── WorkGraphPipeline.h │ │ ├── Queue │ │ │ ├── CommandBuffer.cpp │ │ │ ├── CommandBuffer.h │ │ │ ├── CommandPool.cpp │ │ │ ├── CommandPool.h │ │ │ ├── Fence.cpp │ │ │ ├── Fence.h │ │ │ ├── Queue.cpp │ │ │ ├── Queue.h │ │ │ └── Semaphore.h │ │ ├── RayTracing │ │ │ ├── Blas.h │ │ │ ├── BlasPrebuildInfo.cpp │ │ │ ├── BlasPrebuildInfo.h │ │ │ ├── Tlas.cpp │ │ │ ├── Tlas.h │ │ │ ├── TlasPrebuildInfo.cpp │ │ │ └── TlasPrebuildInfo.h │ │ └── Resource │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── BufferView.cpp │ │ │ ├── BufferView.h │ │ │ ├── Sampler.cpp │ │ │ ├── Sampler.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureView.cpp │ │ │ ├── TextureView.h │ │ │ └── TransientResourcePool │ │ │ ├── FreeMemorySegmentSet.cpp │ │ │ ├── FreeMemorySegmentSet.h │ │ │ ├── MemoryBlockPool.cpp │ │ │ ├── MemoryBlockPool.h │ │ │ ├── TransientResourcePool.cpp │ │ │ └── TransientResourcePool.h │ ├── Helper │ │ ├── D3D12BindingGroupLayoutAux.cpp │ │ ├── D3D12BindingGroupLayoutAux.h │ │ ├── MemorySegmentUsageTracker.cpp │ │ └── MemorySegmentUsageTracker.h │ ├── RHI.cpp │ ├── RHI.h │ ├── RHIDeclaration.h │ ├── Vulkan │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── Context │ │ │ ├── BackBufferSemaphore.cpp │ │ │ ├── BackBufferSemaphore.h │ │ │ ├── Device.cpp │ │ │ ├── Device.h │ │ │ ├── Instance.cpp │ │ │ ├── Instance.h │ │ │ ├── PhysicalDevice.cpp │ │ │ ├── PhysicalDevice.h │ │ │ ├── Surface.cpp │ │ │ ├── Surface.h │ │ │ ├── Swapchain.cpp │ │ │ └── Swapchain.h │ │ ├── Pipeline │ │ │ ├── BindingGroup.cpp │ │ │ ├── BindingGroup.h │ │ │ ├── BindingGroupLayout.cpp │ │ │ ├── BindingGroupLayout.h │ │ │ ├── BindingLayout.cpp │ │ │ ├── BindingLayout.h │ │ │ ├── ComputePipeline.cpp │ │ │ ├── ComputePipeline.h │ │ │ ├── GraphicsPipeline.cpp │ │ │ ├── GraphicsPipeline.h │ │ │ ├── RayTracingLibrary.cpp │ │ │ ├── RayTracingLibrary.h │ │ │ ├── RayTracingPipeline.cpp │ │ │ ├── RayTracingPipeline.h │ │ │ ├── Shader.cpp │ │ │ ├── Shader.h │ │ │ └── WorkGraphPipeline.h │ │ ├── Queue │ │ │ ├── CommandBuffer.cpp │ │ │ ├── CommandBuffer.h │ │ │ ├── CommandPool.cpp │ │ │ ├── CommandPool.h │ │ │ ├── Fence.cpp │ │ │ ├── Fence.h │ │ │ ├── Queue.cpp │ │ │ ├── Queue.h │ │ │ ├── Semaphore.cpp │ │ │ └── Semaphore.h │ │ ├── RayTracing │ │ │ ├── Blas.cpp │ │ │ ├── Blas.h │ │ │ ├── BlasPrebuildInfo.cpp │ │ │ ├── BlasPrebuildInfo.h │ │ │ ├── Tlas.cpp │ │ │ ├── Tlas.h │ │ │ ├── TlasPrebuildInfo.cpp │ │ │ └── TlasPrebuildInfo.h │ │ └── Resource │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── BufferView.cpp │ │ │ ├── BufferView.h │ │ │ ├── Sampler.cpp │ │ │ ├── Sampler.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureView.cpp │ │ │ ├── TextureView.h │ │ │ └── TransientResourcePool.h │ └── Window │ │ ├── KeyCode.h │ │ ├── NativeWindow.cpp │ │ ├── NativeWindow.h │ │ ├── Window.cpp │ │ ├── Window.h │ │ ├── WindowInput.cpp │ │ └── WindowInput.h │ ├── Rtrc.h │ ├── ShaderCommon │ ├── CMakeLists.txt │ ├── DXC │ │ ├── DXC.cpp │ │ └── DXC.h │ ├── Parser │ │ ├── ParserHelper.cpp │ │ ├── ParserHelper.h │ │ ├── RawShader.cpp │ │ ├── RawShader.h │ │ ├── RtrcSyntaxParser.cpp │ │ ├── RtrcSyntaxParser.h │ │ ├── ShaderParser.cpp │ │ └── ShaderParser.h │ ├── Preprocess │ │ ├── RegisterAllocator.cpp │ │ ├── RegisterAllocator.h │ │ ├── ShaderPreprocessing.cpp │ │ └── ShaderPreprocessing.h │ └── Reflection │ │ ├── D3D12Reflection.cpp │ │ ├── D3D12Reflection.h │ │ ├── SPIRVReflection.cpp │ │ ├── SPIRVReflection.h │ │ └── ShaderReflection.h │ ├── ShaderPreprocessor │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── RegisterAllPreprocessedShaders.inl │ └── RegisterShaders.cpp │ ├── ToolKit │ ├── Application │ │ ├── Application.cpp │ │ ├── Application.h │ │ ├── SimpleApplication.cpp │ │ └── SimpleApplication.h │ ├── Atmosphere │ │ ├── Atmosphere.cpp │ │ ├── Atmosphere.h │ │ └── Shader │ │ │ ├── Atmosphere.hlsl │ │ │ └── Atmosphere.shader │ ├── BufferPool │ │ ├── FixedSizedTransientConstantBufferBindingGroupPool.cpp │ │ ├── FixedSizedTransientConstantBufferBindingGroupPool.h │ │ ├── LinearTransientConstantBufferAllocator.cpp │ │ ├── LinearTransientConstantBufferAllocator.h │ │ ├── TransientConstantBufferAllocator.cpp │ │ ├── TransientConstantBufferAllocator.h │ │ ├── UploadBufferPool.cpp │ │ └── UploadBufferPool.h │ ├── CMakeLists.txt │ ├── Camera │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── EditorCameraController.cpp │ │ └── EditorCameraController.h │ ├── DFDM │ │ ├── DFDM.cpp │ │ ├── DFDM.h │ │ └── DFDM.shader │ ├── Gizmo │ │ ├── Gizmo.shader │ │ ├── GizmoBuilder.cpp │ │ ├── GizmoBuilder.h │ │ ├── GizmoRenderer.cpp │ │ └── GizmoRenderer.h │ ├── ImGui │ │ ├── ImGuiInstance.cpp │ │ └── ImGuiInstance.h │ ├── IndirectArg │ │ ├── PrepareThreadGroupCountForIndirectDispatch.cpp │ │ ├── PrepareThreadGroupCountForIndirectDispatch.h │ │ └── PrepareThreadGroupCountForIndirectDispatch.shader │ ├── Mesh │ │ └── UniformGrid.h │ ├── OT2D │ │ ├── OT2D.cpp │ │ └── OT2D.h │ ├── PcgState │ │ ├── PcgStateTexture.cpp │ │ ├── PcgStateTexture.h │ │ └── PcgStateTexture.shader │ ├── Resource │ │ ├── BindlessResourceManager.h │ │ ├── ResourceManager.cpp │ │ └── ResourceManager.h │ ├── Shader │ │ └── Common │ │ │ ├── Color.hlsl │ │ │ ├── Frame.hlsl │ │ │ └── Random.hlsl │ └── ToolKit.h │ └── eDSL.h └── Test ├── CMakeLists.txt ├── Expansion.cpp ├── Math.cpp └── Test.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/.gitignore -------------------------------------------------------------------------------- /Asset/Builtin/Mesh/Cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Builtin/Mesh/Cube.obj -------------------------------------------------------------------------------- /Asset/Sample/01.TexturedQuad/Quad.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/01.TexturedQuad/Quad.obj -------------------------------------------------------------------------------- /Asset/Sample/03.BindlessTexture/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/03.BindlessTexture/0.png -------------------------------------------------------------------------------- /Asset/Sample/03.BindlessTexture/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/03.BindlessTexture/1.png -------------------------------------------------------------------------------- /Asset/Sample/03.BindlessTexture/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/03.BindlessTexture/2.png -------------------------------------------------------------------------------- /Asset/Sample/05.PathTracing/Room.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/05.PathTracing/Room.obj -------------------------------------------------------------------------------- /Asset/Sample/05.PathTracing/Torus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/05.PathTracing/Torus.obj -------------------------------------------------------------------------------- /Asset/Sample/08.FADM/Mesh0.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/08.FADM/Mesh0.obj -------------------------------------------------------------------------------- /Asset/Sample/08.FADM/Mesh1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/08.FADM/Mesh1.obj -------------------------------------------------------------------------------- /Asset/Sample/15.HeatMethod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Asset/Sample/15.HeatMethod/.gitignore -------------------------------------------------------------------------------- /CMake/TargetDependency.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/CMake/TargetDependency.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Documents/Gallery/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Gallery/01.png -------------------------------------------------------------------------------- /Documents/Samples_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_01.png -------------------------------------------------------------------------------- /Documents/Samples_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_02.png -------------------------------------------------------------------------------- /Documents/Samples_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_03.png -------------------------------------------------------------------------------- /Documents/Samples_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_04.png -------------------------------------------------------------------------------- /Documents/Samples_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_05.png -------------------------------------------------------------------------------- /Documents/Samples_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_06.png -------------------------------------------------------------------------------- /Documents/Samples_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_07.png -------------------------------------------------------------------------------- /Documents/Samples_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_08.png -------------------------------------------------------------------------------- /Documents/Samples_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_09.png -------------------------------------------------------------------------------- /Documents/Samples_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_10.png -------------------------------------------------------------------------------- /Documents/Samples_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_11.png -------------------------------------------------------------------------------- /Documents/Samples_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_12.png -------------------------------------------------------------------------------- /Documents/Samples_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_13.png -------------------------------------------------------------------------------- /Documents/Samples_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_14.png -------------------------------------------------------------------------------- /Documents/Samples_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_15.png -------------------------------------------------------------------------------- /Documents/Samples_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_16.png -------------------------------------------------------------------------------- /Documents/Samples_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_17.png -------------------------------------------------------------------------------- /Documents/Samples_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_18.png -------------------------------------------------------------------------------- /Documents/Samples_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_19.png -------------------------------------------------------------------------------- /Documents/Samples_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_20.png -------------------------------------------------------------------------------- /Documents/Samples_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Samples_21.png -------------------------------------------------------------------------------- /Documents/Shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Documents/Shader.md -------------------------------------------------------------------------------- /External/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/CMakeLists.txt -------------------------------------------------------------------------------- /External/Catch2/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/.bazelrc -------------------------------------------------------------------------------- /External/Catch2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/.clang-format -------------------------------------------------------------------------------- /External/Catch2/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/.clang-tidy -------------------------------------------------------------------------------- /External/Catch2/.conan/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/.conan/build.py -------------------------------------------------------------------------------- /External/Catch2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/.gitattributes -------------------------------------------------------------------------------- /External/Catch2/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/.github/FUNDING.yml -------------------------------------------------------------------------------- /External/Catch2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/.gitignore -------------------------------------------------------------------------------- /External/Catch2/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/BUILD.bazel -------------------------------------------------------------------------------- /External/Catch2/CMake/FindGcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/CMake/FindGcov.cmake -------------------------------------------------------------------------------- /External/Catch2/CMake/FindLcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/CMake/FindLcov.cmake -------------------------------------------------------------------------------- /External/Catch2/CMake/catch2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/CMake/catch2.pc.in -------------------------------------------------------------------------------- /External/Catch2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/CMakeLists.txt -------------------------------------------------------------------------------- /External/Catch2/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/CMakePresets.json -------------------------------------------------------------------------------- /External/Catch2/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /External/Catch2/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/Doxyfile -------------------------------------------------------------------------------- /External/Catch2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/LICENSE.txt -------------------------------------------------------------------------------- /External/Catch2/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/MODULE.bazel -------------------------------------------------------------------------------- /External/Catch2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/README.md -------------------------------------------------------------------------------- /External/Catch2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/SECURITY.md -------------------------------------------------------------------------------- /External/Catch2/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/WORKSPACE.bazel -------------------------------------------------------------------------------- /External/Catch2/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/appveyor.yml -------------------------------------------------------------------------------- /External/Catch2/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/codecov.yml -------------------------------------------------------------------------------- /External/Catch2/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/conanfile.py -------------------------------------------------------------------------------- /External/Catch2/docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/Readme.md -------------------------------------------------------------------------------- /External/Catch2/docs/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/assertions.md -------------------------------------------------------------------------------- /External/Catch2/docs/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/benchmarks.md -------------------------------------------------------------------------------- /External/Catch2/docs/ci-and-misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/ci-and-misc.md -------------------------------------------------------------------------------- /External/Catch2/docs/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/command-line.md -------------------------------------------------------------------------------- /External/Catch2/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/configuration.md -------------------------------------------------------------------------------- /External/Catch2/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/contributing.md -------------------------------------------------------------------------------- /External/Catch2/docs/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/deprecations.md -------------------------------------------------------------------------------- /External/Catch2/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/faq.md -------------------------------------------------------------------------------- /External/Catch2/docs/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/generators.md -------------------------------------------------------------------------------- /External/Catch2/docs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/limitations.md -------------------------------------------------------------------------------- /External/Catch2/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/logging.md -------------------------------------------------------------------------------- /External/Catch2/docs/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/matchers.md -------------------------------------------------------------------------------- /External/Catch2/docs/other-macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/other-macros.md -------------------------------------------------------------------------------- /External/Catch2/docs/own-main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/own-main.md -------------------------------------------------------------------------------- /External/Catch2/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/release-notes.md -------------------------------------------------------------------------------- /External/Catch2/docs/reporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/reporters.md -------------------------------------------------------------------------------- /External/Catch2/docs/test-fixtures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/test-fixtures.md -------------------------------------------------------------------------------- /External/Catch2/docs/tostring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/tostring.md -------------------------------------------------------------------------------- /External/Catch2/docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/tutorial.md -------------------------------------------------------------------------------- /External/Catch2/docs/usage-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/usage-tips.md -------------------------------------------------------------------------------- /External/Catch2/docs/why-catch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/docs/why-catch.md -------------------------------------------------------------------------------- /External/Catch2/extras/Catch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/extras/Catch.cmake -------------------------------------------------------------------------------- /External/Catch2/extras/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/extras/gdbinit -------------------------------------------------------------------------------- /External/Catch2/extras/lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/extras/lldbinit -------------------------------------------------------------------------------- /External/Catch2/fuzzing/NullOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/fuzzing/NullOStream.h -------------------------------------------------------------------------------- /External/Catch2/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/mdsnippets.json -------------------------------------------------------------------------------- /External/Catch2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/meson.build -------------------------------------------------------------------------------- /External/Catch2/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/meson_options.txt -------------------------------------------------------------------------------- /External/Catch2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/src/CMakeLists.txt -------------------------------------------------------------------------------- /External/Catch2/tests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/tests/BUILD.bazel -------------------------------------------------------------------------------- /External/Catch2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /External/Catch2/tests/SelfTest/Misc/invalid-test-names.input: -------------------------------------------------------------------------------- 1 | Test with special, characters in \" name 2 | -------------------------------------------------------------------------------- /External/Catch2/tests/SelfTest/Misc/special-characters-in-file.input: -------------------------------------------------------------------------------- 1 | Test with special\, characters \"in name 2 | -------------------------------------------------------------------------------- /External/Catch2/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/tests/meson.build -------------------------------------------------------------------------------- /External/Catch2/third_party/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/Catch2/third_party/clara.hpp -------------------------------------------------------------------------------- /External/D3D12MemAlloc/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | bin/ -------------------------------------------------------------------------------- /External/D3D12MemAlloc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/CHANGELOG.md -------------------------------------------------------------------------------- /External/D3D12MemAlloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/CMakeLists.txt -------------------------------------------------------------------------------- /External/D3D12MemAlloc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/LICENSE.txt -------------------------------------------------------------------------------- /External/D3D12MemAlloc/NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/NOTICES.txt -------------------------------------------------------------------------------- /External/D3D12MemAlloc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/README.md -------------------------------------------------------------------------------- /External/D3D12MemAlloc/docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/D3D12MemAlloc/src/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/src/Common.cpp -------------------------------------------------------------------------------- /External/D3D12MemAlloc/src/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/src/Common.h -------------------------------------------------------------------------------- /External/D3D12MemAlloc/src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/src/Doxyfile -------------------------------------------------------------------------------- /External/D3D12MemAlloc/src/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/src/Tests.cpp -------------------------------------------------------------------------------- /External/D3D12MemAlloc/src/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/D3D12MemAlloc/src/Tests.h -------------------------------------------------------------------------------- /External/SPIRV-Reflect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/SPIRV-Reflect/CMakeLists.txt -------------------------------------------------------------------------------- /External/SPIRV-Reflect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/SPIRV-Reflect/LICENSE -------------------------------------------------------------------------------- /External/VulkanMemoryAllocator/docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/avir/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/CMakeLists.txt -------------------------------------------------------------------------------- /External/avir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/LICENSE -------------------------------------------------------------------------------- /External/avir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/README.md -------------------------------------------------------------------------------- /External/avir/avir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/avir.h -------------------------------------------------------------------------------- /External/avir/avir_dil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/avir_dil.h -------------------------------------------------------------------------------- /External/avir/avir_float4_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/avir_float4_sse.h -------------------------------------------------------------------------------- /External/avir/avir_float8_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/avir_float8_avx.h -------------------------------------------------------------------------------- /External/avir/lancir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/avir/lancir.h -------------------------------------------------------------------------------- /External/bvh/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | build/ 3 | install/ 4 | -------------------------------------------------------------------------------- /External/bvh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/CMakeLists.txt -------------------------------------------------------------------------------- /External/bvh/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/LICENSE.txt -------------------------------------------------------------------------------- /External/bvh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/README.md -------------------------------------------------------------------------------- /External/bvh/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/chart.png -------------------------------------------------------------------------------- /External/bvh/cmake/Install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/cmake/Install.cmake -------------------------------------------------------------------------------- /External/bvh/render.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/render.jpg -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/bbox.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/bvh.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/c_api/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/c_api/bvh.cpp -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/c_api/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/c_api/bvh.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/executor.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/index.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/node.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/platform.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/ray.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/sphere.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/stack.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/stream.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/thread_pool.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/tri.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/utils.h -------------------------------------------------------------------------------- /External/bvh/src/bvh/v2/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/src/bvh/v2/vec.h -------------------------------------------------------------------------------- /External/bvh/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/test/CMakeLists.txt -------------------------------------------------------------------------------- /External/bvh/test/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/test/benchmark.cpp -------------------------------------------------------------------------------- /External/bvh/test/c_api_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/test/c_api_example.c -------------------------------------------------------------------------------- /External/bvh/test/load_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/test/load_obj.cpp -------------------------------------------------------------------------------- /External/bvh/test/load_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/test/load_obj.h -------------------------------------------------------------------------------- /External/bvh/test/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/test/serialize.cpp -------------------------------------------------------------------------------- /External/bvh/test/simple_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh/test/simple_example.cpp -------------------------------------------------------------------------------- /External/bvh_old/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /External/bvh_old/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/CMakeLists.txt -------------------------------------------------------------------------------- /External/bvh_old/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/LICENSE.txt -------------------------------------------------------------------------------- /External/bvh_old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/README.md -------------------------------------------------------------------------------- /External/bvh_old/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/chart.png -------------------------------------------------------------------------------- /External/bvh_old/include/bvh/bvh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/include/bvh/bvh.hpp -------------------------------------------------------------------------------- /External/bvh_old/include/bvh/ray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/include/bvh/ray.hpp -------------------------------------------------------------------------------- /External/bvh_old/render.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/render.jpg -------------------------------------------------------------------------------- /External/bvh_old/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/test/CMakeLists.txt -------------------------------------------------------------------------------- /External/bvh_old/test/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/test/benchmark.cpp -------------------------------------------------------------------------------- /External/bvh_old/test/obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/test/obj.hpp -------------------------------------------------------------------------------- /External/bvh_old/test/refit_bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/bvh_old/test/refit_bvh.cpp -------------------------------------------------------------------------------- /External/cista/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cista/CMakeLists.txt -------------------------------------------------------------------------------- /External/cista/cista.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cista/cista.h -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/BUILD.bazel -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/CHANGELOG.md -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/CMakeLists.txt -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/INSTALL -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/LICENSE -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/README.md -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/WORKSPACE -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/test/catch.hpp -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/test/fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cxxopts-3.1.1/test/fuzz.cpp -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/test/link_b.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /External/cxxopts-3.1.1/test/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /External/cy/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/.editorconfig -------------------------------------------------------------------------------- /External/cy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/CMakeLists.txt -------------------------------------------------------------------------------- /External/cy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/LICENSE -------------------------------------------------------------------------------- /External/cy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/README.md -------------------------------------------------------------------------------- /External/cy/cyAlphaDistribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyAlphaDistribution.h -------------------------------------------------------------------------------- /External/cy/cyBVH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyBVH.h -------------------------------------------------------------------------------- /External/cy/cyColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyColor.h -------------------------------------------------------------------------------- /External/cy/cyCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyCore.h -------------------------------------------------------------------------------- /External/cy/cyGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyGL.h -------------------------------------------------------------------------------- /External/cy/cyHairFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyHairFile.h -------------------------------------------------------------------------------- /External/cy/cyHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyHeap.h -------------------------------------------------------------------------------- /External/cy/cyIVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyIVector.h -------------------------------------------------------------------------------- /External/cy/cyLightingGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyLightingGrid.h -------------------------------------------------------------------------------- /External/cy/cyMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyMatrix.h -------------------------------------------------------------------------------- /External/cy/cyPointCloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyPointCloud.h -------------------------------------------------------------------------------- /External/cy/cyPolynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyPolynomial.h -------------------------------------------------------------------------------- /External/cy/cyQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyQuat.h -------------------------------------------------------------------------------- /External/cy/cySampleElim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cySampleElim.h -------------------------------------------------------------------------------- /External/cy/cyTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyTimer.h -------------------------------------------------------------------------------- /External/cy/cyTriMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyTriMesh.h -------------------------------------------------------------------------------- /External/cy/cyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/cy/cyVector.h -------------------------------------------------------------------------------- /External/dxc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/CMakeLists.txt -------------------------------------------------------------------------------- /External/dxc/LICENSE-LLVM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/LICENSE-LLVM.txt -------------------------------------------------------------------------------- /External/dxc/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/LICENSE-MIT.txt -------------------------------------------------------------------------------- /External/dxc/LICENSE-MS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/LICENSE-MS.txt -------------------------------------------------------------------------------- /External/dxc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/README.md -------------------------------------------------------------------------------- /External/dxc/bin/dxc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/bin/dxc.exe -------------------------------------------------------------------------------- /External/dxc/bin/dxcompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/bin/dxcompiler.dll -------------------------------------------------------------------------------- /External/dxc/bin/dxil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/bin/dxil.dll -------------------------------------------------------------------------------- /External/dxc/inc/rtrc_dxc/dxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/inc/rtrc_dxc/dxcapi.h -------------------------------------------------------------------------------- /External/dxc/inc/rtrc_dxc/dxcerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/inc/rtrc_dxc/dxcerrors.h -------------------------------------------------------------------------------- /External/dxc/inc/rtrc_dxc/dxcisense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/inc/rtrc_dxc/dxcisense.h -------------------------------------------------------------------------------- /External/dxc/lib/dxcompiler.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/dxc/lib/dxcompiler.lib -------------------------------------------------------------------------------- /External/eigen-3.4.0.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/eigen-3.4.0.7z -------------------------------------------------------------------------------- /External/geometry-central/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/geometry-central/.gitignore -------------------------------------------------------------------------------- /External/geometry-central/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/geometry-central/LICENSE -------------------------------------------------------------------------------- /External/geometry-central/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/geometry-central/README.md -------------------------------------------------------------------------------- /External/geometry-central/deps/downloads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /External/geometry-central/include/geometrycentral/surface/integer_coordinates_intrinsic_triangulation.ipp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/geometry-central/test/.gitignore: -------------------------------------------------------------------------------- 1 | !assets/* 2 | -------------------------------------------------------------------------------- /External/glfw/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/.github/CODEOWNERS -------------------------------------------------------------------------------- /External/glfw/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/.mailmap -------------------------------------------------------------------------------- /External/glfw/CMake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/CMake/Info.plist.in -------------------------------------------------------------------------------- /External/glfw/CMake/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/CMake/glfw3.pc.in -------------------------------------------------------------------------------- /External/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /External/glfw/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/CONTRIBUTORS.md -------------------------------------------------------------------------------- /External/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/LICENSE.md -------------------------------------------------------------------------------- /External/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/README.md -------------------------------------------------------------------------------- /External/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/getopt.c -------------------------------------------------------------------------------- /External/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/getopt.h -------------------------------------------------------------------------------- /External/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /External/glfw/deps/glad/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/glad/gles2.h -------------------------------------------------------------------------------- /External/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /External/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/linmath.h -------------------------------------------------------------------------------- /External/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /External/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /External/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /External/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /External/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /External/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /External/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /External/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /External/glfw/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/CMakeLists.txt -------------------------------------------------------------------------------- /External/glfw/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /External/glfw/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/Doxyfile.in -------------------------------------------------------------------------------- /External/glfw/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /External/glfw/docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/SUPPORT.md -------------------------------------------------------------------------------- /External/glfw/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/build.dox -------------------------------------------------------------------------------- /External/glfw/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/compat.dox -------------------------------------------------------------------------------- /External/glfw/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/compile.dox -------------------------------------------------------------------------------- /External/glfw/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/context.dox -------------------------------------------------------------------------------- /External/glfw/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/extra.css -------------------------------------------------------------------------------- /External/glfw/docs/extra.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/extra.css.map -------------------------------------------------------------------------------- /External/glfw/docs/extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/extra.scss -------------------------------------------------------------------------------- /External/glfw/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/footer.html -------------------------------------------------------------------------------- /External/glfw/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/header.html -------------------------------------------------------------------------------- /External/glfw/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/input.dox -------------------------------------------------------------------------------- /External/glfw/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/internal.dox -------------------------------------------------------------------------------- /External/glfw/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/intro.dox -------------------------------------------------------------------------------- /External/glfw/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/main.dox -------------------------------------------------------------------------------- /External/glfw/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/monitor.dox -------------------------------------------------------------------------------- /External/glfw/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/moving.dox -------------------------------------------------------------------------------- /External/glfw/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/news.dox -------------------------------------------------------------------------------- /External/glfw/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/quick.dox -------------------------------------------------------------------------------- /External/glfw/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/spaces.svg -------------------------------------------------------------------------------- /External/glfw/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/vulkan.dox -------------------------------------------------------------------------------- /External/glfw/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/docs/window.dox -------------------------------------------------------------------------------- /External/glfw/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/CMakeLists.txt -------------------------------------------------------------------------------- /External/glfw/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/boing.c -------------------------------------------------------------------------------- /External/glfw/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/gears.c -------------------------------------------------------------------------------- /External/glfw/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/glfw.icns -------------------------------------------------------------------------------- /External/glfw/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/glfw.ico -------------------------------------------------------------------------------- /External/glfw/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/glfw.rc -------------------------------------------------------------------------------- /External/glfw/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/heightmap.c -------------------------------------------------------------------------------- /External/glfw/examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/offscreen.c -------------------------------------------------------------------------------- /External/glfw/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/particles.c -------------------------------------------------------------------------------- /External/glfw/examples/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/sharing.c -------------------------------------------------------------------------------- /External/glfw/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/splitview.c -------------------------------------------------------------------------------- /External/glfw/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/wave.c -------------------------------------------------------------------------------- /External/glfw/examples/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/examples/windows.c -------------------------------------------------------------------------------- /External/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /External/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /External/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /External/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /External/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /External/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /External/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /External/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /External/glfw/src/cocoa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_time.h -------------------------------------------------------------------------------- /External/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /External/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/context.c -------------------------------------------------------------------------------- /External/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/egl_context.c -------------------------------------------------------------------------------- /External/glfw/src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/glfw.rc.in -------------------------------------------------------------------------------- /External/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/glx_context.c -------------------------------------------------------------------------------- /External/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/init.c -------------------------------------------------------------------------------- /External/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/input.c -------------------------------------------------------------------------------- /External/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/internal.h -------------------------------------------------------------------------------- /External/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /External/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /External/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/mappings.h -------------------------------------------------------------------------------- /External/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /External/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/monitor.c -------------------------------------------------------------------------------- /External/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /External/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/null_init.c -------------------------------------------------------------------------------- /External/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /External/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /External/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /External/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/null_platform.h -------------------------------------------------------------------------------- /External/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/null_window.c -------------------------------------------------------------------------------- /External/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /External/glfw/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/platform.c -------------------------------------------------------------------------------- /External/glfw/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/platform.h -------------------------------------------------------------------------------- /External/glfw/src/posix_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/posix_module.c -------------------------------------------------------------------------------- /External/glfw/src/posix_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/posix_poll.c -------------------------------------------------------------------------------- /External/glfw/src/posix_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/posix_poll.h -------------------------------------------------------------------------------- /External/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /External/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /External/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/posix_time.c -------------------------------------------------------------------------------- /External/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/posix_time.h -------------------------------------------------------------------------------- /External/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/vulkan.c -------------------------------------------------------------------------------- /External/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /External/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_init.c -------------------------------------------------------------------------------- /External/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /External/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /External/glfw/src/win32_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_module.c -------------------------------------------------------------------------------- /External/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /External/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /External/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /External/glfw/src/win32_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_thread.h -------------------------------------------------------------------------------- /External/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_time.c -------------------------------------------------------------------------------- /External/glfw/src/win32_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_time.h -------------------------------------------------------------------------------- /External/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/win32_window.c -------------------------------------------------------------------------------- /External/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/window.c -------------------------------------------------------------------------------- /External/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/wl_init.c -------------------------------------------------------------------------------- /External/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /External/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /External/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/wl_window.c -------------------------------------------------------------------------------- /External/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/x11_init.c -------------------------------------------------------------------------------- /External/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /External/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /External/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/x11_window.c -------------------------------------------------------------------------------- /External/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /External/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /External/glfw/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/CMakeLists.txt -------------------------------------------------------------------------------- /External/glfw/tests/allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/allocator.c -------------------------------------------------------------------------------- /External/glfw/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/clipboard.c -------------------------------------------------------------------------------- /External/glfw/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/cursor.c -------------------------------------------------------------------------------- /External/glfw/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/empty.c -------------------------------------------------------------------------------- /External/glfw/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/events.c -------------------------------------------------------------------------------- /External/glfw/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/gamma.c -------------------------------------------------------------------------------- /External/glfw/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/glfwinfo.c -------------------------------------------------------------------------------- /External/glfw/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/icon.c -------------------------------------------------------------------------------- /External/glfw/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/iconify.c -------------------------------------------------------------------------------- /External/glfw/tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/inputlag.c -------------------------------------------------------------------------------- /External/glfw/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/joysticks.c -------------------------------------------------------------------------------- /External/glfw/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/monitors.c -------------------------------------------------------------------------------- /External/glfw/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/msaa.c -------------------------------------------------------------------------------- /External/glfw/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/reopen.c -------------------------------------------------------------------------------- /External/glfw/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/tearing.c -------------------------------------------------------------------------------- /External/glfw/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/threads.c -------------------------------------------------------------------------------- /External/glfw/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/timeout.c -------------------------------------------------------------------------------- /External/glfw/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/title.c -------------------------------------------------------------------------------- /External/glfw/tests/triangle-vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/triangle-vulkan.c -------------------------------------------------------------------------------- /External/glfw/tests/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/glfw/tests/window.c -------------------------------------------------------------------------------- /External/half/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/half/CMakeLists.txt -------------------------------------------------------------------------------- /External/half/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/half/ChangeLog.txt -------------------------------------------------------------------------------- /External/half/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/half/LICENSE.txt -------------------------------------------------------------------------------- /External/half/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/half/README.txt -------------------------------------------------------------------------------- /External/half/include/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/half/include/half.hpp -------------------------------------------------------------------------------- /External/imgui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/.editorconfig -------------------------------------------------------------------------------- /External/imgui/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/.gitattributes -------------------------------------------------------------------------------- /External/imgui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/.gitignore -------------------------------------------------------------------------------- /External/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /External/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/LICENSE.txt -------------------------------------------------------------------------------- /External/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imconfig.h -------------------------------------------------------------------------------- /External/imgui/imfilebrowser-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imfilebrowser-LICENSE -------------------------------------------------------------------------------- /External/imgui/imfilebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imfilebrowser.h -------------------------------------------------------------------------------- /External/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imgui.cpp -------------------------------------------------------------------------------- /External/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imgui.h -------------------------------------------------------------------------------- /External/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /External/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /External/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imgui_internal.h -------------------------------------------------------------------------------- /External/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /External/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /External/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /External/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /External/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /External/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/json/CMakeLists.txt -------------------------------------------------------------------------------- /External/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/json/json.hpp -------------------------------------------------------------------------------- /External/libigl-2.5.0/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/.gitattributes -------------------------------------------------------------------------------- /External/libigl-2.5.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/.gitignore -------------------------------------------------------------------------------- /External/libigl-2.5.0/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/.mailmap -------------------------------------------------------------------------------- /External/libigl-2.5.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/CMakeLists.txt -------------------------------------------------------------------------------- /External/libigl-2.5.0/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/LICENSE.GPL -------------------------------------------------------------------------------- /External/libigl-2.5.0/LICENSE.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/LICENSE.MPL2 -------------------------------------------------------------------------------- /External/libigl-2.5.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/README.md -------------------------------------------------------------------------------- /External/libigl-2.5.0/cmake/recipes/hunter/catch2.cmake: -------------------------------------------------------------------------------- 1 | include(${CMAKE_CURRENT_LIST_DIR}/../external/catch2.cmake) 2 | -------------------------------------------------------------------------------- /External/libigl-2.5.0/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/docs/index.md -------------------------------------------------------------------------------- /External/libigl-2.5.0/include/igl/IO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/include/igl/IO -------------------------------------------------------------------------------- /External/libigl-2.5.0/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/libigl-2.5.0/tests/main.cpp -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/.bazelignore: -------------------------------------------------------------------------------- 1 | .git 2 | .github 3 | test 4 | doc 5 | cmake -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/.bazelrc -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.3.2 2 | -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/.gitignore -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/BUILD.bazel -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/LICENSE -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/README.md -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/SECURITY.md -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/meson.build -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/magic_enum-0.9.5/package.xml -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/test/.bazelrc: -------------------------------------------------------------------------------- 1 | import %workspace%/../.bazelrc 2 | 3 | -------------------------------------------------------------------------------- /External/magic_enum-0.9.5/test/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/mimalloc/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/.gitattributes -------------------------------------------------------------------------------- /External/mimalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/.gitignore -------------------------------------------------------------------------------- /External/mimalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/CMakeLists.txt -------------------------------------------------------------------------------- /External/mimalloc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/LICENSE -------------------------------------------------------------------------------- /External/mimalloc/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/azure-pipelines.yml -------------------------------------------------------------------------------- /External/mimalloc/bin/minject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/bin/minject.exe -------------------------------------------------------------------------------- /External/mimalloc/bin/minject32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/bin/minject32.exe -------------------------------------------------------------------------------- /External/mimalloc/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/doc/doxyfile -------------------------------------------------------------------------------- /External/mimalloc/doc/ds-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/doc/ds-logo.jpg -------------------------------------------------------------------------------- /External/mimalloc/doc/ds-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/doc/ds-logo.png -------------------------------------------------------------------------------- /External/mimalloc/doc/mimalloc-doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/doc/mimalloc-doc.h -------------------------------------------------------------------------------- /External/mimalloc/doc/spades-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/doc/spades-logo.png -------------------------------------------------------------------------------- /External/mimalloc/doc/unreal-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/doc/unreal-logo.svg -------------------------------------------------------------------------------- /External/mimalloc/include/mimalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/include/mimalloc.h -------------------------------------------------------------------------------- /External/mimalloc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/readme.md -------------------------------------------------------------------------------- /External/mimalloc/src/alloc-aligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/alloc-aligned.c -------------------------------------------------------------------------------- /External/mimalloc/src/alloc-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/alloc-posix.c -------------------------------------------------------------------------------- /External/mimalloc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/alloc.c -------------------------------------------------------------------------------- /External/mimalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/arena.c -------------------------------------------------------------------------------- /External/mimalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/bitmap.c -------------------------------------------------------------------------------- /External/mimalloc/src/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/bitmap.h -------------------------------------------------------------------------------- /External/mimalloc/src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/heap.c -------------------------------------------------------------------------------- /External/mimalloc/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/init.c -------------------------------------------------------------------------------- /External/mimalloc/src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/options.c -------------------------------------------------------------------------------- /External/mimalloc/src/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/os.c -------------------------------------------------------------------------------- /External/mimalloc/src/page-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/page-queue.c -------------------------------------------------------------------------------- /External/mimalloc/src/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/page.c -------------------------------------------------------------------------------- /External/mimalloc/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/random.c -------------------------------------------------------------------------------- /External/mimalloc/src/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/region.c -------------------------------------------------------------------------------- /External/mimalloc/src/segment-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/segment-cache.c -------------------------------------------------------------------------------- /External/mimalloc/src/segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/segment.c -------------------------------------------------------------------------------- /External/mimalloc/src/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/static.c -------------------------------------------------------------------------------- /External/mimalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/src/stats.c -------------------------------------------------------------------------------- /External/mimalloc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/test/CMakeLists.txt -------------------------------------------------------------------------------- /External/mimalloc/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/test/main.c -------------------------------------------------------------------------------- /External/mimalloc/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/test/readme.md -------------------------------------------------------------------------------- /External/mimalloc/test/test-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/test/test-api.c -------------------------------------------------------------------------------- /External/mimalloc/test/test-stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/test/test-stress.c -------------------------------------------------------------------------------- /External/mimalloc/test/testhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/mimalloc/test/testhelper.h -------------------------------------------------------------------------------- /External/multiprecision-Boost.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/multiprecision-Boost.7z -------------------------------------------------------------------------------- /External/oneapi-tbb-2021.11.0.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/oneapi-tbb-2021.11.0.7z -------------------------------------------------------------------------------- /External/ryu/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/.classpath -------------------------------------------------------------------------------- /External/ryu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/.gitignore -------------------------------------------------------------------------------- /External/ryu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/CMakeLists.txt -------------------------------------------------------------------------------- /External/ryu/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/CONTRIBUTORS -------------------------------------------------------------------------------- /External/ryu/LICENSE-Apache2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/LICENSE-Apache2 -------------------------------------------------------------------------------- /External/ryu/LICENSE-Boost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/LICENSE-Boost -------------------------------------------------------------------------------- /External/ryu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/README.md -------------------------------------------------------------------------------- /External/ryu/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/ryu/run_benchmark.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/run_benchmark.bat -------------------------------------------------------------------------------- /External/ryu/run_benchmark_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/run_benchmark_linux.sh -------------------------------------------------------------------------------- /External/ryu/ryu/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/BUILD -------------------------------------------------------------------------------- /External/ryu/ryu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/Makefile -------------------------------------------------------------------------------- /External/ryu/ryu/benchmark/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/benchmark/BUILD -------------------------------------------------------------------------------- /External/ryu/ryu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/common.h -------------------------------------------------------------------------------- /External/ryu/ryu/d2fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/d2fixed.c -------------------------------------------------------------------------------- /External/ryu/ryu/d2fixed_full_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/d2fixed_full_table.h -------------------------------------------------------------------------------- /External/ryu/ryu/d2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/d2s.c -------------------------------------------------------------------------------- /External/ryu/ryu/d2s_full_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/d2s_full_table.h -------------------------------------------------------------------------------- /External/ryu/ryu/d2s_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/d2s_intrinsics.h -------------------------------------------------------------------------------- /External/ryu/ryu/d2s_small_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/d2s_small_table.h -------------------------------------------------------------------------------- /External/ryu/ryu/digit_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/digit_table.h -------------------------------------------------------------------------------- /External/ryu/ryu/f2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/f2s.c -------------------------------------------------------------------------------- /External/ryu/ryu/f2s_full_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/f2s_full_table.h -------------------------------------------------------------------------------- /External/ryu/ryu/f2s_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/f2s_intrinsics.h -------------------------------------------------------------------------------- /External/ryu/ryu/generic_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/generic_128.c -------------------------------------------------------------------------------- /External/ryu/ryu/generic_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/generic_128.h -------------------------------------------------------------------------------- /External/ryu/ryu/ryu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/ryu.h -------------------------------------------------------------------------------- /External/ryu/ryu/ryu_generic_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/ryu_generic_128.h -------------------------------------------------------------------------------- /External/ryu/ryu/ryu_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/ryu_parse.h -------------------------------------------------------------------------------- /External/ryu/ryu/s2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/s2d.c -------------------------------------------------------------------------------- /External/ryu/ryu/s2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/s2f.c -------------------------------------------------------------------------------- /External/ryu/ryu/tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/tests/BUILD -------------------------------------------------------------------------------- /External/ryu/ryu/tests/common_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/tests/common_test.cc -------------------------------------------------------------------------------- /External/ryu/ryu/tests/d2s_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/tests/d2s_test.cc -------------------------------------------------------------------------------- /External/ryu/ryu/tests/f2s_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/tests/f2s_test.cc -------------------------------------------------------------------------------- /External/ryu/ryu/tests/s2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/tests/s2d_test.cc -------------------------------------------------------------------------------- /External/ryu/ryu/tests/s2f_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/ryu/tests/s2f_test.cc -------------------------------------------------------------------------------- /External/ryu/scripts/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/scripts/BUILD -------------------------------------------------------------------------------- /External/ryu/scripts/double.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/scripts/double.template -------------------------------------------------------------------------------- /External/ryu/scripts/float.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/scripts/float.template -------------------------------------------------------------------------------- /External/ryu/scripts/printf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/scripts/printf.template -------------------------------------------------------------------------------- /External/ryu/third_party/gtest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/third_party/gtest/BUILD -------------------------------------------------------------------------------- /External/ryu/third_party/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/third_party/gtest/README -------------------------------------------------------------------------------- /External/ryu/third_party/jaffer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/third_party/jaffer/BUILD -------------------------------------------------------------------------------- /External/ryu/third_party/junit/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/ryu/third_party/junit/BUILD -------------------------------------------------------------------------------- /External/sigslot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/.gitignore -------------------------------------------------------------------------------- /External/sigslot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/CMakeLists.txt -------------------------------------------------------------------------------- /External/sigslot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/LICENSE -------------------------------------------------------------------------------- /External/sigslot/example/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/example/basic.cpp -------------------------------------------------------------------------------- /External/sigslot/example/lambdas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/example/lambdas.cpp -------------------------------------------------------------------------------- /External/sigslot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/readme.md -------------------------------------------------------------------------------- /External/sigslot/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/CMakeLists.txt -------------------------------------------------------------------------------- /External/sigslot/test/bench-slots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/bench-slots.cpp -------------------------------------------------------------------------------- /External/sigslot/test/observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/observer.cpp -------------------------------------------------------------------------------- /External/sigslot/test/qt-tracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/qt-tracking.cpp -------------------------------------------------------------------------------- /External/sigslot/test/recursive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/recursive.cpp -------------------------------------------------------------------------------- /External/sigslot/test/signal-pmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/signal-pmf.cpp -------------------------------------------------------------------------------- /External/sigslot/test/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/signal.cpp -------------------------------------------------------------------------------- /External/sigslot/test/test-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/sigslot/test/test-common.h -------------------------------------------------------------------------------- /External/smhasher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/smhasher/CMakeLists.txt -------------------------------------------------------------------------------- /External/smhasher/MurmurHash3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/smhasher/MurmurHash3.cpp -------------------------------------------------------------------------------- /External/smhasher/MurmurHash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/smhasher/MurmurHash3.h -------------------------------------------------------------------------------- /External/spdlog-1.14.1/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/.clang-format -------------------------------------------------------------------------------- /External/spdlog-1.14.1/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/.clang-tidy -------------------------------------------------------------------------------- /External/spdlog-1.14.1/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=false 2 | -------------------------------------------------------------------------------- /External/spdlog-1.14.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/.gitignore -------------------------------------------------------------------------------- /External/spdlog-1.14.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/CMakeLists.txt -------------------------------------------------------------------------------- /External/spdlog-1.14.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/INSTALL -------------------------------------------------------------------------------- /External/spdlog-1.14.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/LICENSE -------------------------------------------------------------------------------- /External/spdlog-1.14.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/README.md -------------------------------------------------------------------------------- /External/spdlog-1.14.1/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/appveyor.yml -------------------------------------------------------------------------------- /External/spdlog-1.14.1/bench/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/bench/utils.h -------------------------------------------------------------------------------- /External/spdlog-1.14.1/cmake/pch.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/cmake/pch.h.in -------------------------------------------------------------------------------- /External/spdlog-1.14.1/src/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/src/async.cpp -------------------------------------------------------------------------------- /External/spdlog-1.14.1/src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/src/cfg.cpp -------------------------------------------------------------------------------- /External/spdlog-1.14.1/src/spdlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/src/spdlog.cpp -------------------------------------------------------------------------------- /External/spdlog-1.14.1/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/tests/main.cpp -------------------------------------------------------------------------------- /External/spdlog-1.14.1/tests/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/spdlog-1.14.1/tests/utils.h -------------------------------------------------------------------------------- /External/stb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/stb/CMakeLists.txt -------------------------------------------------------------------------------- /External/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/stb/LICENSE -------------------------------------------------------------------------------- /External/stb/stb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/stb/stb.cpp -------------------------------------------------------------------------------- /External/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/stb/stb_image.h -------------------------------------------------------------------------------- /External/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/stb/stb_image_write.h -------------------------------------------------------------------------------- /External/tbbinterface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tbbinterface/CMakeLists.txt -------------------------------------------------------------------------------- /External/tinyexr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/CMakeLists.txt -------------------------------------------------------------------------------- /External/tinyexr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/README.md -------------------------------------------------------------------------------- /External/tinyexr/deps/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/deps/miniz/LICENSE -------------------------------------------------------------------------------- /External/tinyexr/deps/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/deps/miniz/miniz.c -------------------------------------------------------------------------------- /External/tinyexr/deps/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/deps/miniz/miniz.h -------------------------------------------------------------------------------- /External/tinyexr/deps/miniz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/deps/miniz/readme.md -------------------------------------------------------------------------------- /External/tinyexr/tinyexr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/tinyexr.cc -------------------------------------------------------------------------------- /External/tinyexr/tinyexr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyexr/tinyexr.h -------------------------------------------------------------------------------- /External/tinyobjloader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tinyobjloader/CMakeLists.txt -------------------------------------------------------------------------------- /External/tinyobjloader/tiny_obj_loader.cc: -------------------------------------------------------------------------------- 1 | #define TINYOBJLOADER_IMPLEMENTATION 2 | #include "tiny_obj_loader.h" 3 | -------------------------------------------------------------------------------- /External/tracy-0.11.1.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/tracy-0.11.1.7z -------------------------------------------------------------------------------- /External/unordered_dense/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/unordered_dense/.clang-tidy -------------------------------------------------------------------------------- /External/unordered_dense/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/unordered_dense/.gitignore -------------------------------------------------------------------------------- /External/unordered_dense/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/unordered_dense/LICENSE -------------------------------------------------------------------------------- /External/unordered_dense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/unordered_dense/README.md -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/043d8b204f1624bf27c3d301169ab8d7cfebe195: -------------------------------------------------------------------------------- 1 | ([ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/0474d119de2770b49afb3d7d79bccc8ba32e7652: -------------------------------------------------------------------------------- 1 | M]'[ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/04f332b71c8ebf502ca885306f9f8b7eb2874389: -------------------------------------------------------------------------------- 1 | ~" -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/05cd5621b93fd179953feb30a49b8ee76a768e2a: -------------------------------------------------------------------------------- 1 | 30@}@ln -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/096f31e8d3a43fe1baabf639bc0819d70ead8969: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/09ee480638d6498318deb3f5cc0bc5c60942766a: -------------------------------------------------------------------------------- 1 | cdl  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/0a6890bb2ad96b206334440c7e9f94295f1c04f7: -------------------------------------------------------------------------------- 1 | 1ۧ1[5 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/0ab8318acaf6e678dd02e2b5c343ed41111b393d: -------------------------------------------------------------------------------- 1 | ! -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/0ba059a3520eaa49b3a6565ce7d4cac9d1b82d62: -------------------------------------------------------------------------------- 1 | swG -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/0fe3a9e0e7f89c4ca381ce8da2af9cfe2cb2d331: -------------------------------------------------------------------------------- 1 | &n -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/1078aadb2db22cf008832242292a02fca407acb2: -------------------------------------------------------------------------------- 1 | C -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/1264b0e84b387bbfbf6a82aca1428cb7437292fb: -------------------------------------------------------------------------------- 1 | @ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/1319d5c8b4862292fae6083b1b69711869591c51: -------------------------------------------------------------------------------- 1 | n -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/1352246e33277e9d3c9090a434fa72cfa6536ae2: -------------------------------------------------------------------------------- 1 | 85 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/18c8e7b5836a3fd84896e6423e48f20cf6b5f7fe: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/1b34fd262a396b4a3713b8a207aad5fcdd8056d3: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/1e5c2f367f02e47a8c160cda1cd9d91decbac441: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/2581d46f2c1ec08f772a9e48713b76a33ac90397: -------------------------------------------------------------------------------- 1 | c`\` -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/263d705a8e9e831477e3167cc8bbbc776c1c70dd: -------------------------------------------------------------------------------- 1 | nqnnnn -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/27b132ed4919bdf0c655ec4cad2890c8f664bbd7: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/27f57cb359a8f86acf4af811c47a6380b4bb4209: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/2a7ec8bfa101aea17a28e93afc81b2c360369154: -------------------------------------------------------------------------------- 1 | ~O[ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/2c7e83e73c093fd1d5e2de5df88e8a156268dea2: -------------------------------------------------------------------------------- 1 | ++# -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/3eb416223e9e69e6bb8ee19793911ad1ad2027d8: -------------------------------------------------------------------------------- 1 | | -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/4067c8d1bee31f0fff1ad43cc9bf358bf965830d: -------------------------------------------------------------------------------- 1 | / /00 0 0 05 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/40fa37ec00c761c7dbb6ebdee6d4a260b922f5f4: -------------------------------------------------------------------------------- 1 | zzz -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/463c8af78a6b1fb5e28044838cd209ed5d301d54: -------------------------------------------------------------------------------- 1 | \\\\\*\[ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/4881d2dae2b991999855f22c11797bb9488299a4: -------------------------------------------------------------------------------- 1 | 000 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/4cd6d9668ea1e973aef706aa7db1a49efb13a483: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/4da6bc478fd5ef05a22eea46350ba04e917b8b71: -------------------------------------------------------------------------------- 1 | n[[ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/4f271709e575c1c3ad95324dd56b2e1c35c3fc07: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/506086cd70394c2853e3f835ef19170c8cec700a: -------------------------------------------------------------------------------- 1 | N" -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/54cf68c15bdebfe40159ba5763dfdda81edd251b: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/5df9b5633e8ea2c33bb86c4eb4c2c39bed290561: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/61ea73fafc5f4e0ccf20f696dab295d0a2c577d2: -------------------------------------------------------------------------------- 1 | +.F -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/6976a67903af605e9ea991f92128406f2010b917: -------------------------------------------------------------------------------- 1 | {{{{_{ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/6dbea6313ca80d1ee103ff3bc577219377be9866: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/750b53094be562c9d38f2fba3f635fc754d32c7c: -------------------------------------------------------------------------------- 1 | yyyy -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/79a842dffa8abba107ac920f08082a4192261c4c: -------------------------------------------------------------------------------- 1 | c,&| -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/7cf184f4c67ad58283ecb19349720b0cae756829: -------------------------------------------------------------------------------- 1 | H -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/871017ded52a93edf8cbd0c721235faa0b3698b9: -------------------------------------------------------------------------------- 1 | ~U -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/88fa28c86e37004eff702379366a79790a264c26: -------------------------------------------------------------------------------- 1 | swG -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/95cb0bfd2977c761298d9624e4b4d4c72a39974a: -------------------------------------------------------------------------------- 1 | y -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/9983296698d4e2736faf1c529e8d27f8071d7939: -------------------------------------------------------------------------------- 1 | c`x -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/9af20251e31f563588a4c4a674a397350b2191e3: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/9b136639dc7846e6eba553c02fa2fa588305f603: -------------------------------------------------------------------------------- 1 | ####### -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/9b5f00b22439b743090f7598a40a9d2d6c2717e8: -------------------------------------------------------------------------------- 1 | [[ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/9b9edf171341a9e0a3c27b4bfa12dd1985c13061: -------------------------------------------------------------------------------- 1 | [5 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/9ba792b9b27507df00aadf5520304a305272ea69: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/9be957bde2156e846892371f1b1413bfe3a11153: -------------------------------------------------------------------------------- 1 | KND -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/a30e11632d4b1886989c7f4f69e6f19c46bf9c0e: -------------------------------------------------------------------------------- 1 | kjB -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/a4ea04a2ae797155d059aed1ce0c64bdfeb0d409: -------------------------------------------------------------------------------- 1 | ݁ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/a6178c525a0d5f1233c6fdb6103036d292bf056a: -------------------------------------------------------------------------------- 1 | III -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/a6edaedbc811cad3ebf7d28d7a021faa08213584: -------------------------------------------------------------------------------- 1 | EjE=E[ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/a9d3c9cd54b1a392b21ea14904d9a318f74636b7: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/aa9c42171cba2010f559ed5b8e939f09268d0e7c: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/ac3478d69a3c81fa62e60f5c3696165a4e5e6ac4: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/aff024fe4ab0fece4091de044c58c9ae4233383a: -------------------------------------------------------------------------------- 1 | w -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/b7103ca278a75cad8f7d065acda0c2e80da0b7dc: -------------------------------------------------------------------------------- 1 | 70 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/b7b3e7ffe98be57c67c16657015c98e4512dad86: -------------------------------------------------------------------------------- 1 | +Q<  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/b858cb282617fb0956d960215c8e84d1ccf909c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/bc3bcf931b2009aead75643f490d7203e59af675: -------------------------------------------------------------------------------- 1 | {{{{{_{ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/c17279286591601085dc2598f9d6de6150844bb8: -------------------------------------------------------------------------------- 1 | F -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/c2b7df6201fdd3362399091f0a29550df3505b6a: -------------------------------------------------------------------------------- 1 | } -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/c4f87a6290aee1acfc1f26083974ce94621fca64: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/c7255dc48b42d44f6c0676d6009051b7e1aa885b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/c88f6e4eb092d89c3aca7d541852f6424dcf4bb7: -------------------------------------------------------------------------------- 1 | ca! -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/ca73ab65568cd125c2d27a22bbd9e863c10b675d: -------------------------------------------------------------------------------- 1 | I -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/cad92d0c2345b092555410714d7bcbbfa58aa2c1: -------------------------------------------------------------------------------- 1 | ' -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/d4652f0fcff76ac592075adefbb61358b1774719: -------------------------------------------------------------------------------- 1 | Sc  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/api/d50f33a8354868a2dcee3333387a2f07c1c38574: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/21606782c65e44cac7afbb90977d8b6f82140e76: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/23b54dec02fdd05a55e66e047d0fc93c8d58afd4: -------------------------------------------------------------------------------- 1 | j* -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/27d5482eebd075de44389774fce28c69f45c8a75: -------------------------------------------------------------------------------- 1 | h -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/2c69128e7d7b6103540d60d6f5c345f4c643d757: -------------------------------------------------------------------------------- 1 | t_ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/2d14ab97cc3dc294c51c0d6814f4ea45f4b4e312: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/3173532552077d0d796c3628ac35c76343dc3a04: -------------------------------------------------------------------------------- 1 | c`  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/32096c2e0eff33d844ee6d675407ace18289357d: -------------------------------------------------------------------------------- 1 | C -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/395df8f7c51f007019cb30201c49e884b46b92fa: -------------------------------------------------------------------------------- 1 | z -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/3c363836cf4e16666669a25da280a1865c2d2874: -------------------------------------------------------------------------------- 1 | d -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/4a0a19218e082a343a1b17e5333409af9d98f0f5: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/544a5d52682bfcba1eba578772019acc3ed7be9c: -------------------------------------------------------------------------------- 1 | @ ( -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/54fd1711209fb1c0781092374132c66e79e2241b: -------------------------------------------------------------------------------- 1 | g -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/5b55ec37559bb110228a6591713076b7fa2ce5e8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/5c10b5b2cd673a0616d529aa5234b12ee7153808: -------------------------------------------------------------------------------- 1 | , -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/5d45a50bfe5e9b6ecad8ee68f17e71a69869d335: -------------------------------------------------------------------------------- 1 | c`h -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/61c735e167c0ecb1d63b5707040855a246b148ab: -------------------------------------------------------------------------------- 1 | '% -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/6aa5340b504631ff785ada9d4ca37ed1cb99d385: -------------------------------------------------------------------------------- 1 | 2 | 5 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/8687e81c89fd859f915437acb2abab5377adfbb6: -------------------------------------------------------------------------------- 1 | $- -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/a8abd012eb59b862bf9bc1ea443d2f35a1a2e222: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/b51a60734da64be0e618bacbea2865a8a7dcd669: -------------------------------------------------------------------------------- 1 | N -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/b80749b0ad483c4010e69909ae70a9d5c450120c: -------------------------------------------------------------------------------- 1 | - -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/b858cb282617fb0956d960215c8e84d1ccf909c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/bb589d0621e5472f470fa3425a234c74b1e202e8: -------------------------------------------------------------------------------- 1 | ' -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/bf8b4530d8d246dd74ac53a13471bba17941dff7: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/c032adc1ff629c9b66f22749ad667e6beadf144b: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/ca73ab65568cd125c2d27a22bbd9e863c10b675d: -------------------------------------------------------------------------------- 1 | I -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/cac40b3f566ca32e09221d5079f3e0194a1b4d98: -------------------------------------------------------------------------------- 1 | q+ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/df58248c414f342c81e056b40bee12d17a08bf61: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/e0184adedf913b076626646d3f52c3b49c39ad6d: -------------------------------------------------------------------------------- 1 | E -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/replace/e7064f0b80f61dbc65915311032d27baa569ae2a: -------------------------------------------------------------------------------- 1 | ) -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/0706c31a539d0198fc880a933a006270ba19bce4: -------------------------------------------------------------------------------- 1 | \'\'\]\( -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/08534f33c201a45017b502e90a800f1b708ebcb3: -------------------------------------------------------------------------------- 1 | \ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/141078ed2b25278ef96ae6673f47b9574e3ef2aa: -------------------------------------------------------------------------------- 1 | \%\]\-\]] -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/17b9a18446c578c8bdfaef505e99112ec9767ae7: -------------------------------------------------------------------------------- 1 | \$\\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/2067edd4226862f2102d76d08a3ec0977520452d: -------------------------------------------------------------------------------- 1 | \/O\\O\\O -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/2db938be568072a7803c8f38a82aa2120142845c: -------------------------------------------------------------------------------- 1 | \\\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/3c178cc55f6e087553ea9a159bbe36bca6569e5e: -------------------------------------------------------------------------------- 1 | &\+\5,\?\-9\#\#? -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/3da9586ed41ca19f5448f67e4817621dda066f74: -------------------------------------------------------------------------------- 1 | (\]\&\\Qc\Y\]\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/3dc6e2ebbb6d8e45eaaf88de7592d86de892a47f: -------------------------------------------------------------------------------- 1 | \A&\B\d\\*# -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/49594bfbf3a97620aa5dea68d4440b39b6bede04: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/4bca0575acb8232439e3f68ed171b625830392bb: -------------------------------------------------------------------------------- 1 | #\]# -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/502cff25e71d611ae2e138ff288fa9ca05fc6a81: -------------------------------------------------------------------------------- 1 | ?\n\A\A\n -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/55277a19ac2979949296e0dfdd45624597929261: -------------------------------------------------------------------------------- 1 | @\(\I\I\2@ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/6ec122d010742ed26ba32b7fe59ebfde8aba1f43: -------------------------------------------------------------------------------- 1 | A\AA\cA -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/9931388be6b1be9e0c2a765281a3e28ba458ef9b: -------------------------------------------------------------------------------- 1 | \A\)\\(\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/9a27c070f282f99f3a24d3066c269cee77c7d143: -------------------------------------------------------------------------------- 1 | \=\0\+\"\?0 -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/9d52675fa0bcc85d3689112de54d211505398ff2: -------------------------------------------------------------------------------- 1 | \A\'\!\\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/9e94758983980504af303ef297fd2bf9d9cea063: -------------------------------------------------------------------------------- 1 | \\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/9ecb3f49fd00cdf3a517fa9f8007f99ee14b5f3f: -------------------------------------------------------------------------------- 1 | \]\\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/a17b452524b8d9f6c763ce85c2a8f277f27f25da: -------------------------------------------------------------------------------- 1 | \/\MO\*\)\\ O\O\e\O\O -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/a66e9b268d3878e6b05a559f09d3423ec30a9dd3: -------------------------------------------------------------------------------- 1 | \k\^\+\+\^ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/a850ab9e202c76f0fb6ed4e399ec0ab041103c3e: -------------------------------------------------------------------------------- 1 | \]& -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/b143b8af2731651c5031c2d307c2fec6b3d6d358: -------------------------------------------------------------------------------- 1 | \\$ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/b592fdc59ca4aa57e21eb5138cb731fc15e075a5: -------------------------------------------------------------------------------- 1 | \\\\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/c04a12c6ce56f2977348102722d22a00df2d0388: -------------------------------------------------------------------------------- 1 | O -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/c73d70435387c5213e893cec906b31cfd200e833: -------------------------------------------------------------------------------- 1 | |\\UA\[\\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/cb26c32f517eff0847eb6cae4f481cbf5a8dc0e1: -------------------------------------------------------------------------------- 1 | m\!\?#\\]\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/ce9e43b9b3e4e702d306548b8356da8935de2f07: -------------------------------------------------------------------------------- 1 | {*\p{*\p+ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/d08f88df745fa7950b104e4a707a31cfce7b5841: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/d713754a2f5429b28533071b75723dacd3ad9dc8: -------------------------------------------------------------------------------- 1 | \$ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/d7c487d41de7c92d6a625e1446834bfb01078821: -------------------------------------------------------------------------------- 1 | z\z\$\$\T\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/dee6f6651764b5c7605dc01bab8bfd6d105079a7: -------------------------------------------------------------------------------- 1 | \&]\A\A\C\'' -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/e05efb58e4413f182bd2be4bc19e41b237138a70: -------------------------------------------------------------------------------- 1 | \{\) 2 | \ 3 | \\{ 4 | \B#\0\A\ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/e210d93baea1d69d2f6f1756fd0209a3052edaab: -------------------------------------------------------------------------------- 1 | \$A\A\\\eA\' -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/ea3900f747538cd1df2d9a23b144e63d447fc5cd: -------------------------------------------------------------------------------- 1 | \C -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/ecc33e30e53fe0613f6714ca6a9ee9f799036e97: -------------------------------------------------------------------------------- 1 | ?\'\'\ 2 | \dT -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/fad6875bf192970cb09197e01028f3aa50225151: -------------------------------------------------------------------------------- 1 | +! -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/faf16e15e8cc456ba2c4fc8e1f5c32bd82595042: -------------------------------------------------------------------------------- 1 | ,\*\$\A\z\$ -------------------------------------------------------------------------------- /External/unordered_dense/data/fuzz/string/fd65f10deb73059088d479ab25a725460e8a5c54: -------------------------------------------------------------------------------- 1 | #\?\\?,\?& -------------------------------------------------------------------------------- /External/unordered_dense/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/unordered_dense/meson.build -------------------------------------------------------------------------------- /External/unordered_dense/test/app/doctest.cpp: -------------------------------------------------------------------------------- 1 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 2 | #include 3 | -------------------------------------------------------------------------------- /External/unordered_dense/test/unit/include_only.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /External/vk-bootstrap/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/vk-bootstrap/.clang-format -------------------------------------------------------------------------------- /External/vk-bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/vk-bootstrap/.gitignore -------------------------------------------------------------------------------- /External/vk-bootstrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/vk-bootstrap/CMakeLists.txt -------------------------------------------------------------------------------- /External/vk-bootstrap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/vk-bootstrap/LICENSE.txt -------------------------------------------------------------------------------- /External/vk-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/vk-bootstrap/README.md -------------------------------------------------------------------------------- /External/vk-bootstrap/tests/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/vk-bootstrap/tests/common.h -------------------------------------------------------------------------------- /External/vk-bootstrap/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/vk-bootstrap/tests/main.cpp -------------------------------------------------------------------------------- /External/volk/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | CMakeLists.txt.user 3 | -------------------------------------------------------------------------------- /External/volk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/volk/CMakeLists.txt -------------------------------------------------------------------------------- /External/volk/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/volk/LICENSE.md -------------------------------------------------------------------------------- /External/volk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/volk/README.md -------------------------------------------------------------------------------- /External/volk/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/volk/generate.py -------------------------------------------------------------------------------- /External/volk/test/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/volk/test/run_tests.sh -------------------------------------------------------------------------------- /External/volk/volk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/volk/volk.c -------------------------------------------------------------------------------- /External/volk/volk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/External/volk/volk.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/README.md -------------------------------------------------------------------------------- /Samples/01.TexturedQuad/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/01.TexturedQuad/Main.cpp -------------------------------------------------------------------------------- /Samples/01.TexturedQuad/Quad.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/01.TexturedQuad/Quad.shader -------------------------------------------------------------------------------- /Samples/02.ComputeShader/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/02.ComputeShader/Main.cpp -------------------------------------------------------------------------------- /Samples/03.BindlessTexture/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/03.BindlessTexture/Main.cpp -------------------------------------------------------------------------------- /Samples/05.PathTracing/InitRng.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/05.PathTracing/InitRng.shader -------------------------------------------------------------------------------- /Samples/05.PathTracing/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/05.PathTracing/Main.cpp -------------------------------------------------------------------------------- /Samples/05.PathTracing/Random.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/05.PathTracing/Random.hlsl -------------------------------------------------------------------------------- /Samples/07.Gizmo/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/07.Gizmo/Main.cpp -------------------------------------------------------------------------------- /Samples/08.FADM/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/Common.h -------------------------------------------------------------------------------- /Samples/08.FADM/FADM.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/FADM.shader -------------------------------------------------------------------------------- /Samples/08.FADM/GridAlignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/GridAlignment.cpp -------------------------------------------------------------------------------- /Samples/08.FADM/GridAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/GridAlignment.h -------------------------------------------------------------------------------- /Samples/08.FADM/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/Main.cpp -------------------------------------------------------------------------------- /Samples/08.FADM/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/Mesh.cpp -------------------------------------------------------------------------------- /Samples/08.FADM/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/Mesh.h -------------------------------------------------------------------------------- /Samples/08.FADM/SeamEnergy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/SeamEnergy.cpp -------------------------------------------------------------------------------- /Samples/08.FADM/SeamEnergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/SeamEnergy.h -------------------------------------------------------------------------------- /Samples/08.FADM/VDMBake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/VDMBake.cpp -------------------------------------------------------------------------------- /Samples/08.FADM/VDMBake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/08.FADM/VDMBake.h -------------------------------------------------------------------------------- /Samples/09.MeshShader/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/09.MeshShader/Main.cpp -------------------------------------------------------------------------------- /Samples/11.GeodesicDistance/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/11.GeodesicDistance/Main.cpp -------------------------------------------------------------------------------- /Samples/12.ShaderDSL/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/12.ShaderDSL/Main.cpp -------------------------------------------------------------------------------- /Samples/13.HorizonShadowMap/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/13.HorizonShadowMap/Main.cpp -------------------------------------------------------------------------------- /Samples/14.HalfedgeMesh/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/14.HalfedgeMesh/Main.cpp -------------------------------------------------------------------------------- /Samples/15.HeatMethod/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/15.HeatMethod/Main.cpp -------------------------------------------------------------------------------- /Samples/16.MeshCorefinement/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/16.MeshCorefinement/Main.cpp -------------------------------------------------------------------------------- /Samples/17.WorkGraph/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/17.WorkGraph/Main.cpp -------------------------------------------------------------------------------- /Samples/17.WorkGraph/WorkGraph.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/17.WorkGraph/WorkGraph.shader -------------------------------------------------------------------------------- /Samples/19.Archive/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/19.Archive/Main.cpp -------------------------------------------------------------------------------- /Samples/20.MultiLayerOIT/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/20.MultiLayerOIT/Main.cpp -------------------------------------------------------------------------------- /Samples/20.MultiLayerOIT/OIT.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/20.MultiLayerOIT/OIT.shader -------------------------------------------------------------------------------- /Samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Test.LIP/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/Test.LIP/Main.cpp -------------------------------------------------------------------------------- /Samples/Test.LIP/Shader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/Test.LIP/Shader.shader -------------------------------------------------------------------------------- /Samples/Test.OT2D/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Samples/Test.OT2D/Main.cpp -------------------------------------------------------------------------------- /SetupDependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/SetupDependencies.bat -------------------------------------------------------------------------------- /Source/Rtrc/Core/Archive/Archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Archive/Archive.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Base64.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Bit.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Bool.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Rtrc/Core/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Common.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Core/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Common.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Container/LRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Container/LRUCache.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Container/RangeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Container/RangeSet.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Container/Span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Container/Span.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/EnumFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/EnumFlags.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Enumerate.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Event.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Filesystem/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Filesystem/File.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Core/Filesystem/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Filesystem/File.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Hash.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/LazyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/LazyCell.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Macro/MacroForEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Macro/MacroForEach.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/AABB.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/AliasTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/AliasTable.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Angle.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Common.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Exact/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Exact/Vector.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/FastHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/FastHash.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Frame.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Intersection.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Matrix3x3.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Matrix4x4.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Quaternion.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Transform.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Math/Vector.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Memory/Arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Memory/Arena.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Memory/Malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Memory/Malloc.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Core/Memory/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Memory/Malloc.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Parallel.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/PrivateBackdoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/PrivateBackdoor.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Profile.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Resource/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Resource/Image.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Core/Resource/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Resource/Image.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Resource/ImageND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Resource/ImageND.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Resource/MeshData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Resource/MeshData.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/ScopeGuard.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/SelfType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/SelfType.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/SignalSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/SignalSlot.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/SourceWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/SourceWriter.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/String.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Core/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/String.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/StringPool.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Struct.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Swap.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/TimelineSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/TimelineSemaphore.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Timer.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Core/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Timer.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/TypeIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/TypeIndex.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/TypeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/TypeList.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Uncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Uncopyable.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Unreachable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Unreachable.h -------------------------------------------------------------------------------- /Source/Rtrc/Core/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Core/Variant.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/BVH.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/BVH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/BVH.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/DiscreteCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/DiscreteCurve.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/DistanceField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/DistanceField.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/GWN3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/GWN3D.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/GWN3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/GWN3D.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/GenerateMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/GenerateMesh.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/GenerateMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/GenerateMesh.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/GeodesicPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/GeodesicPath.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/GeodesicPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/GeodesicPath.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/HalfedgeMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/HalfedgeMesh.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/HalfedgeMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/HalfedgeMesh.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/Manifold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/Manifold.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/Manifold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/Manifold.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/MeshCleaner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/MeshCleaner.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/MeshCleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/MeshCleaner.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/RawMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/RawMesh.cpp -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/RawMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/RawMesh.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/SignpostsMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/SignpostsMesh.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/Utility.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/Utility.h -------------------------------------------------------------------------------- /Source/Rtrc/Geometry/Utility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Geometry/Utility.inl -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Device/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/Device/Buffer.h -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Device/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/Device/Device.h -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Device/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/Device/Queue.h -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Device/Sampler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Device/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/Device/Sampler.h -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Device/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/Device/Texture.h -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Shader/Keyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/Shader/Keyword.h -------------------------------------------------------------------------------- /Source/Rtrc/Graphics/Shader/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Graphics/Shader/Shader.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Capture/GPUCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Capture/GPUCapturer.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/DirectX12/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/DirectX12/Common.cpp -------------------------------------------------------------------------------- /Source/Rtrc/RHI/DirectX12/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/DirectX12/Common.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/DirectX12/Resource/TextureView.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Rtrc/RHI/RHI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/RHI.cpp -------------------------------------------------------------------------------- /Source/Rtrc/RHI/RHI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/RHI.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/RHIDeclaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/RHIDeclaration.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Vulkan/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Vulkan/Common.cpp -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Vulkan/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Vulkan/Common.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Vulkan/Queue/Fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Vulkan/Queue/Fence.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Vulkan/Queue/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Vulkan/Queue/Queue.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Window/KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Window/KeyCode.h -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Window/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Window/Window.cpp -------------------------------------------------------------------------------- /Source/Rtrc/RHI/Window/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/RHI/Window/Window.h -------------------------------------------------------------------------------- /Source/Rtrc/Rtrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/Rtrc.h -------------------------------------------------------------------------------- /Source/Rtrc/ShaderCommon/DXC/DXC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/ShaderCommon/DXC/DXC.h -------------------------------------------------------------------------------- /Source/Rtrc/ToolKit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/ToolKit/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Rtrc/ToolKit/DFDM/DFDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/ToolKit/DFDM/DFDM.cpp -------------------------------------------------------------------------------- /Source/Rtrc/ToolKit/DFDM/DFDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/ToolKit/DFDM/DFDM.h -------------------------------------------------------------------------------- /Source/Rtrc/ToolKit/OT2D/OT2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/ToolKit/OT2D/OT2D.cpp -------------------------------------------------------------------------------- /Source/Rtrc/ToolKit/OT2D/OT2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/ToolKit/OT2D/OT2D.h -------------------------------------------------------------------------------- /Source/Rtrc/ToolKit/ToolKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/ToolKit/ToolKit.h -------------------------------------------------------------------------------- /Source/Rtrc/eDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Source/Rtrc/eDSL.h -------------------------------------------------------------------------------- /Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Test/CMakeLists.txt -------------------------------------------------------------------------------- /Test/Expansion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Test/Expansion.cpp -------------------------------------------------------------------------------- /Test/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Test/Math.cpp -------------------------------------------------------------------------------- /Test/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/Rtrc/HEAD/Test/Test.cpp --------------------------------------------------------------------------------